Skip to content

Commit de55204

Browse files
authored
Merge pull request #78 from blocknative/develop
Release 0.2.10
2 parents f606c86 + ee6e906 commit de55204

File tree

7 files changed

+11
-6
lines changed

7 files changed

+11
-6
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bnc-onboard",
3-
"version": "0.2.9",
3+
"version": "0.2.10",
44
"description": "Onboard users to web3 by allowing them to select a wallet, get that wallet ready to transact and have access to synced wallet state.",
55
"keywords": [
66
"ethereum",
@@ -49,6 +49,7 @@
4949
"bowser": "^2.5.2",
5050
"fortmatic": "^0.8.2",
5151
"promise-cancelable": "^2.1.1",
52+
"regenerator-runtime": "^0.13.3",
5253
"squarelink": "^1.1.3"
5354
},
5455
"scripts": {

rollup.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,8 @@ export default [
9898
"@walletconnect/web3-provider",
9999
"fortmatic",
100100
"squarelink",
101-
"authereum"
101+
"authereum",
102+
"regenerator-runtime/runtime"
102103
]
103104
}
104105
]

src/components/ModalHeader.svelte

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
align-items: center;
1212
font-size: inherit;
1313
font-family: inherit;
14+
margin-bottom: 1em;
1415
}
1516
1617
/* .bn-onboard-modal-content-header-icon */

src/modules/ready/network.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ function network(correctNetwork: number): WalletReadyModule {
1818
Number(network)
1919
)}</b> to <b>${networkName(
2020
Number(correctNetwork)
21-
)} network</b> for this Dapp. <br><br> <i>*Some wallets may not support changing networks. If you can not change networks in your wallet you may consider switching to a different wallet.</i>`,
21+
)} network</b> for this Dapp. <br><br> <i style="font-size: inherit; font-family: inherit;">*Some wallets may not support changing networks. If you can not change networks in your wallet you may consider switching to a different wallet.</i>`,
2222
eventCode: "networkFail",
2323
button: {
2424
onclick: () => {

src/modules/select/content.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const extensionInstallMessage = (helpers: {
2020
and that you have disabled any other browser extension wallets.
2121
<span
2222
class="bn-onboard-clickable"
23-
style="color: #4a90e2;"
23+
style="color: #4a90e2; font-size: 0.889rem; font-family: Helvetica Neue;"
2424
onclick="window.location.reload();">
2525
Then refresh the page.
2626
</span>
@@ -33,7 +33,7 @@ export const extensionInstallMessage = (helpers: {
3333
the extension and then
3434
<span
3535
class="bn-clickable"
36-
style="color: #4a90e2;"
36+
style="color: #4a90e2; font-size: 0.889rem; font-family: Helvetica Neue;"
3737
onclick={window.location.reload();}>
3838
refresh the page.
3939
</span>

src/onboard.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import "regenerator-runtime/runtime"
2+
13
import { get } from "svelte/store"
24

35
import modules from "./modules"

yarn.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4572,7 +4572,7 @@ regenerator-runtime@^0.12.0:
45724572
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.12.1.tgz#fa1a71544764c036f8c49b13a08b2594c9f8a0de"
45734573
integrity sha512-odxIc1/vDlo4iZcfXqRYFj0vpXFNoGdKMAUieAlFYO6m/nl5e9KR/beGf41z4a1FI+aQgtjhuaSlDxQ0hmkrHg==
45744574

4575-
regenerator-runtime@^0.13.2:
4575+
regenerator-runtime@^0.13.2, regenerator-runtime@^0.13.3:
45764576
version "0.13.3"
45774577
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz#7cf6a77d8f5c6f60eb73c5fc1955b2ceb01e6bf5"
45784578
integrity sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw==

0 commit comments

Comments
 (0)