randmarcomps 1.114.0 → 1.116.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 +24 -0
- package/dist/randmarcomps.js +376 -80
- package/dist/randmarcomps.umd.cjs +57 -32
- package/package.json +1 -1
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -13,12 +13,15 @@ import { JSX } from 'react/jsx-runtime';
|
|
|
13
13
|
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
14
14
|
import { Manufacturer } from 'randmar-api-client';
|
|
15
15
|
import { MouseEventHandler } from 'react';
|
|
16
|
+
import { OrderDetail } from 'randmar-api-client';
|
|
16
17
|
import { OTPInput } from 'input-otp';
|
|
17
18
|
import { Product } from 'randmar-api-client';
|
|
19
|
+
import { Qualification } from 'randmar-api-client';
|
|
18
20
|
import * as React_2 from 'react';
|
|
19
21
|
import { ReactNode } from 'react';
|
|
20
22
|
import { RefAttributes } from 'react';
|
|
21
23
|
import { Reseller } from 'randmar-api-client';
|
|
24
|
+
import { SalesData } from 'randmar-api-client';
|
|
22
25
|
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
|
23
26
|
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
24
27
|
import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
@@ -29,6 +32,13 @@ import * as ToastPrimitives from '@radix-ui/react-toast';
|
|
|
29
32
|
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
30
33
|
import { VariantProps } from 'class-variance-authority';
|
|
31
34
|
|
|
35
|
+
export declare function ActiveOrdersCard({ orders, loading }: ActiveOrdersCardProps): JSX.Element;
|
|
36
|
+
|
|
37
|
+
declare interface ActiveOrdersCardProps {
|
|
38
|
+
orders?: OrderDetail[];
|
|
39
|
+
loading?: boolean;
|
|
40
|
+
}
|
|
41
|
+
|
|
32
42
|
export declare function AreaChart({ data, units, unitsPosition, width, height, className }: AreaChartProps): JSX.Element;
|
|
33
43
|
|
|
34
44
|
export declare interface AreaChartProps {
|
|
@@ -328,6 +338,20 @@ export declare interface ResellerCardProps {
|
|
|
328
338
|
loading?: boolean;
|
|
329
339
|
}
|
|
330
340
|
|
|
341
|
+
export declare function ResellerQualificationsCard({ qualifications, loading }: ResellerQualificationsCardProps): JSX.Element;
|
|
342
|
+
|
|
343
|
+
declare interface ResellerQualificationsCardProps {
|
|
344
|
+
qualifications?: Qualification[];
|
|
345
|
+
loading?: boolean;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
export declare function SalesOverviewCard({ salesData, loading }: SalesOverviewCardProps): JSX.Element;
|
|
349
|
+
|
|
350
|
+
declare interface SalesOverviewCardProps {
|
|
351
|
+
salesData?: SalesData;
|
|
352
|
+
loading?: boolean;
|
|
353
|
+
}
|
|
354
|
+
|
|
331
355
|
export declare const ScrollArea: React_2.ForwardRefExoticComponent<ScrollAreaProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
332
356
|
|
|
333
357
|
export declare interface ScrollAreaProps extends React_2.ComponentPropsWithoutRef<typeof ScrollAreaPrimitive.Root> {
|