randmarcomps 1.290.0 → 1.293.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 -0
- package/dist/randmarcomps.js +504 -353
- package/dist/randmarcomps.umd.cjs +20 -20
- package/package.json +1 -1
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -30,6 +30,7 @@ import * as React_2 from 'react';
|
|
|
30
30
|
import { ReactNode } from 'react';
|
|
31
31
|
import { RefAttributes } from 'react';
|
|
32
32
|
import { Reseller } from 'randmar-api-client';
|
|
33
|
+
import { Return } from 'randmar-api-client';
|
|
33
34
|
import { SalesData } from 'randmar-api-client';
|
|
34
35
|
import { SalesStatistic } from 'randmar-api-client';
|
|
35
36
|
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
|
@@ -641,6 +642,14 @@ declare interface ResellerQualificationsCardProps {
|
|
|
641
642
|
loading?: boolean;
|
|
642
643
|
}
|
|
643
644
|
|
|
645
|
+
export declare function ReturnsTable({ applicationId, returns, loading }: ReturnsTableProps): JSX.Element;
|
|
646
|
+
|
|
647
|
+
declare interface ReturnsTableProps {
|
|
648
|
+
applicationId: string;
|
|
649
|
+
returns?: Return[] | null;
|
|
650
|
+
loading?: boolean;
|
|
651
|
+
}
|
|
652
|
+
|
|
644
653
|
export declare function RichTextEditor({ id, name, value, onChange, placeholder, className, ...props }: RichTextEditorProps): JSX.Element | null;
|
|
645
654
|
|
|
646
655
|
export declare interface RichTextEditorProps extends Omit<default_2.InputHTMLAttributes<HTMLInputElement>, "onChange"> {
|