randmarcomps 1.573.0 → 1.575.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.
- package/dist/randmarcomps.d.ts +5 -1
- package/dist/randmarcomps.js +2194 -2042
- package/dist/randmarcomps.umd.cjs +72 -72
- package/package.json +1 -1
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -56,6 +56,10 @@ export declare const AccordionItem: React_2.ForwardRefExoticComponent<Omit<Accor
|
|
|
56
56
|
|
|
57
57
|
export declare const AccordionTrigger: React_2.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionTriggerProps & React_2.RefAttributes<HTMLButtonElement>, "ref"> & React_2.RefAttributes<HTMLButtonElement>>;
|
|
58
58
|
|
|
59
|
+
declare type AccountWithShopifyStore = Account & {
|
|
60
|
+
HasShopifyStore?: boolean | null;
|
|
61
|
+
};
|
|
62
|
+
|
|
59
63
|
export declare function ActiveOrdersCard({ orders, loading }: ActiveOrdersCardProps): JSX.Element;
|
|
60
64
|
|
|
61
65
|
declare interface ActiveOrdersCardProps {
|
|
@@ -720,7 +724,7 @@ export declare interface PartnerActionsProps {
|
|
|
720
724
|
export declare function PartnerCard({ account, action, loading, className, withAbout, withVoice }: PartnerCardProps): JSX.Element;
|
|
721
725
|
|
|
722
726
|
declare interface PartnerCardProps {
|
|
723
|
-
account?:
|
|
727
|
+
account?: AccountWithShopifyStore;
|
|
724
728
|
action?: ReactNode;
|
|
725
729
|
loading?: boolean;
|
|
726
730
|
className?: string;
|