randmarcomps 1.119.0 → 1.121.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 +10 -1
- package/dist/randmarcomps.js +2806 -2794
- package/dist/randmarcomps.umd.cjs +81 -81
- package/package.json +1 -1
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
|
7
7
|
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
8
8
|
import { FC } from 'react';
|
|
9
9
|
import { ForwardRefExoticComponent } from 'react';
|
|
10
|
+
import { GeneralDocument } from 'randmar-api-client';
|
|
10
11
|
import { InputProps as InputProps_2 } from './input';
|
|
11
12
|
import { Inventory } from 'randmar-api-client';
|
|
12
13
|
import { JSX } from 'react/jsx-runtime';
|
|
@@ -202,6 +203,13 @@ export declare const DropdownMenuSubTrigger: React_2.ForwardRefExoticComponent<O
|
|
|
202
203
|
|
|
203
204
|
export declare const DropdownMenuTrigger: React_2.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React_2.RefAttributes<HTMLButtonElement>>;
|
|
204
205
|
|
|
206
|
+
export declare function GeneralDocumentCard({ document, loading }: GeneralDocumentCardProps): JSX.Element;
|
|
207
|
+
|
|
208
|
+
export declare interface GeneralDocumentCardProps {
|
|
209
|
+
document?: GeneralDocument;
|
|
210
|
+
loading?: boolean;
|
|
211
|
+
}
|
|
212
|
+
|
|
205
213
|
export declare const Input: React_2.ForwardRefExoticComponent<Omit<InputProps, "ref"> & React_2.RefAttributes<HTMLInputElement>>;
|
|
206
214
|
|
|
207
215
|
export declare function InputOTP({ className, containerClassName, ...props }: React_2.ComponentProps<typeof OTPInput> & {
|
|
@@ -279,12 +287,13 @@ export declare interface NavRoute {
|
|
|
279
287
|
showInNav?: boolean;
|
|
280
288
|
}
|
|
281
289
|
|
|
282
|
-
export declare function PartnerCard({ account, action, loading }: PartnerCardProps): JSX.Element;
|
|
290
|
+
export declare function PartnerCard({ account, action, loading, withVoice }: PartnerCardProps): JSX.Element;
|
|
283
291
|
|
|
284
292
|
declare interface PartnerCardProps {
|
|
285
293
|
account?: Account;
|
|
286
294
|
action?: ReactNode;
|
|
287
295
|
loading?: boolean;
|
|
296
|
+
withVoice?: boolean;
|
|
288
297
|
}
|
|
289
298
|
|
|
290
299
|
export declare function Preloader({ text, color, className }: PreloaderProps): JSX.Element;
|