randmarcomps 1.126.0 → 1.128.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 +1136 -1085
- package/dist/randmarcomps.umd.cjs +64 -59
- package/package.json +1 -1
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ import { ReactNode } from 'react';
|
|
|
23
23
|
import { RefAttributes } from 'react';
|
|
24
24
|
import { Reseller } from 'randmar-api-client';
|
|
25
25
|
import { SalesData } from 'randmar-api-client';
|
|
26
|
+
import { SalesStatistic } from 'randmar-api-client';
|
|
26
27
|
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
|
27
28
|
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
28
29
|
import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
@@ -354,10 +355,11 @@ declare interface ResellerQualificationsCardProps {
|
|
|
354
355
|
loading?: boolean;
|
|
355
356
|
}
|
|
356
357
|
|
|
357
|
-
export declare function SalesOverviewCard({ salesData, loading }: SalesOverviewCardProps): JSX.Element;
|
|
358
|
+
export declare function SalesOverviewCard({ salesData, salesStatistics, loading }: SalesOverviewCardProps): JSX.Element;
|
|
358
359
|
|
|
359
360
|
declare interface SalesOverviewCardProps {
|
|
360
361
|
salesData?: SalesData;
|
|
362
|
+
salesStatistics?: SalesStatistic[];
|
|
361
363
|
loading?: boolean;
|
|
362
364
|
}
|
|
363
365
|
|