@dynamic-labs/sdk-react-core 3.0.0-alpha.41 → 3.0.0-alpha.42
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 +8 -0
- package/package.cjs +2 -2
- package/package.js +2 -2
- package/package.json +13 -13
- package/src/lib/components/AuthProviderIcon/AuthProviderIcon.cjs +2 -2
- package/src/lib/components/AuthProviderIcon/AuthProviderIcon.js +2 -2
- package/src/lib/components/MfaDeviceTileSkeleton/MfaDeviceTileSkeleton.cjs +11 -0
- package/src/lib/components/MfaDeviceTileSkeleton/MfaDeviceTileSkeleton.d.ts +2 -0
- package/src/lib/components/MfaDeviceTileSkeleton/MfaDeviceTileSkeleton.js +7 -0
- package/src/lib/components/MfaDeviceTileSkeleton/index.d.ts +1 -0
- package/src/lib/components/UserProfile/parts/UserProfileSection/UserProfileSection.cjs +1 -1
- package/src/lib/components/UserProfile/parts/UserProfileSection/UserProfileSection.js +1 -1
- package/src/lib/layout/DynamicUserProfileLayout/DynamicUserProfileLayout.cjs +0 -6
- package/src/lib/layout/DynamicUserProfileLayout/DynamicUserProfileLayout.js +0 -6
- package/src/lib/locale/en/translation.cjs +2 -2
- package/src/lib/locale/en/translation.d.ts +1 -1
- package/src/lib/locale/en/translation.js +2 -2
- package/src/lib/shared/assets/profile-outline.cjs +5 -5
- package/src/lib/shared/assets/profile-outline.js +5 -5
- package/src/lib/shared/assets/settings-outline.cjs +5 -5
- package/src/lib/shared/assets/settings-outline.js +5 -5
- package/src/lib/shared/assets/wallet-outline-v2.cjs +5 -5
- package/src/lib/shared/assets/wallet-outline-v2.js +5 -5
- package/src/lib/styles/index.shadow.cjs +1 -1
- package/src/lib/styles/index.shadow.js +1 -1
- package/src/lib/utils/hooks/useTransferWallet/index.d.ts +1 -0
- package/src/lib/views/NoQrNotInstalledView/WalletHelpLink.d.ts +9 -0
- package/src/lib/widgets/DynamicWidget/components/BottomNavBar/BottomNavBar.cjs +85 -1
- package/src/lib/widgets/DynamicWidget/components/BottomNavBar/BottomNavBar.d.ts +0 -1
- package/src/lib/widgets/DynamicWidget/components/BottomNavBar/BottomNavBar.js +85 -1
- package/src/lib/widgets/DynamicWidget/components/DynamicWidgetWallets/DynamicWidgetWallets.cjs +1 -1
- package/src/lib/widgets/DynamicWidget/components/DynamicWidgetWallets/DynamicWidgetWallets.js +1 -1
- package/src/lib/widgets/DynamicWidget/views/ManageMfaWidgetView/ManageMfaWidgetView.cjs +7 -4
- package/src/lib/widgets/DynamicWidget/views/ManageMfaWidgetView/ManageMfaWidgetView.d.ts +0 -2
- package/src/lib/widgets/DynamicWidget/views/ManageMfaWidgetView/ManageMfaWidgetView.js +8 -4
- package/src/lib/widgets/DynamicWidget/views/ManageMfaWidgetView/components/UserDeviceTile.cjs +4 -3
- package/src/lib/widgets/DynamicWidget/views/ManageMfaWidgetView/components/UserDeviceTile.d.ts +1 -1
- package/src/lib/widgets/DynamicWidget/views/ManageMfaWidgetView/components/UserDeviceTile.js +4 -3
- package/src/lib/widgets/DynamicWidget/views/ManageMfaWidgetView/components/utils/sort.cjs +23 -0
- package/src/lib/widgets/DynamicWidget/views/ManageMfaWidgetView/components/utils/sort.d.ts +4 -0
- package/src/lib/widgets/DynamicWidget/views/ManageMfaWidgetView/components/utils/sort.js +17 -0
- package/src/lib/widgets/DynamicWidget/views/SettingsView/SettingsView.cjs +1 -2
- package/src/lib/widgets/DynamicWidget/views/SettingsView/SettingsView.js +1 -2
- package/src/lib/shared/assets/profile.cjs +0 -65
- package/src/lib/shared/assets/profile.js +0 -41
- package/src/lib/shared/assets/settings.cjs +0 -54
- package/src/lib/shared/assets/settings.js +0 -30
- package/src/lib/shared/assets/wallet.cjs +0 -52
- package/src/lib/shared/assets/wallet.js +0 -28
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
1
|
|
|
2
|
+
## [3.0.0-alpha.42](https://github.com/dynamic-labs/DynamicAuth/compare/v3.0.0-alpha.41...v3.0.0-alpha.42) (2024-08-14)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* isEmbeddedWallet condition in AuthProviderIcon ([#6581](https://github.com/dynamic-labs/DynamicAuth/issues/6581)) ([afe33ab](https://github.com/dynamic-labs/DynamicAuth/commit/afe33aba1cc8abefd0566bf4e9c0a4f199d64ef7))
|
|
8
|
+
* update text on MFA backup codes acknowledgement ([#6559](https://github.com/dynamic-labs/DynamicAuth/issues/6559)) ([98b5475](https://github.com/dynamic-labs/DynamicAuth/commit/98b5475df73039061d593318cb26140075de69e1))
|
|
9
|
+
|
|
2
10
|
## [3.0.0-alpha.41](https://github.com/dynamic-labs/DynamicAuth/compare/v3.0.0-alpha.40...v3.0.0-alpha.41) (2024-08-13)
|
|
3
11
|
|
|
4
12
|
## [3.0.0-alpha.40](https://github.com/dynamic-labs/DynamicAuth/compare/v3.0.0-alpha.39...v3.0.0-alpha.40) (2024-08-13)
|
package/package.cjs
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
5
5
|
|
|
6
|
-
var version = "3.0.0-alpha.
|
|
6
|
+
var version = "3.0.0-alpha.42";
|
|
7
7
|
var dependencies = {
|
|
8
|
-
"@dynamic-labs/sdk-api-core": "0.0.
|
|
8
|
+
"@dynamic-labs/sdk-api-core": "0.0.516",
|
|
9
9
|
"@hcaptcha/react-hcaptcha": "1.4.4",
|
|
10
10
|
"country-list": "2.3.0",
|
|
11
11
|
formik: "2.2.9",
|
package/package.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use client'
|
|
2
|
-
var version = "3.0.0-alpha.
|
|
2
|
+
var version = "3.0.0-alpha.42";
|
|
3
3
|
var dependencies = {
|
|
4
|
-
"@dynamic-labs/sdk-api-core": "0.0.
|
|
4
|
+
"@dynamic-labs/sdk-api-core": "0.0.516",
|
|
5
5
|
"@hcaptcha/react-hcaptcha": "1.4.4",
|
|
6
6
|
"country-list": "2.3.0",
|
|
7
7
|
formik: "2.2.9",
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/sdk-react-core",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.42",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/dynamic-labs/dynamic-auth.git",
|
|
7
7
|
"directory": "packages/sdk-react-core"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@dynamic-labs/sdk-api-core": "0.0.
|
|
10
|
+
"@dynamic-labs/sdk-api-core": "0.0.516",
|
|
11
11
|
"@hcaptcha/react-hcaptcha": "1.4.4",
|
|
12
12
|
"country-list": "2.3.0",
|
|
13
13
|
"formik": "2.2.9",
|
|
@@ -17,17 +17,17 @@
|
|
|
17
17
|
"react-i18next": "13.5.0",
|
|
18
18
|
"yup": "0.32.11",
|
|
19
19
|
"react-international-phone": "4.2.5",
|
|
20
|
-
"@dynamic-labs/iconic": "3.0.0-alpha.
|
|
21
|
-
"@dynamic-labs/logger": "3.0.0-alpha.
|
|
22
|
-
"@dynamic-labs/message-transport": "3.0.0-alpha.
|
|
23
|
-
"@dynamic-labs/multi-wallet": "3.0.0-alpha.
|
|
24
|
-
"@dynamic-labs/rpc-providers": "3.0.0-alpha.
|
|
25
|
-
"@dynamic-labs/store": "3.0.0-alpha.
|
|
26
|
-
"@dynamic-labs/types": "3.0.0-alpha.
|
|
27
|
-
"@dynamic-labs/utils": "3.0.0-alpha.
|
|
28
|
-
"@dynamic-labs/viem-utils": "3.0.0-alpha.
|
|
29
|
-
"@dynamic-labs/wallet-book": "3.0.0-alpha.
|
|
30
|
-
"@dynamic-labs/wallet-connector-core": "3.0.0-alpha.
|
|
20
|
+
"@dynamic-labs/iconic": "3.0.0-alpha.42",
|
|
21
|
+
"@dynamic-labs/logger": "3.0.0-alpha.42",
|
|
22
|
+
"@dynamic-labs/message-transport": "3.0.0-alpha.42",
|
|
23
|
+
"@dynamic-labs/multi-wallet": "3.0.0-alpha.42",
|
|
24
|
+
"@dynamic-labs/rpc-providers": "3.0.0-alpha.42",
|
|
25
|
+
"@dynamic-labs/store": "3.0.0-alpha.42",
|
|
26
|
+
"@dynamic-labs/types": "3.0.0-alpha.42",
|
|
27
|
+
"@dynamic-labs/utils": "3.0.0-alpha.42",
|
|
28
|
+
"@dynamic-labs/viem-utils": "3.0.0-alpha.42",
|
|
29
|
+
"@dynamic-labs/wallet-book": "3.0.0-alpha.42",
|
|
30
|
+
"@dynamic-labs/wallet-connector-core": "3.0.0-alpha.42",
|
|
31
31
|
"eventemitter3": "5.0.1"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
@@ -120,7 +120,7 @@ const getMagicEmailOrSocialIcon = ({ findSocialIcon, wallet, user, }) => {
|
|
|
120
120
|
return null;
|
|
121
121
|
};
|
|
122
122
|
const AuthProviderIcon = ({ iconSize = 64, showStatus, wallet, }) => {
|
|
123
|
-
var _a, _b, _c;
|
|
123
|
+
var _a, _b, _c, _d;
|
|
124
124
|
const { primaryWallet, selectedWalletConnector, user, userWithMissingInfo } = useInternalDynamicContext.useInternalDynamicContext();
|
|
125
125
|
const { deniedOauthProvider, deniedAddress } = AccessDeniedContext.useAccessDeniedContext();
|
|
126
126
|
const { isLoadingEmbeddedWallet } = WalletContext.useWalletContext();
|
|
@@ -153,7 +153,7 @@ const AuthProviderIcon = ({ iconSize = 64, showStatus, wallet, }) => {
|
|
|
153
153
|
});
|
|
154
154
|
const isEmbeddedWallet = ((_b = (_a = walletForIcon === null || walletForIcon === void 0 ? void 0 : walletForIcon.connector) === null || _a === void 0 ? void 0 : _a.key) === null || _b === void 0 ? void 0 : _b.startsWith('turnkey')) ||
|
|
155
155
|
(((_c = walletForIcon === null || walletForIcon === void 0 ? void 0 : walletForIcon.connector) === null || _c === void 0 ? void 0 : _c.key) === 'zerodev' &&
|
|
156
|
-
(walletForIcon === null || walletForIcon === void 0 ? void 0 : walletForIcon.connector).getEOAConnector());
|
|
156
|
+
((_d = (walletForIcon === null || walletForIcon === void 0 ? void 0 : walletForIcon.connector).getEOAConnector()) === null || _d === void 0 ? void 0 : _d.isEmbeddedWallet));
|
|
157
157
|
if (isEmbeddedWallet && MagicEmailOrSocialIcon) {
|
|
158
158
|
const chain = walletForIcon === null || walletForIcon === void 0 ? void 0 : walletForIcon.chain;
|
|
159
159
|
const chainEnum = values.VerifiedCredentialNameToChainEnum[chain];
|
|
@@ -116,7 +116,7 @@ const getMagicEmailOrSocialIcon = ({ findSocialIcon, wallet, user, }) => {
|
|
|
116
116
|
return null;
|
|
117
117
|
};
|
|
118
118
|
const AuthProviderIcon = ({ iconSize = 64, showStatus, wallet, }) => {
|
|
119
|
-
var _a, _b, _c;
|
|
119
|
+
var _a, _b, _c, _d;
|
|
120
120
|
const { primaryWallet, selectedWalletConnector, user, userWithMissingInfo } = useInternalDynamicContext();
|
|
121
121
|
const { deniedOauthProvider, deniedAddress } = useAccessDeniedContext();
|
|
122
122
|
const { isLoadingEmbeddedWallet } = useWalletContext();
|
|
@@ -149,7 +149,7 @@ const AuthProviderIcon = ({ iconSize = 64, showStatus, wallet, }) => {
|
|
|
149
149
|
});
|
|
150
150
|
const isEmbeddedWallet = ((_b = (_a = walletForIcon === null || walletForIcon === void 0 ? void 0 : walletForIcon.connector) === null || _a === void 0 ? void 0 : _a.key) === null || _b === void 0 ? void 0 : _b.startsWith('turnkey')) ||
|
|
151
151
|
(((_c = walletForIcon === null || walletForIcon === void 0 ? void 0 : walletForIcon.connector) === null || _c === void 0 ? void 0 : _c.key) === 'zerodev' &&
|
|
152
|
-
(walletForIcon === null || walletForIcon === void 0 ? void 0 : walletForIcon.connector).getEOAConnector());
|
|
152
|
+
((_d = (walletForIcon === null || walletForIcon === void 0 ? void 0 : walletForIcon.connector).getEOAConnector()) === null || _d === void 0 ? void 0 : _d.isEmbeddedWallet));
|
|
153
153
|
if (isEmbeddedWallet && MagicEmailOrSocialIcon) {
|
|
154
154
|
const chain = walletForIcon === null || walletForIcon === void 0 ? void 0 : walletForIcon.chain;
|
|
155
155
|
const chainEnum = VerifiedCredentialNameToChainEnum[chain];
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use client'
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
5
|
+
|
|
6
|
+
var jsxRuntime = require('react/jsx-runtime');
|
|
7
|
+
var Skeleton = require('../Skeleton/Skeleton.cjs');
|
|
8
|
+
|
|
9
|
+
const MfaDeviceTileSkeleton = () => (jsxRuntime.jsx("div", { className: 'mfa-device-skeleton', "data-testid": 'mfa-device-loading', children: jsxRuntime.jsxs("div", { className: 'mfa-device-skeleton__details', children: [jsxRuntime.jsx(Skeleton.Skeleton, {}), jsxRuntime.jsx(Skeleton.Skeleton, {})] }) }));
|
|
10
|
+
|
|
11
|
+
exports.MfaDeviceTileSkeleton = MfaDeviceTileSkeleton;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
'use client'
|
|
2
|
+
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
3
|
+
import { Skeleton } from '../Skeleton/Skeleton.js';
|
|
4
|
+
|
|
5
|
+
const MfaDeviceTileSkeleton = () => (jsx("div", { className: 'mfa-device-skeleton', "data-testid": 'mfa-device-loading', children: jsxs("div", { className: 'mfa-device-skeleton__details', children: [jsx(Skeleton, {}), jsx(Skeleton, {})] }) }));
|
|
6
|
+
|
|
7
|
+
export { MfaDeviceTileSkeleton };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { MfaDeviceTileSkeleton } from './MfaDeviceTileSkeleton';
|
|
@@ -89,6 +89,6 @@ require('../../../../context/ReinitializeContext/ReinitializeContextProvider.cjs
|
|
|
89
89
|
require('../../../InlineWidget/InlineWidget.cjs');
|
|
90
90
|
require('qrcode');
|
|
91
91
|
|
|
92
|
-
const UserProfileSection = ({ title, children, action, }) => (jsxRuntime.jsxs("div", { className: 'user-profile-section', children: [jsxRuntime.jsx("div", { className: 'user-profile-section__header', children: title && (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx(Typography.Typography, {
|
|
92
|
+
const UserProfileSection = ({ title, children, action, }) => (jsxRuntime.jsxs("div", { className: 'user-profile-section', children: [jsxRuntime.jsx("div", { className: 'user-profile-section__header', children: title && (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx(Typography.Typography, { color: 'secondary', weight: 'regular', variant: 'body_normal', className: 'user-profile-section__title', children: title }), action && (jsxRuntime.jsx("div", { className: 'user-profile-section__action', children: action }))] })) }), children] }));
|
|
93
93
|
|
|
94
94
|
exports.UserProfileSection = UserProfileSection;
|
|
@@ -85,6 +85,6 @@ import '../../../../context/ReinitializeContext/ReinitializeContextProvider.js';
|
|
|
85
85
|
import '../../../InlineWidget/InlineWidget.js';
|
|
86
86
|
import 'qrcode';
|
|
87
87
|
|
|
88
|
-
const UserProfileSection = ({ title, children, action, }) => (jsxs("div", { className: 'user-profile-section', children: [jsx("div", { className: 'user-profile-section__header', children: title && (jsxs(Fragment, { children: [jsx(Typography, {
|
|
88
|
+
const UserProfileSection = ({ title, children, action, }) => (jsxs("div", { className: 'user-profile-section', children: [jsx("div", { className: 'user-profile-section__header', children: title && (jsxs(Fragment, { children: [jsx(Typography, { color: 'secondary', weight: 'regular', variant: 'body_normal', className: 'user-profile-section__title', children: title }), action && (jsx("div", { className: 'user-profile-section__action', children: action }))] })) }), children] }));
|
|
89
89
|
|
|
90
90
|
export { UserProfileSection };
|
|
@@ -12,11 +12,8 @@ require('@dynamic-labs/iconic');
|
|
|
12
12
|
require('@dynamic-labs/wallet-connector-core');
|
|
13
13
|
require('../../context/ViewContext/ViewContext.cjs');
|
|
14
14
|
var profileOutline = require('../../shared/assets/profile-outline.cjs');
|
|
15
|
-
var profile = require('../../shared/assets/profile.cjs');
|
|
16
|
-
var wallet = require('../../shared/assets/wallet.cjs');
|
|
17
15
|
var walletOutlineV2 = require('../../shared/assets/wallet-outline-v2.cjs');
|
|
18
16
|
var settingsOutline = require('../../shared/assets/settings-outline.cjs');
|
|
19
|
-
var settings = require('../../shared/assets/settings.cjs');
|
|
20
17
|
require('@dynamic-labs/wallet-book');
|
|
21
18
|
require('../../utils/constants/colors.cjs');
|
|
22
19
|
require('../../utils/constants/values.cjs');
|
|
@@ -116,7 +113,6 @@ const DynamicUserProfileLayout = ({ variant, className, style, }) => {
|
|
|
116
113
|
options.push({
|
|
117
114
|
icon: jsxRuntime.jsx(walletOutlineV2.ReactComponent, {}),
|
|
118
115
|
label: 'Wallets',
|
|
119
|
-
selectedIcon: jsxRuntime.jsx(wallet.ReactComponent, {}),
|
|
120
116
|
value: 'wallets',
|
|
121
117
|
});
|
|
122
118
|
}
|
|
@@ -124,14 +120,12 @@ const DynamicUserProfileLayout = ({ variant, className, style, }) => {
|
|
|
124
120
|
options.push({
|
|
125
121
|
icon: jsxRuntime.jsx(profileOutline.ReactComponent, {}),
|
|
126
122
|
label: 'Profile',
|
|
127
|
-
selectedIcon: jsxRuntime.jsx(profile.ReactComponent, {}),
|
|
128
123
|
value: 'profile',
|
|
129
124
|
});
|
|
130
125
|
}
|
|
131
126
|
options.push({
|
|
132
127
|
icon: jsxRuntime.jsx(settingsOutline.ReactComponent, {}),
|
|
133
128
|
label: 'Settings',
|
|
134
|
-
selectedIcon: jsxRuntime.jsx(settings.ReactComponent, {}),
|
|
135
129
|
value: 'settings',
|
|
136
130
|
});
|
|
137
131
|
return options;
|
|
@@ -8,11 +8,8 @@ import '@dynamic-labs/iconic';
|
|
|
8
8
|
import '@dynamic-labs/wallet-connector-core';
|
|
9
9
|
import '../../context/ViewContext/ViewContext.js';
|
|
10
10
|
import { ReactComponent as SvgProfileOutline } from '../../shared/assets/profile-outline.js';
|
|
11
|
-
import { ReactComponent as SvgProfile } from '../../shared/assets/profile.js';
|
|
12
|
-
import { ReactComponent as SvgWallet } from '../../shared/assets/wallet.js';
|
|
13
11
|
import { ReactComponent as SvgWalletOutlineV2 } from '../../shared/assets/wallet-outline-v2.js';
|
|
14
12
|
import { ReactComponent as SvgSettingsOutline } from '../../shared/assets/settings-outline.js';
|
|
15
|
-
import { ReactComponent as SvgSettings } from '../../shared/assets/settings.js';
|
|
16
13
|
import '@dynamic-labs/wallet-book';
|
|
17
14
|
import '../../utils/constants/colors.js';
|
|
18
15
|
import '../../utils/constants/values.js';
|
|
@@ -112,7 +109,6 @@ const DynamicUserProfileLayout = ({ variant, className, style, }) => {
|
|
|
112
109
|
options.push({
|
|
113
110
|
icon: jsx(SvgWalletOutlineV2, {}),
|
|
114
111
|
label: 'Wallets',
|
|
115
|
-
selectedIcon: jsx(SvgWallet, {}),
|
|
116
112
|
value: 'wallets',
|
|
117
113
|
});
|
|
118
114
|
}
|
|
@@ -120,14 +116,12 @@ const DynamicUserProfileLayout = ({ variant, className, style, }) => {
|
|
|
120
116
|
options.push({
|
|
121
117
|
icon: jsx(SvgProfileOutline, {}),
|
|
122
118
|
label: 'Profile',
|
|
123
|
-
selectedIcon: jsx(SvgProfile, {}),
|
|
124
119
|
value: 'profile',
|
|
125
120
|
});
|
|
126
121
|
}
|
|
127
122
|
options.push({
|
|
128
123
|
icon: jsx(SvgSettingsOutline, {}),
|
|
129
124
|
label: 'Settings',
|
|
130
|
-
selectedIcon: jsx(SvgSettings, {}),
|
|
131
125
|
value: 'settings',
|
|
132
126
|
});
|
|
133
127
|
return options;
|
|
@@ -911,7 +911,7 @@ const translation = {
|
|
|
911
911
|
warning: 'You won’t be able to see these again',
|
|
912
912
|
copy_all: 'Copy all',
|
|
913
913
|
download: 'Download',
|
|
914
|
-
checkbox: 'I have safely stored a copy of my
|
|
914
|
+
checkbox: 'I have safely stored a copy of my backup codes',
|
|
915
915
|
complete: 'Complete',
|
|
916
916
|
},
|
|
917
917
|
otp_verification_view: {
|
|
@@ -963,7 +963,7 @@ const translation = {
|
|
|
963
963
|
warning: 'You won’t be able to see these again',
|
|
964
964
|
copy_all: 'Copy all',
|
|
965
965
|
download: 'Download',
|
|
966
|
-
checkbox: '
|
|
966
|
+
checkbox: "I've safely stored a copy of my backup codes",
|
|
967
967
|
complete: 'Complete',
|
|
968
968
|
},
|
|
969
969
|
otp_verification_view: {
|
|
@@ -907,7 +907,7 @@ export declare const translation: {
|
|
|
907
907
|
warning: 'You won’t be able to see these again',
|
|
908
908
|
copy_all: 'Copy all',
|
|
909
909
|
download: 'Download',
|
|
910
|
-
checkbox: 'I have safely stored a copy of my
|
|
910
|
+
checkbox: 'I have safely stored a copy of my backup codes',
|
|
911
911
|
complete: 'Complete',
|
|
912
912
|
},
|
|
913
913
|
otp_verification_view: {
|
|
@@ -907,7 +907,7 @@ const translation = {
|
|
|
907
907
|
warning: 'You won’t be able to see these again',
|
|
908
908
|
copy_all: 'Copy all',
|
|
909
909
|
download: 'Download',
|
|
910
|
-
checkbox: 'I have safely stored a copy of my
|
|
910
|
+
checkbox: 'I have safely stored a copy of my backup codes',
|
|
911
911
|
complete: 'Complete',
|
|
912
912
|
},
|
|
913
913
|
otp_verification_view: {
|
|
@@ -959,7 +959,7 @@ const translation = {
|
|
|
959
959
|
warning: 'You won’t be able to see these again',
|
|
960
960
|
copy_all: 'Copy all',
|
|
961
961
|
download: 'Download',
|
|
962
|
-
checkbox: '
|
|
962
|
+
checkbox: "I've safely stored a copy of my backup codes",
|
|
963
963
|
complete: 'Complete',
|
|
964
964
|
},
|
|
965
965
|
otp_verification_view: {
|
|
@@ -35,9 +35,9 @@ var SvgProfileOutline = function SvgProfileOutline(_ref) {
|
|
|
35
35
|
titleId = _ref.titleId,
|
|
36
36
|
props = _objectWithoutProperties(_ref, _excluded);
|
|
37
37
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
38
|
-
width:
|
|
39
|
-
height:
|
|
40
|
-
viewBox: "0 0
|
|
38
|
+
width: 25,
|
|
39
|
+
height: 24,
|
|
40
|
+
viewBox: "0 0 25 24",
|
|
41
41
|
fill: "none",
|
|
42
42
|
xmlns: "http://www.w3.org/2000/svg",
|
|
43
43
|
"aria-labelledby": titleId
|
|
@@ -46,8 +46,8 @@ var SvgProfileOutline = function SvgProfileOutline(_ref) {
|
|
|
46
46
|
}, title) : null, _path || (_path = /*#__PURE__*/React__namespace.createElement("path", {
|
|
47
47
|
fillRule: "evenodd",
|
|
48
48
|
clipRule: "evenodd",
|
|
49
|
-
d: "
|
|
50
|
-
fill: "
|
|
49
|
+
d: "M12.5 4a8 8 0 0 0-6.598 12.526A14.943 14.943 0 0 1 12.5 15c2.366 0 4.606.548 6.598 1.526A8 8 0 0 0 12.5 4Zm7.654 14.436A9.96 9.96 0 0 0 22.5 12c0-5.523-4.477-10-10-10s-10 4.477-10 10a9.96 9.96 0 0 0 2.37 6.464A9.978 9.978 0 0 0 12.5 22a9.978 9.978 0 0 0 7.654-3.564ZM17.7 18.08A12.954 12.954 0 0 0 12.5 17c-1.85 0-3.607.386-5.199 1.08A7.968 7.968 0 0 0 12.5 20c1.985 0 3.8-.723 5.199-1.92ZM12.5 8a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm-4 2a4 4 0 1 1 8 0 4 4 0 0 1-8 0Z",
|
|
50
|
+
fill: "currentColor"
|
|
51
51
|
})));
|
|
52
52
|
};
|
|
53
53
|
|
|
@@ -11,9 +11,9 @@ var SvgProfileOutline = function SvgProfileOutline(_ref) {
|
|
|
11
11
|
titleId = _ref.titleId,
|
|
12
12
|
props = _objectWithoutProperties(_ref, _excluded);
|
|
13
13
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
14
|
-
width:
|
|
15
|
-
height:
|
|
16
|
-
viewBox: "0 0
|
|
14
|
+
width: 25,
|
|
15
|
+
height: 24,
|
|
16
|
+
viewBox: "0 0 25 24",
|
|
17
17
|
fill: "none",
|
|
18
18
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19
19
|
"aria-labelledby": titleId
|
|
@@ -22,8 +22,8 @@ var SvgProfileOutline = function SvgProfileOutline(_ref) {
|
|
|
22
22
|
}, title) : null, _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
23
23
|
fillRule: "evenodd",
|
|
24
24
|
clipRule: "evenodd",
|
|
25
|
-
d: "
|
|
26
|
-
fill: "
|
|
25
|
+
d: "M12.5 4a8 8 0 0 0-6.598 12.526A14.943 14.943 0 0 1 12.5 15c2.366 0 4.606.548 6.598 1.526A8 8 0 0 0 12.5 4Zm7.654 14.436A9.96 9.96 0 0 0 22.5 12c0-5.523-4.477-10-10-10s-10 4.477-10 10a9.96 9.96 0 0 0 2.37 6.464A9.978 9.978 0 0 0 12.5 22a9.978 9.978 0 0 0 7.654-3.564ZM17.7 18.08A12.954 12.954 0 0 0 12.5 17c-1.85 0-3.607.386-5.199 1.08A7.968 7.968 0 0 0 12.5 20c1.985 0 3.8-.723 5.199-1.92ZM12.5 8a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm-4 2a4 4 0 1 1 8 0 4 4 0 0 1-8 0Z",
|
|
26
|
+
fill: "currentColor"
|
|
27
27
|
})));
|
|
28
28
|
};
|
|
29
29
|
|
|
@@ -35,9 +35,9 @@ var SvgSettingsOutline = function SvgSettingsOutline(_ref) {
|
|
|
35
35
|
titleId = _ref.titleId,
|
|
36
36
|
props = _objectWithoutProperties(_ref, _excluded);
|
|
37
37
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
38
|
-
width:
|
|
39
|
-
height:
|
|
40
|
-
viewBox: "0 0
|
|
38
|
+
width: 25,
|
|
39
|
+
height: 24,
|
|
40
|
+
viewBox: "0 0 25 24",
|
|
41
41
|
fill: "none",
|
|
42
42
|
xmlns: "http://www.w3.org/2000/svg",
|
|
43
43
|
"aria-labelledby": titleId
|
|
@@ -46,8 +46,8 @@ var SvgSettingsOutline = function SvgSettingsOutline(_ref) {
|
|
|
46
46
|
}, title) : null, _path || (_path = /*#__PURE__*/React__namespace.createElement("path", {
|
|
47
47
|
fillRule: "evenodd",
|
|
48
48
|
clipRule: "evenodd",
|
|
49
|
-
d: "
|
|
50
|
-
fill: "
|
|
49
|
+
d: "M9.853 4.081c.674-2.775 4.62-2.775 5.294 0a.724.724 0 0 0 1.08.448c2.44-1.486 5.23 1.305 3.744 3.744a.724.724 0 0 0 .448 1.08c2.775.674 2.775 4.62 0 5.294a.724.724 0 0 0-.448 1.08c1.486 2.44-1.305 5.23-3.744 3.744a.724.724 0 0 0-1.08.448c-.674 2.775-4.62 2.775-5.294 0a.724.724 0 0 0-1.08-.448c-2.44 1.486-5.23-1.305-3.744-3.744a.724.724 0 0 0-.448-1.08c-2.775-.674-2.775-4.62 0-5.294a.724.724 0 0 0 .448-1.08c-1.486-2.44 1.305-5.23 3.744-3.744a.724.724 0 0 0 1.08-.448Zm3.35.472c-.178-.737-1.227-.737-1.407 0a2.724 2.724 0 0 1-4.064 1.684c-.648-.395-1.39.347-.995.995.96 1.575.109 3.63-1.684 4.064-.737.18-.737 1.229 0 1.408a2.724 2.724 0 0 1 1.684 4.064c-.395.648.347 1.39.995.995a2.724 2.724 0 0 1 4.064 1.684c.18.737 1.229.737 1.408 0a2.724 2.724 0 0 1 4.064-1.684c.648.395 1.39-.347.995-.995a2.724 2.724 0 0 1 1.684-4.064c.737-.18.737-1.229 0-1.408a2.724 2.724 0 0 1-1.684-4.064c.395-.648-.347-1.39-.995-.995-1.575.96-3.63.109-4.064-1.684ZM12.5 10a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm-4 2a4 4 0 1 1 8 0 4 4 0 0 1-8 0Z",
|
|
50
|
+
fill: "currentColor"
|
|
51
51
|
})));
|
|
52
52
|
};
|
|
53
53
|
|
|
@@ -11,9 +11,9 @@ var SvgSettingsOutline = function SvgSettingsOutline(_ref) {
|
|
|
11
11
|
titleId = _ref.titleId,
|
|
12
12
|
props = _objectWithoutProperties(_ref, _excluded);
|
|
13
13
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
14
|
-
width:
|
|
15
|
-
height:
|
|
16
|
-
viewBox: "0 0
|
|
14
|
+
width: 25,
|
|
15
|
+
height: 24,
|
|
16
|
+
viewBox: "0 0 25 24",
|
|
17
17
|
fill: "none",
|
|
18
18
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19
19
|
"aria-labelledby": titleId
|
|
@@ -22,8 +22,8 @@ var SvgSettingsOutline = function SvgSettingsOutline(_ref) {
|
|
|
22
22
|
}, title) : null, _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
23
23
|
fillRule: "evenodd",
|
|
24
24
|
clipRule: "evenodd",
|
|
25
|
-
d: "
|
|
26
|
-
fill: "
|
|
25
|
+
d: "M9.853 4.081c.674-2.775 4.62-2.775 5.294 0a.724.724 0 0 0 1.08.448c2.44-1.486 5.23 1.305 3.744 3.744a.724.724 0 0 0 .448 1.08c2.775.674 2.775 4.62 0 5.294a.724.724 0 0 0-.448 1.08c1.486 2.44-1.305 5.23-3.744 3.744a.724.724 0 0 0-1.08.448c-.674 2.775-4.62 2.775-5.294 0a.724.724 0 0 0-1.08-.448c-2.44 1.486-5.23-1.305-3.744-3.744a.724.724 0 0 0-.448-1.08c-2.775-.674-2.775-4.62 0-5.294a.724.724 0 0 0 .448-1.08c-1.486-2.44 1.305-5.23 3.744-3.744a.724.724 0 0 0 1.08-.448Zm3.35.472c-.178-.737-1.227-.737-1.407 0a2.724 2.724 0 0 1-4.064 1.684c-.648-.395-1.39.347-.995.995.96 1.575.109 3.63-1.684 4.064-.737.18-.737 1.229 0 1.408a2.724 2.724 0 0 1 1.684 4.064c-.395.648.347 1.39.995.995a2.724 2.724 0 0 1 4.064 1.684c.18.737 1.229.737 1.408 0a2.724 2.724 0 0 1 4.064-1.684c.648.395 1.39-.347.995-.995a2.724 2.724 0 0 1 1.684-4.064c.737-.18.737-1.229 0-1.408a2.724 2.724 0 0 1-1.684-4.064c.395-.648-.347-1.39-.995-.995-1.575.96-3.63.109-4.064-1.684ZM12.5 10a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm-4 2a4 4 0 1 1 8 0 4 4 0 0 1-8 0Z",
|
|
26
|
+
fill: "currentColor"
|
|
27
27
|
})));
|
|
28
28
|
};
|
|
29
29
|
|
|
@@ -35,9 +35,9 @@ var SvgWalletOutlineV2 = function SvgWalletOutlineV2(_ref) {
|
|
|
35
35
|
titleId = _ref.titleId,
|
|
36
36
|
props = _objectWithoutProperties(_ref, _excluded);
|
|
37
37
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
38
|
-
width:
|
|
39
|
-
height:
|
|
40
|
-
viewBox: "0 0
|
|
38
|
+
width: 25,
|
|
39
|
+
height: 24,
|
|
40
|
+
viewBox: "0 0 25 24",
|
|
41
41
|
fill: "none",
|
|
42
42
|
xmlns: "http://www.w3.org/2000/svg",
|
|
43
43
|
"aria-labelledby": titleId
|
|
@@ -46,8 +46,8 @@ var SvgWalletOutlineV2 = function SvgWalletOutlineV2(_ref) {
|
|
|
46
46
|
}, title) : null, _path || (_path = /*#__PURE__*/React__namespace.createElement("path", {
|
|
47
47
|
fillRule: "evenodd",
|
|
48
48
|
clipRule: "evenodd",
|
|
49
|
-
d: "
|
|
50
|
-
fill: "
|
|
49
|
+
d: "M15.5 2a2 2 0 0 1 2 2h-12a3.99 3.99 0 0 0-2.935 1.283A4.005 4.005 0 0 1 6.5 2h9ZM6.5 6A4 4 0 0 0 2.5 10v8a4 4 0 0 0 4 4h12a4 4 0 0 0 4-4v-8a4 4 0 0 0-4-4H6.5ZM20.5 10a2 2 0 0 0-2-2h-12a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8Z",
|
|
50
|
+
fill: "currentColor"
|
|
51
51
|
})));
|
|
52
52
|
};
|
|
53
53
|
|
|
@@ -11,9 +11,9 @@ var SvgWalletOutlineV2 = function SvgWalletOutlineV2(_ref) {
|
|
|
11
11
|
titleId = _ref.titleId,
|
|
12
12
|
props = _objectWithoutProperties(_ref, _excluded);
|
|
13
13
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
14
|
-
width:
|
|
15
|
-
height:
|
|
16
|
-
viewBox: "0 0
|
|
14
|
+
width: 25,
|
|
15
|
+
height: 24,
|
|
16
|
+
viewBox: "0 0 25 24",
|
|
17
17
|
fill: "none",
|
|
18
18
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19
19
|
"aria-labelledby": titleId
|
|
@@ -22,8 +22,8 @@ var SvgWalletOutlineV2 = function SvgWalletOutlineV2(_ref) {
|
|
|
22
22
|
}, title) : null, _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
23
23
|
fillRule: "evenodd",
|
|
24
24
|
clipRule: "evenodd",
|
|
25
|
-
d: "
|
|
26
|
-
fill: "
|
|
25
|
+
d: "M15.5 2a2 2 0 0 1 2 2h-12a3.99 3.99 0 0 0-2.935 1.283A4.005 4.005 0 0 1 6.5 2h9ZM6.5 6A4 4 0 0 0 2.5 10v8a4 4 0 0 0 4 4h12a4 4 0 0 0 4-4v-8a4 4 0 0 0-4-4H6.5ZM20.5 10a2 2 0 0 0-2-2h-12a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8Z",
|
|
26
|
+
fill: "currentColor"
|
|
27
27
|
})));
|
|
28
28
|
};
|
|
29
29
|
|