@retinalabsllc/zairusjs 15.0.10 → 15.0.20
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/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +110 -77
- package/dist/index.mjs +112 -78
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -338,6 +338,7 @@ interface UniversalProfilePageProps {
|
|
|
338
338
|
avatarSrc?: string;
|
|
339
339
|
roleName: string;
|
|
340
340
|
memberSince: string;
|
|
341
|
+
onAvatarTap?: () => void;
|
|
341
342
|
onAccountTap?: () => void;
|
|
342
343
|
onSecurityTap?: () => void;
|
|
343
344
|
onDefiTap?: () => void;
|
|
@@ -345,7 +346,7 @@ interface UniversalProfilePageProps {
|
|
|
345
346
|
onVerificationsTap?: () => void;
|
|
346
347
|
onExportTap?: () => void;
|
|
347
348
|
onLogoutTap?: () => void | Promise<void>;
|
|
348
|
-
onDeleteTap?: () => void
|
|
349
|
+
onDeleteTap?: () => void | Promise<void>;
|
|
349
350
|
}
|
|
350
351
|
declare const UniversalProfilePage: React.FC<UniversalProfilePageProps>;
|
|
351
352
|
|
package/dist/index.d.ts
CHANGED
|
@@ -338,6 +338,7 @@ interface UniversalProfilePageProps {
|
|
|
338
338
|
avatarSrc?: string;
|
|
339
339
|
roleName: string;
|
|
340
340
|
memberSince: string;
|
|
341
|
+
onAvatarTap?: () => void;
|
|
341
342
|
onAccountTap?: () => void;
|
|
342
343
|
onSecurityTap?: () => void;
|
|
343
344
|
onDefiTap?: () => void;
|
|
@@ -345,7 +346,7 @@ interface UniversalProfilePageProps {
|
|
|
345
346
|
onVerificationsTap?: () => void;
|
|
346
347
|
onExportTap?: () => void;
|
|
347
348
|
onLogoutTap?: () => void | Promise<void>;
|
|
348
|
-
onDeleteTap?: () => void
|
|
349
|
+
onDeleteTap?: () => void | Promise<void>;
|
|
349
350
|
}
|
|
350
351
|
declare const UniversalProfilePage: React.FC<UniversalProfilePageProps>;
|
|
351
352
|
|