-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* improve mobile view Signed-off-by: Mirko Mollik <[email protected]> * add dependencies linking to entires Signed-off-by: Mirko Mollik <[email protected]> * add elements to list Signed-off-by: Mirko Mollik <[email protected]> * add readme entry for dependencies Signed-off-by: Mirko Mollik <[email protected]> --------- Signed-off-by: Mirko Mollik <[email protected]>
- Loading branch information
Showing
27 changed files
with
342 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"$schema": "../viewer/src/assets/dependency.schema.json", | ||
"name": "Bifold", | ||
"url": "https://github.com/openwallet-foundation/bifold-wallet", | ||
"description": "Aries Mobile Agent React Native - Part of the Aries Bifold effort to provide SSI capabilities in a production ready app.", | ||
"community": "https://discord.gg/openwalletfoundation" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"$schema": "../viewer/src/assets/dependency.schema.json", | ||
"name": "Credo", | ||
"url": "https://github.com/openwallet-foundation/credo-ts", | ||
"description": "Typescript framework for building decentralized identity and verifiable credential solutions", | ||
"community": "https://discord.gg/openwalletfoundation" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"$schema": "../viewer/src/assets/dependency.schema.json", | ||
"name": "SD-JWT-JS", | ||
"url": "https://github.com/openwallet-foundation-labs/sd-jwt-js", | ||
"description": "A TypeScript implementation of the Selective Disclosure JWT (SD-JWT) spec.", | ||
"community": "https://discord.gg/openwalletfoundation" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,29 @@ | ||
<mat-toolbar color="primary" fxLayout="row" fxLayoutAlign="start center"> | ||
<span>Digital Wallet and Agent overview</span> | ||
<div class="spacer"></div> | ||
<button mat-button (click)="addWallet()">Add Wallet</button> | ||
<button mat-button (click)="showInfo()">Info</button> | ||
<div class="github"> | ||
<div fxLayout="row" fxLayoutAlign="start center" fxHide.xs="true"> | ||
<button mat-button (click)="addWallet()">Add Wallet</button> | ||
<button mat-button (click)="showInfo()">Info</button> | ||
<div class="github"> | ||
<a | ||
mat-button | ||
href="https://github.com/openwallet-foundation/digital-wallet-and-agent-overviews-sig" | ||
><img src="assets/github.svg" alt="Github" /> <span>Github</span></a | ||
> | ||
</div> | ||
</div> | ||
<button mat-icon-button [matMenuTriggerFor]="menu" fxHide.gt-xs="true"> | ||
<mat-icon>more_vert</mat-icon> | ||
</button> | ||
<mat-menu #menu="matMenu"> | ||
<button mat-menu-item (click)="addWallet()">Add Wallet</button> | ||
<button mat-menu-item (click)="showInfo()">Info</button> | ||
<a | ||
mat-button | ||
mat-menu-item | ||
href="https://github.com/openwallet-foundation/digital-wallet-and-agent-overviews-sig" | ||
><img src="assets/github.svg" alt="Github" /> <span>Github</span></a | ||
> | ||
</div> | ||
<span>Github</span> | ||
</a> | ||
</mat-menu> | ||
</mat-toolbar> | ||
<router-outlet></router-outlet> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.