randmarcomps 1.280.0 → 1.282.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 +3 -1
- package/dist/randmarcomps.js +2223 -2218
- package/dist/randmarcomps.umd.cjs +2 -2
- package/package.json +1 -1
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -621,12 +621,14 @@ declare interface ResellerBillingOverviewCardProps {
|
|
|
621
621
|
loading?: boolean;
|
|
622
622
|
}
|
|
623
623
|
|
|
624
|
-
export declare function ResellerCard({ reseller, link, actions, loading, }: ResellerCardProps): JSX.Element;
|
|
624
|
+
export declare function ResellerCard({ reseller, link, linkNewTab, actions, mainAction, loading, }: ResellerCardProps): JSX.Element;
|
|
625
625
|
|
|
626
626
|
export declare interface ResellerCardProps {
|
|
627
627
|
reseller?: Reseller;
|
|
628
628
|
link?: string;
|
|
629
|
+
linkNewTab?: boolean;
|
|
629
630
|
actions?: React.ReactNode;
|
|
631
|
+
mainAction?: React.ReactNode;
|
|
630
632
|
loading?: boolean;
|
|
631
633
|
}
|
|
632
634
|
|