randmarcomps 1.115.0 → 1.117.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 +9 -1
- package/dist/randmarcomps.js +261 -148
- package/dist/randmarcomps.umd.cjs +48 -38
- package/package.json +1 -1
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ import { MouseEventHandler } from 'react';
|
|
|
16
16
|
import { OrderDetail } from 'randmar-api-client';
|
|
17
17
|
import { OTPInput } from 'input-otp';
|
|
18
18
|
import { Product } from 'randmar-api-client';
|
|
19
|
+
import { Qualification } from 'randmar-api-client';
|
|
19
20
|
import * as React_2 from 'react';
|
|
20
21
|
import { ReactNode } from 'react';
|
|
21
22
|
import { RefAttributes } from 'react';
|
|
@@ -278,7 +279,7 @@ export declare interface NavRoute {
|
|
|
278
279
|
showInNav?: boolean;
|
|
279
280
|
}
|
|
280
281
|
|
|
281
|
-
export declare function PartnerCard({ account, action, loading
|
|
282
|
+
export declare function PartnerCard({ account, action, loading }: PartnerCardProps): JSX.Element;
|
|
282
283
|
|
|
283
284
|
declare interface PartnerCardProps {
|
|
284
285
|
account?: Account;
|
|
@@ -337,6 +338,13 @@ export declare interface ResellerCardProps {
|
|
|
337
338
|
loading?: boolean;
|
|
338
339
|
}
|
|
339
340
|
|
|
341
|
+
export declare function ResellerQualificationsCard({ qualifications, loading }: ResellerQualificationsCardProps): JSX.Element;
|
|
342
|
+
|
|
343
|
+
declare interface ResellerQualificationsCardProps {
|
|
344
|
+
qualifications?: Qualification[];
|
|
345
|
+
loading?: boolean;
|
|
346
|
+
}
|
|
347
|
+
|
|
340
348
|
export declare function SalesOverviewCard({ salesData, loading }: SalesOverviewCardProps): JSX.Element;
|
|
341
349
|
|
|
342
350
|
declare interface SalesOverviewCardProps {
|