@dynamic-labs/sdk-react-core 4.20.5 → 4.20.7
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/CHANGELOG.md +14 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +11 -11
- package/src/lib/context/DynamicContext/hooks/useHandleLogout/useHandleLogout.cjs +8 -3
- package/src/lib/context/DynamicContext/hooks/useHandleLogout/useHandleLogout.js +8 -3
- package/src/lib/context/ViewContext/types/index.d.ts +1 -1
- package/src/lib/layout/DynamicUserProfileLayout/DynamicUserProfileLayout.cjs +2 -0
- package/src/lib/layout/DynamicUserProfileLayout/DynamicUserProfileLayout.js +2 -0
- package/src/lib/locale/en/translation.cjs +20 -0
- package/src/lib/locale/en/translation.d.ts +20 -0
- package/src/lib/locale/en/translation.js +20 -0
- package/src/lib/shared/assets/index.d.ts +2 -0
- package/src/lib/shared/assets/locked.cjs +52 -0
- package/src/lib/shared/assets/locked.js +28 -0
- package/src/lib/shared/assets/white-check-black-circle.cjs +61 -0
- package/src/lib/shared/assets/white-check-black-circle.js +37 -0
- package/src/lib/styles/index.shadow.cjs +1 -1
- package/src/lib/styles/index.shadow.js +1 -1
- package/src/lib/utils/constants/authViewLayoutChecks.cjs +1 -0
- package/src/lib/utils/constants/authViewLayoutChecks.js +1 -0
- package/src/lib/utils/functions/getTransactionLink/getTransactionLink.cjs +3 -0
- package/src/lib/utils/functions/getTransactionLink/getTransactionLink.d.ts +1 -1
- package/src/lib/utils/functions/getTransactionLink/getTransactionLink.js +3 -0
- package/src/lib/utils/hooks/index.d.ts +1 -0
- package/src/lib/utils/hooks/useDynamicWaas/constants.cjs +1 -1
- package/src/lib/utils/hooks/useDynamicWaas/constants.d.ts +1 -1
- package/src/lib/utils/hooks/useDynamicWaas/constants.js +1 -1
- package/src/lib/utils/hooks/useDynamicWaas/useDynamicWaas.cjs +34 -28
- package/src/lib/utils/hooks/useDynamicWaas/useDynamicWaas.js +34 -28
- package/src/lib/utils/hooks/useSubmitExchangeFunding/index.d.ts +1 -0
- package/src/lib/utils/hooks/useSubmitExchangeFunding/useSubmitExchangeFunding.d.ts +11 -0
- package/src/lib/views/BackupUnsuccessfulView/BackupUnsuccessfulView.cjs +14 -4
- package/src/lib/views/BackupUnsuccessfulView/BackupUnsuccessfulView.js +14 -4
- package/src/lib/views/MfaExchangeView/MfaExchangeView.cjs +127 -0
- package/src/lib/views/MfaExchangeView/MfaExchangeView.d.ts +7 -0
- package/src/lib/views/MfaExchangeView/MfaExchangeView.js +123 -0
- package/src/lib/views/MfaExchangeView/index.d.ts +1 -0
- package/src/lib/views/viewToComponentMap.cjs +2 -0
- package/src/lib/views/viewToComponentMap.d.ts +4 -0
- package/src/lib/views/viewToComponentMap.js +2 -0
- package/src/lib/widgets/DynamicWidget/components/DynamicWidgetViews/mapViewToComponent.cjs +2 -0
- package/src/lib/widgets/DynamicWidget/components/DynamicWidgetViews/mapViewToComponent.d.ts +8 -13
- package/src/lib/widgets/DynamicWidget/components/DynamicWidgetViews/mapViewToComponent.js +2 -0
- package/src/lib/widgets/DynamicWidget/context/DynamicWidgetContext.types.d.ts +1 -1
- package/src/lib/widgets/DynamicWidget/views/ConfirmExchangeTransferView/ConfirmExchangeTransferView.d.ts +1 -2
- package/src/lib/widgets/DynamicWidget/views/DepositedExchangeView/DepositedExchangeView.cjs +121 -0
- package/src/lib/widgets/DynamicWidget/views/DepositedExchangeView/DepositedExchangeView.d.ts +11 -0
- package/src/lib/widgets/DynamicWidget/views/DepositedExchangeView/DepositedExchangeView.js +117 -0
- package/src/lib/widgets/DynamicWidget/views/DepositedExchangeView/index.d.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,18 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.20.7](https://github.com/dynamic-labs/dynamic-auth/compare/v4.20.6...v4.20.7) (2025-06-20)
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* re export sui-core exports from sui package ([#8989](https://github.com/dynamic-labs/dynamic-auth/issues/8989)) ([d0369df](https://github.com/dynamic-labs/dynamic-auth/commit/d0369dfda3cc5bb026222cf1524694a4ba817797))
|
|
7
|
+
|
|
8
|
+
### [4.20.6](https://github.com/dynamic-labs/dynamic-auth/compare/v4.20.5...v4.20.6) (2025-06-18)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* parse input to eth_signTypedData_v4 with global wallets ([#8964](https://github.com/dynamic-labs/dynamic-auth/issues/8964)) ([6035b5a](https://github.com/dynamic-labs/dynamic-auth/commit/6035b5afcb3af44833e5f9dd9f423b865c06e729))
|
|
14
|
+
* utilize wallet zerodev properties when available in react native ([#8974](https://github.com/dynamic-labs/dynamic-auth/issues/8974)) ([a2390b3](https://github.com/dynamic-labs/dynamic-auth/commit/a2390b367999fd7bfc4e142c1b4ea8d5fab0eece))
|
|
15
|
+
|
|
2
16
|
### [4.20.5](https://github.com/dynamic-labs/dynamic-auth/compare/v4.20.4...v4.20.5) (2025-06-16)
|
|
3
17
|
|
|
4
18
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/sdk-react-core",
|
|
3
|
-
"version": "4.20.
|
|
3
|
+
"version": "4.20.7",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"@dynamic-labs/sdk-api-core": "0.0.688",
|
|
6
6
|
"@dynamic-labs-sdk/client": "0.0.1-alpha.5",
|
|
@@ -15,16 +15,16 @@
|
|
|
15
15
|
"yup": "0.32.11",
|
|
16
16
|
"react-international-phone": "4.2.5",
|
|
17
17
|
"bs58": "5.0.0",
|
|
18
|
-
"@dynamic-labs/assert-package-version": "4.20.
|
|
19
|
-
"@dynamic-labs/iconic": "4.20.
|
|
20
|
-
"@dynamic-labs/logger": "4.20.
|
|
21
|
-
"@dynamic-labs/multi-wallet": "4.20.
|
|
22
|
-
"@dynamic-labs/rpc-providers": "4.20.
|
|
23
|
-
"@dynamic-labs/store": "4.20.
|
|
24
|
-
"@dynamic-labs/types": "4.20.
|
|
25
|
-
"@dynamic-labs/utils": "4.20.
|
|
26
|
-
"@dynamic-labs/wallet-book": "4.20.
|
|
27
|
-
"@dynamic-labs/wallet-connector-core": "4.20.
|
|
18
|
+
"@dynamic-labs/assert-package-version": "4.20.7",
|
|
19
|
+
"@dynamic-labs/iconic": "4.20.7",
|
|
20
|
+
"@dynamic-labs/logger": "4.20.7",
|
|
21
|
+
"@dynamic-labs/multi-wallet": "4.20.7",
|
|
22
|
+
"@dynamic-labs/rpc-providers": "4.20.7",
|
|
23
|
+
"@dynamic-labs/store": "4.20.7",
|
|
24
|
+
"@dynamic-labs/types": "4.20.7",
|
|
25
|
+
"@dynamic-labs/utils": "4.20.7",
|
|
26
|
+
"@dynamic-labs/wallet-book": "4.20.7",
|
|
27
|
+
"@dynamic-labs/wallet-connector-core": "4.20.7",
|
|
28
28
|
"eventemitter3": "5.0.1"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
@@ -103,11 +103,17 @@ const useHandleLogout = (params) => {
|
|
|
103
103
|
const paramsRef = React.useRef(params);
|
|
104
104
|
paramsRef.current = params;
|
|
105
105
|
const logout = React.useCallback(() => _tslib.__awaiter(void 0, void 0, void 0, function* () {
|
|
106
|
+
const p = paramsRef.current;
|
|
107
|
+
// We store which wallet connectors were active before logout
|
|
108
|
+
// to not have to worry about having the array change midway through
|
|
109
|
+
const activeConnectors = [
|
|
110
|
+
...p.walletConnectors,
|
|
111
|
+
...p.connectedWallets.map((connectedWallet) => connectedWallet.connector),
|
|
112
|
+
];
|
|
106
113
|
logger.logger.logVerboseTroubleshootingMessage('useHandleLogout called', {
|
|
107
114
|
params: paramsRef.current,
|
|
108
115
|
});
|
|
109
116
|
utils.tracing.logEvent('logout', 'useHandleLogout called');
|
|
110
|
-
const p = paramsRef.current;
|
|
111
117
|
p.setSelectedWalletConnectorKey(null);
|
|
112
118
|
p.clearAllWalletConnectSessions();
|
|
113
119
|
p.setShowDynamicUserProfile(false);
|
|
@@ -150,8 +156,7 @@ const useHandleLogout = (params) => {
|
|
|
150
156
|
p.removeSessionStorageSessionKeys();
|
|
151
157
|
dynamicEvents.dynamicEvents.emit('logout');
|
|
152
158
|
user.setUser(undefined);
|
|
153
|
-
yield Promise.all(
|
|
154
|
-
yield Promise.all(p.connectedWallets.map((connectedWallet) => connectedWallet.connector.endSession()));
|
|
159
|
+
yield Promise.all(activeConnectors.map((connector) => connector.endSession()));
|
|
155
160
|
}), []);
|
|
156
161
|
/** Trigger a logout when the SDK failed to load data from storage */
|
|
157
162
|
React.useEffect(() => {
|
|
@@ -99,11 +99,17 @@ const useHandleLogout = (params) => {
|
|
|
99
99
|
const paramsRef = useRef(params);
|
|
100
100
|
paramsRef.current = params;
|
|
101
101
|
const logout = useCallback(() => __awaiter(void 0, void 0, void 0, function* () {
|
|
102
|
+
const p = paramsRef.current;
|
|
103
|
+
// We store which wallet connectors were active before logout
|
|
104
|
+
// to not have to worry about having the array change midway through
|
|
105
|
+
const activeConnectors = [
|
|
106
|
+
...p.walletConnectors,
|
|
107
|
+
...p.connectedWallets.map((connectedWallet) => connectedWallet.connector),
|
|
108
|
+
];
|
|
102
109
|
logger.logVerboseTroubleshootingMessage('useHandleLogout called', {
|
|
103
110
|
params: paramsRef.current,
|
|
104
111
|
});
|
|
105
112
|
tracing.logEvent('logout', 'useHandleLogout called');
|
|
106
|
-
const p = paramsRef.current;
|
|
107
113
|
p.setSelectedWalletConnectorKey(null);
|
|
108
114
|
p.clearAllWalletConnectSessions();
|
|
109
115
|
p.setShowDynamicUserProfile(false);
|
|
@@ -146,8 +152,7 @@ const useHandleLogout = (params) => {
|
|
|
146
152
|
p.removeSessionStorageSessionKeys();
|
|
147
153
|
dynamicEvents.emit('logout');
|
|
148
154
|
setUser(undefined);
|
|
149
|
-
yield Promise.all(
|
|
150
|
-
yield Promise.all(p.connectedWallets.map((connectedWallet) => connectedWallet.connector.endSession()));
|
|
155
|
+
yield Promise.all(activeConnectors.map((connector) => connector.endSession()));
|
|
151
156
|
}), []);
|
|
152
157
|
/** Trigger a logout when the SDK failed to load data from storage */
|
|
153
158
|
useEffect(() => {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ComponentProps, FC } from 'react';
|
|
2
2
|
import { viewToComponentMap } from '../../../views/viewToComponentMap';
|
|
3
|
-
export type ViewType = 'access-blocked' | 'backup-unsuccessful' | 'select-hardware-wallet' | 'captcha' | 'chainalysis-blocked-wallet' | 'collect-user-data' | 'collect-user-data-login-no-wallet' | 'login-with-email-or-wallet-full-wallet-list' | 'login-with-email-or-wallet' | 'login-with-wallet-only' | 'login-with-email-verification' | 'login-with-sms-verification' | 'network-not-supported' | 'network-not-supported-manual' | 'no-access' | 'no-qr-not-installed' | 'pending-connect' | 'pending-signature-without-back-button' | 'pending-signature' | 'qr-code' | 'verify-email' | 'verify-sms' | 'wallet-connect-mobile-wallets-list' | 'wallet-list' | 'external-funding-exchange-list' | 'external-funding-wallet-list' | 'sandbox-maximum-threshold-reached' | 'multi-wallet-wallet-list' | 'duplicate-wallet' | 'wallet-sign' | 'wallet-used' | 'wallet-group' | 'select-wallet-in-wallet-group' | 'wait-for-email-confirmation-view' | 'email-wallet-otp-verification-view' | 'social-redirect-view' | 'wallet-locked-view' | 'social-wrong-account' | 'gate-blocked-wallet' | 'bridge-welcome' | 'bridge-summary' | 'bridge-next-wallet-connection' | 'account-exists' | 'merge-user-accounts' | 'merge-user-accounts-conflicts' | 'merge-user-accounts-with-same-email' | 'mfa-choose-device' | 'mfa-recovery' | 'mfa-secure-device' | 'mfa-secure-device-help' | 'mfa-verification' | 'mfa-display-backup-codes' | 'wallet-cannot-be-transferred' | 'passkey-intro' | 'passkey-recovery-add-email' | 'global-wallet-confirm' | 'global-wallet-malicious' | 'global-wallet-info' | 'passkey-recovery-start' | 'passkey-recovery-bundle' | 'passkey-recovery-complete' | 'passkey-new-domain-detected' | 'embedded-delete-view' | 'embedded-reveal-view' | 'embedded-reveal-account-view' | 'embedded-wallet-auth-choice' | 'rename-passkey' | 'wallet-redirect-view' | 'mobile-wallet-redirect-view' | 'farcaster-connect-view' | 'embedded-wallet-exists' | 'user-delete-account';
|
|
3
|
+
export type ViewType = 'access-blocked' | 'backup-unsuccessful' | 'select-hardware-wallet' | 'captcha' | 'chainalysis-blocked-wallet' | 'collect-user-data' | 'collect-user-data-login-no-wallet' | 'login-with-email-or-wallet-full-wallet-list' | 'login-with-email-or-wallet' | 'login-with-wallet-only' | 'login-with-email-verification' | 'login-with-sms-verification' | 'network-not-supported' | 'network-not-supported-manual' | 'no-access' | 'no-qr-not-installed' | 'pending-connect' | 'pending-signature-without-back-button' | 'pending-signature' | 'qr-code' | 'verify-email' | 'verify-sms' | 'wallet-connect-mobile-wallets-list' | 'wallet-list' | 'external-funding-exchange-list' | 'external-funding-wallet-list' | 'mfa-exchange-view' | 'sandbox-maximum-threshold-reached' | 'multi-wallet-wallet-list' | 'duplicate-wallet' | 'wallet-sign' | 'wallet-used' | 'wallet-group' | 'select-wallet-in-wallet-group' | 'wait-for-email-confirmation-view' | 'email-wallet-otp-verification-view' | 'social-redirect-view' | 'wallet-locked-view' | 'social-wrong-account' | 'gate-blocked-wallet' | 'bridge-welcome' | 'bridge-summary' | 'bridge-next-wallet-connection' | 'account-exists' | 'merge-user-accounts' | 'merge-user-accounts-conflicts' | 'merge-user-accounts-with-same-email' | 'mfa-choose-device' | 'mfa-recovery' | 'mfa-secure-device' | 'mfa-secure-device-help' | 'mfa-verification' | 'mfa-display-backup-codes' | 'wallet-cannot-be-transferred' | 'passkey-intro' | 'passkey-recovery-add-email' | 'global-wallet-confirm' | 'global-wallet-malicious' | 'global-wallet-info' | 'passkey-recovery-start' | 'passkey-recovery-bundle' | 'passkey-recovery-complete' | 'passkey-new-domain-detected' | 'embedded-delete-view' | 'embedded-reveal-view' | 'embedded-reveal-account-view' | 'embedded-wallet-auth-choice' | 'rename-passkey' | 'wallet-redirect-view' | 'mobile-wallet-redirect-view' | 'farcaster-connect-view' | 'embedded-wallet-exists' | 'user-delete-account';
|
|
4
4
|
export type ViewMapConstraint = Record<ViewType, FC<any>>;
|
|
5
5
|
export type ViewMap = typeof viewToComponentMap;
|
|
6
6
|
export type ViewState<T extends ViewType> = {
|
|
@@ -110,6 +110,7 @@ const shouldNotRenderHeaderViews = [
|
|
|
110
110
|
...DynamicWidgetContext_types.DynamicSettingsViews,
|
|
111
111
|
...DynamicWidgetContext_types.DynamicGlobalWalletViews,
|
|
112
112
|
'receive-wallet-funds',
|
|
113
|
+
'deposited-exchange',
|
|
113
114
|
'choose-wallet-funding-method',
|
|
114
115
|
'deposit-view',
|
|
115
116
|
'choose-linked-wallet',
|
|
@@ -120,6 +121,7 @@ const shouldNotRenderHeaderViews = [
|
|
|
120
121
|
*/
|
|
121
122
|
const shouldNotRenderBottomNavBarOptions = [
|
|
122
123
|
'receive-wallet-funds',
|
|
124
|
+
'deposited-exchange',
|
|
123
125
|
'choose-wallet-funding-method',
|
|
124
126
|
'deposit-view',
|
|
125
127
|
'confirm-exchange-transfer',
|
|
@@ -106,6 +106,7 @@ const shouldNotRenderHeaderViews = [
|
|
|
106
106
|
...DynamicSettingsViews,
|
|
107
107
|
...DynamicGlobalWalletViews,
|
|
108
108
|
'receive-wallet-funds',
|
|
109
|
+
'deposited-exchange',
|
|
109
110
|
'choose-wallet-funding-method',
|
|
110
111
|
'deposit-view',
|
|
111
112
|
'choose-linked-wallet',
|
|
@@ -116,6 +117,7 @@ const shouldNotRenderHeaderViews = [
|
|
|
116
117
|
*/
|
|
117
118
|
const shouldNotRenderBottomNavBarOptions = [
|
|
118
119
|
'receive-wallet-funds',
|
|
120
|
+
'deposited-exchange',
|
|
119
121
|
'choose-wallet-funding-method',
|
|
120
122
|
'deposit-view',
|
|
121
123
|
'confirm-exchange-transfer',
|
|
@@ -523,6 +523,25 @@ const translation = {
|
|
|
523
523
|
cancel: 'Cancel',
|
|
524
524
|
account: 'User {{exchange}}',
|
|
525
525
|
},
|
|
526
|
+
dyn_deposited_exchange: {
|
|
527
|
+
title: 'Deposited',
|
|
528
|
+
description: ' was successfully deposited to {{address}}',
|
|
529
|
+
done: 'Done',
|
|
530
|
+
view: 'View Transaction',
|
|
531
|
+
},
|
|
532
|
+
dyn_exchange_mfa: {
|
|
533
|
+
title: 'Confirm Verification Code',
|
|
534
|
+
placeholder: 'Enter Verification Code Here',
|
|
535
|
+
description: 'Enter the code sent to you or generated by your authenticator app',
|
|
536
|
+
button: 'Confirm',
|
|
537
|
+
},
|
|
538
|
+
dyn_exchange_transfer_errors: {
|
|
539
|
+
title: 'Unable to execute transfer.',
|
|
540
|
+
mfa_failed: 'Incorrect security code. Please double-check your MFA code and try again.',
|
|
541
|
+
invalid_currency_description: 'Please choose a supported currency and try again.',
|
|
542
|
+
invalid_balance: 'This transfer, including fees, exceeds your available balance. Transfer a smaller amount.',
|
|
543
|
+
unknown: 'An unknown error occurred.',
|
|
544
|
+
},
|
|
526
545
|
/**
|
|
527
546
|
* @description copy keys for embedded wallet authenticator choice view
|
|
528
547
|
* @default
|
|
@@ -1196,6 +1215,7 @@ const translation = {
|
|
|
1196
1215
|
title: "Let's try that again",
|
|
1197
1216
|
description: "It looks like setup didn't finish all the way. Click below and we'll get you back on track.",
|
|
1198
1217
|
try_again: 'Try Again',
|
|
1218
|
+
log_out: 'Log Out',
|
|
1199
1219
|
},
|
|
1200
1220
|
},
|
|
1201
1221
|
/**
|
|
@@ -517,6 +517,25 @@ export declare const translation: {
|
|
|
517
517
|
cancel: string;
|
|
518
518
|
account: string;
|
|
519
519
|
};
|
|
520
|
+
dyn_deposited_exchange: {
|
|
521
|
+
title: string;
|
|
522
|
+
description: string;
|
|
523
|
+
done: string;
|
|
524
|
+
view: string;
|
|
525
|
+
};
|
|
526
|
+
dyn_exchange_mfa: {
|
|
527
|
+
title: string;
|
|
528
|
+
placeholder: string;
|
|
529
|
+
description: string;
|
|
530
|
+
button: string;
|
|
531
|
+
};
|
|
532
|
+
dyn_exchange_transfer_errors: {
|
|
533
|
+
title: string;
|
|
534
|
+
mfa_failed: string;
|
|
535
|
+
invalid_currency_description: string;
|
|
536
|
+
invalid_balance: string;
|
|
537
|
+
unknown: string;
|
|
538
|
+
};
|
|
520
539
|
/**
|
|
521
540
|
* @description copy keys for embedded wallet authenticator choice view
|
|
522
541
|
* @default
|
|
@@ -1192,6 +1211,7 @@ export declare const translation: {
|
|
|
1192
1211
|
title: string;
|
|
1193
1212
|
description: string;
|
|
1194
1213
|
try_again: string;
|
|
1214
|
+
log_out: string;
|
|
1195
1215
|
};
|
|
1196
1216
|
};
|
|
1197
1217
|
/**
|
|
@@ -519,6 +519,25 @@ const translation = {
|
|
|
519
519
|
cancel: 'Cancel',
|
|
520
520
|
account: 'User {{exchange}}',
|
|
521
521
|
},
|
|
522
|
+
dyn_deposited_exchange: {
|
|
523
|
+
title: 'Deposited',
|
|
524
|
+
description: ' was successfully deposited to {{address}}',
|
|
525
|
+
done: 'Done',
|
|
526
|
+
view: 'View Transaction',
|
|
527
|
+
},
|
|
528
|
+
dyn_exchange_mfa: {
|
|
529
|
+
title: 'Confirm Verification Code',
|
|
530
|
+
placeholder: 'Enter Verification Code Here',
|
|
531
|
+
description: 'Enter the code sent to you or generated by your authenticator app',
|
|
532
|
+
button: 'Confirm',
|
|
533
|
+
},
|
|
534
|
+
dyn_exchange_transfer_errors: {
|
|
535
|
+
title: 'Unable to execute transfer.',
|
|
536
|
+
mfa_failed: 'Incorrect security code. Please double-check your MFA code and try again.',
|
|
537
|
+
invalid_currency_description: 'Please choose a supported currency and try again.',
|
|
538
|
+
invalid_balance: 'This transfer, including fees, exceeds your available balance. Transfer a smaller amount.',
|
|
539
|
+
unknown: 'An unknown error occurred.',
|
|
540
|
+
},
|
|
522
541
|
/**
|
|
523
542
|
* @description copy keys for embedded wallet authenticator choice view
|
|
524
543
|
* @default
|
|
@@ -1192,6 +1211,7 @@ const translation = {
|
|
|
1192
1211
|
title: "Let's try that again",
|
|
1193
1212
|
description: "It looks like setup didn't finish all the way. Click below and we'll get you back on track.",
|
|
1194
1213
|
try_again: 'Try Again',
|
|
1214
|
+
log_out: 'Log Out',
|
|
1195
1215
|
},
|
|
1196
1216
|
},
|
|
1197
1217
|
/**
|
|
@@ -66,6 +66,7 @@ export { ReactComponent as LinkCircleIcon } from './link-circle.svg';
|
|
|
66
66
|
export { ReactComponent as LinkIcon } from './link.svg';
|
|
67
67
|
export { ReactComponent as LocationIcon } from './location.svg';
|
|
68
68
|
export { ReactComponent as LockIcon } from './lock.svg';
|
|
69
|
+
export { ReactComponent as LockedIcon } from './locked.svg';
|
|
69
70
|
export { ReactComponent as LogoutIcon } from './logout.svg';
|
|
70
71
|
export { ReactComponent as MailIcon } from './mail.svg';
|
|
71
72
|
export { ReactComponent as MfaRecoveryIcon } from './mfa-recovery-icon.svg';
|
|
@@ -121,3 +122,4 @@ export { ReactComponent as WarningOrangeIcon } from './warning-orange.svg';
|
|
|
121
122
|
export { ReactComponent as WarningRedIcon } from './warning-red.svg';
|
|
122
123
|
export { ReactComponent as WorkSuitcaseIcon } from './work-suitcase.svg';
|
|
123
124
|
export { ReactComponent as BackupIcon } from './backup.svg';
|
|
125
|
+
export { ReactComponent as WhiteCheck } from './white-check-black-circle.svg';
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
'use client'
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
5
|
+
|
|
6
|
+
var React = require('react');
|
|
7
|
+
|
|
8
|
+
function _interopNamespace(e) {
|
|
9
|
+
if (e && e.__esModule) return e;
|
|
10
|
+
var n = Object.create(null);
|
|
11
|
+
if (e) {
|
|
12
|
+
Object.keys(e).forEach(function (k) {
|
|
13
|
+
if (k !== 'default') {
|
|
14
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
15
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
16
|
+
enumerable: true,
|
|
17
|
+
get: function () { return e[k]; }
|
|
18
|
+
});
|
|
19
|
+
}
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
n["default"] = e;
|
|
23
|
+
return Object.freeze(n);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
|
27
|
+
|
|
28
|
+
var _path;
|
|
29
|
+
var _excluded = ["title", "titleId"];
|
|
30
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) { ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } } return n; }, _extends.apply(null, arguments); }
|
|
31
|
+
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var s = Object.getOwnPropertySymbols(e); for (r = 0; r < s.length; r++) { o = s[r], t.includes(o) || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } } return i; }
|
|
32
|
+
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) { if ({}.hasOwnProperty.call(r, n)) { if (e.includes(n)) continue; t[n] = r[n]; } } return t; }
|
|
33
|
+
var SvgLocked = function SvgLocked(_ref) {
|
|
34
|
+
var title = _ref.title,
|
|
35
|
+
titleId = _ref.titleId,
|
|
36
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
37
|
+
return /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
38
|
+
width: 65,
|
|
39
|
+
height: 64,
|
|
40
|
+
viewBox: "0 0 65 64",
|
|
41
|
+
fill: "none",
|
|
42
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
43
|
+
"aria-labelledby": titleId
|
|
44
|
+
}, props), title ? /*#__PURE__*/React__namespace.createElement("title", {
|
|
45
|
+
id: titleId
|
|
46
|
+
}, title) : null, _path || (_path = /*#__PURE__*/React__namespace.createElement("path", {
|
|
47
|
+
d: "M32.5 0c17.673 0 32 14.327 32 32 0 17.673-14.327 32-32 32-17.673 0-32-14.327-32-32 0-17.673 14.327-32 32-32Zm.455 13a8.074 8.074 0 0 0-8.073 8.073v4.037A13.435 13.435 0 0 0 19.5 35.875c0 7.431 6.025 13.456 13.456 13.456 7.431 0 13.455-6.025 13.455-13.456 0-4.403-2.114-8.312-5.383-10.767v-4.035a8.073 8.073 0 0 0-7.657-8.062L32.955 13ZM33 30a3.5 3.5 0 0 1 1.5 6.663V39.5a1.5 1.5 0 0 1-3 0v-2.837A3.5 3.5 0 0 1 33 30Zm-.045-14a5.073 5.073 0 0 1 5.073 5.073v2.335a13.418 13.418 0 0 0-5.072-.99c-1.795 0-3.508.353-5.074.991v-2.336A5.074 5.074 0 0 1 32.955 16Z",
|
|
48
|
+
fill: "#0A0B0C"
|
|
49
|
+
})));
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
exports.ReactComponent = SvgLocked;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
'use client'
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
var _path;
|
|
5
|
+
var _excluded = ["title", "titleId"];
|
|
6
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) { ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } } return n; }, _extends.apply(null, arguments); }
|
|
7
|
+
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var s = Object.getOwnPropertySymbols(e); for (r = 0; r < s.length; r++) { o = s[r], t.includes(o) || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } } return i; }
|
|
8
|
+
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) { if ({}.hasOwnProperty.call(r, n)) { if (e.includes(n)) continue; t[n] = r[n]; } } return t; }
|
|
9
|
+
var SvgLocked = function SvgLocked(_ref) {
|
|
10
|
+
var title = _ref.title,
|
|
11
|
+
titleId = _ref.titleId,
|
|
12
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
13
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
14
|
+
width: 65,
|
|
15
|
+
height: 64,
|
|
16
|
+
viewBox: "0 0 65 64",
|
|
17
|
+
fill: "none",
|
|
18
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
19
|
+
"aria-labelledby": titleId
|
|
20
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
21
|
+
id: titleId
|
|
22
|
+
}, title) : null, _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
23
|
+
d: "M32.5 0c17.673 0 32 14.327 32 32 0 17.673-14.327 32-32 32-17.673 0-32-14.327-32-32 0-17.673 14.327-32 32-32Zm.455 13a8.074 8.074 0 0 0-8.073 8.073v4.037A13.435 13.435 0 0 0 19.5 35.875c0 7.431 6.025 13.456 13.456 13.456 7.431 0 13.455-6.025 13.455-13.456 0-4.403-2.114-8.312-5.383-10.767v-4.035a8.073 8.073 0 0 0-7.657-8.062L32.955 13ZM33 30a3.5 3.5 0 0 1 1.5 6.663V39.5a1.5 1.5 0 0 1-3 0v-2.837A3.5 3.5 0 0 1 33 30Zm-.045-14a5.073 5.073 0 0 1 5.073 5.073v2.335a13.418 13.418 0 0 0-5.072-.99c-1.795 0-3.508.353-5.074.991v-2.336A5.074 5.074 0 0 1 32.955 16Z",
|
|
24
|
+
fill: "#0A0B0C"
|
|
25
|
+
})));
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
export { SvgLocked as ReactComponent };
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
'use client'
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
5
|
+
|
|
6
|
+
var React = require('react');
|
|
7
|
+
|
|
8
|
+
function _interopNamespace(e) {
|
|
9
|
+
if (e && e.__esModule) return e;
|
|
10
|
+
var n = Object.create(null);
|
|
11
|
+
if (e) {
|
|
12
|
+
Object.keys(e).forEach(function (k) {
|
|
13
|
+
if (k !== 'default') {
|
|
14
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
15
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
16
|
+
enumerable: true,
|
|
17
|
+
get: function () { return e[k]; }
|
|
18
|
+
});
|
|
19
|
+
}
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
n["default"] = e;
|
|
23
|
+
return Object.freeze(n);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
|
27
|
+
|
|
28
|
+
var _g, _defs;
|
|
29
|
+
var _excluded = ["title", "titleId"];
|
|
30
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) { ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } } return n; }, _extends.apply(null, arguments); }
|
|
31
|
+
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var s = Object.getOwnPropertySymbols(e); for (r = 0; r < s.length; r++) { o = s[r], t.includes(o) || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } } return i; }
|
|
32
|
+
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) { if ({}.hasOwnProperty.call(r, n)) { if (e.includes(n)) continue; t[n] = r[n]; } } return t; }
|
|
33
|
+
var SvgWhiteCheckBlackCircle = function SvgWhiteCheckBlackCircle(_ref) {
|
|
34
|
+
var title = _ref.title,
|
|
35
|
+
titleId = _ref.titleId,
|
|
36
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
37
|
+
return /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
38
|
+
width: 80,
|
|
39
|
+
height: 80,
|
|
40
|
+
viewBox: "0 0 80 80",
|
|
41
|
+
fill: "none",
|
|
42
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
43
|
+
"aria-labelledby": titleId
|
|
44
|
+
}, props), title ? /*#__PURE__*/React__namespace.createElement("title", {
|
|
45
|
+
id: titleId
|
|
46
|
+
}, title) : null, _g || (_g = /*#__PURE__*/React__namespace.createElement("g", {
|
|
47
|
+
clipPath: "url(#white-check-black-circle_svg__a)"
|
|
48
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
49
|
+
d: "M40 0c22.091 0 40 17.909 40 40S62.091 80 40 80 0 62.091 0 40 17.909 0 40 0Zm16.056 28.11a2.083 2.083 0 0 0-2.947 0L33.75 47.47l-6.86-6.86a2.083 2.083 0 1 0-2.947 2.947l8.333 8.333a2.083 2.083 0 0 0 2.947 0l20.833-20.833a2.083 2.083 0 0 0 0-2.947Z",
|
|
50
|
+
fill: "#0A0B0C"
|
|
51
|
+
}))), _defs || (_defs = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
52
|
+
id: "white-check-black-circle_svg__a"
|
|
53
|
+
}, /*#__PURE__*/React__namespace.createElement("rect", {
|
|
54
|
+
width: 80,
|
|
55
|
+
height: 80,
|
|
56
|
+
rx: 40,
|
|
57
|
+
fill: "#fff"
|
|
58
|
+
})))));
|
|
59
|
+
};
|
|
60
|
+
|
|
61
|
+
exports.ReactComponent = SvgWhiteCheckBlackCircle;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
'use client'
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
var _g, _defs;
|
|
5
|
+
var _excluded = ["title", "titleId"];
|
|
6
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) { ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } } return n; }, _extends.apply(null, arguments); }
|
|
7
|
+
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var s = Object.getOwnPropertySymbols(e); for (r = 0; r < s.length; r++) { o = s[r], t.includes(o) || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } } return i; }
|
|
8
|
+
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) { if ({}.hasOwnProperty.call(r, n)) { if (e.includes(n)) continue; t[n] = r[n]; } } return t; }
|
|
9
|
+
var SvgWhiteCheckBlackCircle = function SvgWhiteCheckBlackCircle(_ref) {
|
|
10
|
+
var title = _ref.title,
|
|
11
|
+
titleId = _ref.titleId,
|
|
12
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
13
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
14
|
+
width: 80,
|
|
15
|
+
height: 80,
|
|
16
|
+
viewBox: "0 0 80 80",
|
|
17
|
+
fill: "none",
|
|
18
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
19
|
+
"aria-labelledby": titleId
|
|
20
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
21
|
+
id: titleId
|
|
22
|
+
}, title) : null, _g || (_g = /*#__PURE__*/React.createElement("g", {
|
|
23
|
+
clipPath: "url(#white-check-black-circle_svg__a)"
|
|
24
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
25
|
+
d: "M40 0c22.091 0 40 17.909 40 40S62.091 80 40 80 0 62.091 0 40 17.909 0 40 0Zm16.056 28.11a2.083 2.083 0 0 0-2.947 0L33.75 47.47l-6.86-6.86a2.083 2.083 0 1 0-2.947 2.947l8.333 8.333a2.083 2.083 0 0 0 2.947 0l20.833-20.833a2.083 2.083 0 0 0 0-2.947Z",
|
|
26
|
+
fill: "#0A0B0C"
|
|
27
|
+
}))), _defs || (_defs = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
28
|
+
id: "white-check-black-circle_svg__a"
|
|
29
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
30
|
+
width: 80,
|
|
31
|
+
height: 80,
|
|
32
|
+
rx: 40,
|
|
33
|
+
fill: "#fff"
|
|
34
|
+
})))));
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
export { SvgWhiteCheckBlackCircle as ReactComponent };
|