@lumiapassport/ui-kit 1.4.13 → 1.4.16
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 +0 -13
- package/dist/iframe/index.html +1 -1
- package/dist/iframe/main.js +4 -2
- package/dist/iframe/main.js.map +1 -1
- package/dist/index.cjs +263 -262
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +11 -2
- package/dist/index.d.ts +11 -2
- package/dist/index.js +268 -267
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -80,6 +80,11 @@ interface LumiaPassportConfig {
|
|
|
80
80
|
textSecondary?: string;
|
|
81
81
|
textMuted?: string;
|
|
82
82
|
border?: string;
|
|
83
|
+
buttonBackground?: string;
|
|
84
|
+
buttonBackgroundEnd?: string;
|
|
85
|
+
buttonText?: string;
|
|
86
|
+
buttonBackgroundHover?: string;
|
|
87
|
+
buttonBackgroundHoverEnd?: string;
|
|
83
88
|
};
|
|
84
89
|
dark?: {
|
|
85
90
|
background?: string;
|
|
@@ -87,6 +92,11 @@ interface LumiaPassportConfig {
|
|
|
87
92
|
textSecondary?: string;
|
|
88
93
|
textMuted?: string;
|
|
89
94
|
border?: string;
|
|
95
|
+
buttonBackground?: string;
|
|
96
|
+
buttonBackgroundEnd?: string;
|
|
97
|
+
buttonText?: string;
|
|
98
|
+
buttonBackgroundHover?: string;
|
|
99
|
+
buttonBackgroundHoverEnd?: string;
|
|
90
100
|
};
|
|
91
101
|
};
|
|
92
102
|
branding: {
|
|
@@ -369,10 +379,9 @@ declare const TransactionsList: React__default.FC<TransactionsListProps>;
|
|
|
369
379
|
|
|
370
380
|
interface KeyshareBackupProps {
|
|
371
381
|
userId: string;
|
|
372
|
-
onClose?: () => void;
|
|
373
382
|
onBackupSuccess?: () => void;
|
|
374
383
|
}
|
|
375
|
-
declare function KeyshareBackup({ userId,
|
|
384
|
+
declare function KeyshareBackup({ userId, onBackupSuccess }: KeyshareBackupProps): react_jsx_runtime.JSX.Element;
|
|
376
385
|
|
|
377
386
|
interface SendTransactionParams$1 {
|
|
378
387
|
to: `0x${string}`;
|
package/dist/index.d.ts
CHANGED
|
@@ -80,6 +80,11 @@ interface LumiaPassportConfig {
|
|
|
80
80
|
textSecondary?: string;
|
|
81
81
|
textMuted?: string;
|
|
82
82
|
border?: string;
|
|
83
|
+
buttonBackground?: string;
|
|
84
|
+
buttonBackgroundEnd?: string;
|
|
85
|
+
buttonText?: string;
|
|
86
|
+
buttonBackgroundHover?: string;
|
|
87
|
+
buttonBackgroundHoverEnd?: string;
|
|
83
88
|
};
|
|
84
89
|
dark?: {
|
|
85
90
|
background?: string;
|
|
@@ -87,6 +92,11 @@ interface LumiaPassportConfig {
|
|
|
87
92
|
textSecondary?: string;
|
|
88
93
|
textMuted?: string;
|
|
89
94
|
border?: string;
|
|
95
|
+
buttonBackground?: string;
|
|
96
|
+
buttonBackgroundEnd?: string;
|
|
97
|
+
buttonText?: string;
|
|
98
|
+
buttonBackgroundHover?: string;
|
|
99
|
+
buttonBackgroundHoverEnd?: string;
|
|
90
100
|
};
|
|
91
101
|
};
|
|
92
102
|
branding: {
|
|
@@ -369,10 +379,9 @@ declare const TransactionsList: React__default.FC<TransactionsListProps>;
|
|
|
369
379
|
|
|
370
380
|
interface KeyshareBackupProps {
|
|
371
381
|
userId: string;
|
|
372
|
-
onClose?: () => void;
|
|
373
382
|
onBackupSuccess?: () => void;
|
|
374
383
|
}
|
|
375
|
-
declare function KeyshareBackup({ userId,
|
|
384
|
+
declare function KeyshareBackup({ userId, onBackupSuccess }: KeyshareBackupProps): react_jsx_runtime.JSX.Element;
|
|
376
385
|
|
|
377
386
|
interface SendTransactionParams$1 {
|
|
378
387
|
to: `0x${string}`;
|