randmarcomps 1.136.0 → 1.138.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 +8 -0
- package/dist/randmarcomps.js +1770 -1664
- package/dist/randmarcomps.umd.cjs +17 -12
- package/package.json +1 -1
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -339,6 +339,14 @@ declare interface ProductInventoryGridProps {
|
|
|
339
339
|
showBinLocation?: boolean;
|
|
340
340
|
}
|
|
341
341
|
|
|
342
|
+
export declare function ResellerBillingOverviewCard({ reseller, actions, loading }: ResellerBillingOverviewCardProps): JSX.Element;
|
|
343
|
+
|
|
344
|
+
declare interface ResellerBillingOverviewCardProps {
|
|
345
|
+
reseller?: Reseller;
|
|
346
|
+
actions?: default_2.ReactNode;
|
|
347
|
+
loading?: boolean;
|
|
348
|
+
}
|
|
349
|
+
|
|
342
350
|
export declare function ResellerCard({ reseller, link, actions, loading, }: ResellerCardProps): JSX.Element;
|
|
343
351
|
|
|
344
352
|
export declare interface ResellerCardProps {
|