@lumiapassport/ui-kit 1.3.1 → 1.3.4
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/iframe/main.js +7 -1
- package/dist/iframe/main.js.map +1 -1
- package/dist/index.cjs +2780 -2717
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +2762 -2699
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -206,10 +206,14 @@ interface SessionState {
|
|
|
206
206
|
address: `0x${string}` | null;
|
|
207
207
|
status: string;
|
|
208
208
|
error: string | null;
|
|
209
|
+
recoveryUserId: string | null;
|
|
210
|
+
isRecoveryModalOpen: boolean;
|
|
209
211
|
setSession: (s: AccountSession | null) => void;
|
|
210
212
|
setAddress: (a: `0x${string}` | null) => void;
|
|
211
213
|
setStatus: (s: string) => void;
|
|
212
214
|
setError: (e: string | null) => void;
|
|
215
|
+
setRecoveryUserId: (userId: string | null) => void;
|
|
216
|
+
setIsRecoveryModalOpen: (open: boolean) => void;
|
|
213
217
|
}
|
|
214
218
|
interface LumiaSessionProviderProps {
|
|
215
219
|
children: React__default.ReactNode;
|
package/dist/index.d.ts
CHANGED
|
@@ -206,10 +206,14 @@ interface SessionState {
|
|
|
206
206
|
address: `0x${string}` | null;
|
|
207
207
|
status: string;
|
|
208
208
|
error: string | null;
|
|
209
|
+
recoveryUserId: string | null;
|
|
210
|
+
isRecoveryModalOpen: boolean;
|
|
209
211
|
setSession: (s: AccountSession | null) => void;
|
|
210
212
|
setAddress: (a: `0x${string}` | null) => void;
|
|
211
213
|
setStatus: (s: string) => void;
|
|
212
214
|
setError: (e: string | null) => void;
|
|
215
|
+
setRecoveryUserId: (userId: string | null) => void;
|
|
216
|
+
setIsRecoveryModalOpen: (open: boolean) => void;
|
|
213
217
|
}
|
|
214
218
|
interface LumiaSessionProviderProps {
|
|
215
219
|
children: React__default.ReactNode;
|