Skip to content

Commit

Permalink
Merge pull request #296 from airgap-it/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
AndreasGassmann authored Nov 10, 2021
2 parents 01ea422 + 493e0d1 commit 3462b66
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 8 deletions.
11 changes: 8 additions & 3 deletions assets/toast/toast.css
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@
flex-wrap: wrap;
}
.beacon-toast__wallet__link {
flex: 0 0 100%;
margin-left: 0 !important;
display: flex;
margin-left: 12px !important;
}
}

Expand Down Expand Up @@ -148,7 +148,7 @@ hr {
display: contents;
}
.beacon-toast__wallet__link {
margin-left: 12px;
margin-left: 8px;
}
.beacon-toast__wallet__link svg {
margin-left: 4px;
Expand Down Expand Up @@ -221,6 +221,11 @@ a:hover {
padding-right: 24px;
}

#beacon-text-content {
display: flex;
align-items: center;
}

.progress-line,
.progress-line:before {
height: 3px;
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@airgap/beacon-sdk",
"version": "2.3.6",
"version": "2.3.7",
"description": "The beacon-sdk allows you to easily connect DApps with Wallets through P2P communication or a chrome extension.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
Expand Down
3 changes: 2 additions & 1 deletion scripts/generate-wallet-list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ export const webList: WebApp[] = [
[NetworkType.EDONET]: 'https://edonet.kukai.app',
[NetworkType.FLORENCENET]: 'https://florencenet.kukai.app',
[NetworkType.GRANADANET]: 'https://granadanet.kukai.app',
[NetworkType.HANGZHOUNET]: 'https://hangzhounet.kukai.app'
[NetworkType.HANGZHOUNET]: 'https://hangzhounet.kukai.app',
[NetworkType.IDIAZABALNET]: 'https://idiazabalnet.kukai.app'
}
}
]
Expand Down
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export const SDK_VERSION: string = '2.3.6'
export const SDK_VERSION: string = '2.3.7'
export const BEACON_VERSION: string = '2'
1 change: 1 addition & 0 deletions src/types/beacon/NetworkType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ export enum NetworkType {
FLORENCENET = 'florencenet',
GRANADANET = 'granadanet',
HANGZHOUNET = 'hangzhounet',
IDIAZABALNET = 'idiazabalnet',
CUSTOM = 'custom'
}
1 change: 1 addition & 0 deletions src/ui/alert/Pairing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ export interface WebApp extends AppBase {
[NetworkType.FLORENCENET]?: string
[NetworkType.GRANADANET]?: string
[NetworkType.HANGZHOUNET]?: string
[NetworkType.IDIAZABALNET]?: string
[NetworkType.CUSTOM]?: string
}
}
Expand Down
1 change: 1 addition & 0 deletions src/utils/tezblock-blockexplorer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export class TezblockBlockExplorer extends BlockExplorer {
[NetworkType.FLORENCENET]: 'https://florencenet.tezblock.io',
[NetworkType.GRANADANET]: 'https://granadanet.tezblock.io',
[NetworkType.HANGZHOUNET]: 'https://hangzhounet.tezblock.io',
[NetworkType.IDIAZABALNET]: 'https://idiazabalnet.tezblock.io',
[NetworkType.CUSTOM]: 'https://granadanet.tezblock.io'
}
) {
Expand Down

0 comments on commit 3462b66

Please sign in to comment.