@lumiapassport/ui-kit 1.5.0 → 1.5.2
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/README.md +179 -54
- package/dist/iframe/index.html +1 -1
- package/dist/iframe/main.js +1 -1
- package/dist/index.cjs +915 -933
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +914 -932
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -384,8 +384,9 @@ declare const TransactionsList: React__default.FC<TransactionsListProps>;
|
|
|
384
384
|
interface KeyshareBackupProps {
|
|
385
385
|
userId: string;
|
|
386
386
|
onBackupSuccess?: () => void;
|
|
387
|
+
onBack?: () => void;
|
|
387
388
|
}
|
|
388
|
-
declare function KeyshareBackup({ userId, onBackupSuccess }: KeyshareBackupProps): react_jsx_runtime.JSX.Element;
|
|
389
|
+
declare function KeyshareBackup({ userId, onBackupSuccess, onBack }: KeyshareBackupProps): react_jsx_runtime.JSX.Element;
|
|
389
390
|
|
|
390
391
|
interface SendTransactionParams$1 {
|
|
391
392
|
to: `0x${string}`;
|
package/dist/index.d.ts
CHANGED
|
@@ -384,8 +384,9 @@ declare const TransactionsList: React__default.FC<TransactionsListProps>;
|
|
|
384
384
|
interface KeyshareBackupProps {
|
|
385
385
|
userId: string;
|
|
386
386
|
onBackupSuccess?: () => void;
|
|
387
|
+
onBack?: () => void;
|
|
387
388
|
}
|
|
388
|
-
declare function KeyshareBackup({ userId, onBackupSuccess }: KeyshareBackupProps): react_jsx_runtime.JSX.Element;
|
|
389
|
+
declare function KeyshareBackup({ userId, onBackupSuccess, onBack }: KeyshareBackupProps): react_jsx_runtime.JSX.Element;
|
|
389
390
|
|
|
390
391
|
interface SendTransactionParams$1 {
|
|
391
392
|
to: `0x${string}`;
|