randmarcomps 1.119.0 → 1.120.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 +2 -1
- package/dist/randmarcomps.js +2795 -2793
- package/dist/randmarcomps.umd.cjs +81 -81
- package/package.json +1 -1
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -279,12 +279,13 @@ export declare interface NavRoute {
|
|
|
279
279
|
showInNav?: boolean;
|
|
280
280
|
}
|
|
281
281
|
|
|
282
|
-
export declare function PartnerCard({ account, action, loading }: PartnerCardProps): JSX.Element;
|
|
282
|
+
export declare function PartnerCard({ account, action, loading, withVoice }: PartnerCardProps): JSX.Element;
|
|
283
283
|
|
|
284
284
|
declare interface PartnerCardProps {
|
|
285
285
|
account?: Account;
|
|
286
286
|
action?: ReactNode;
|
|
287
287
|
loading?: boolean;
|
|
288
|
+
withVoice?: boolean;
|
|
288
289
|
}
|
|
289
290
|
|
|
290
291
|
export declare function Preloader({ text, color, className }: PreloaderProps): JSX.Element;
|