Skip to content

Commit

Permalink
package version update
Browse files Browse the repository at this point in the history
  • Loading branch information
terance-edmonds committed Feb 29, 2024
1 parent c8720b4 commit 484db0c
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "did-extension",
"version": "2.0.0",
"version": "2.0.1",
"scripts": {
"ng": "ng",
"start": "ng serve",
Expand Down
30 changes: 24 additions & 6 deletions src/app/models/resolve-did/resolve-did.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,34 @@
<label class="select-wrap">
<span>Select Chain Code:</span>

<select id="resolve-did-chainCodeType" (change)="onSelectChange($event)" name="path" #chainCodeType>
<select
id="resolve-did-chainCodeType"
(change)="onSelectChange($event)"
name="path"
#chainCodeType>
<option value="m/256/256/2">Holder</option>
<option value="m/256/256/1">Issuer</option>
<option value="custom" selected>Custom</option>
</select>
</label>

<input id="resolve-did-chainCode" (input)="onPathChange($event)" class="input" type="text" name="chainCode"
placeholder="DID Chain Code (m/256)" [value]="chainCode" />
<input
id="resolve-did-chainCode"
(input)="onPathChange($event)"
class="input"
type="text"
name="chainCode"
placeholder="DID Chain Code (m/256)"
[value]="chainCode" />

<textarea readonly id="resolve-did-didAddress" class="input textarea no-resize" type="text" name="didAddress"
placeholder="DID Address" [value]="didAddress" cols="30" rows="5"></textarea>
</div>
<textarea
readonly
id="resolve-did-didAddress"
class="input textarea no-resize"
type="text"
name="didAddress"
placeholder="DID Address"
[value]="didAddress"
cols="30"
rows="5"></textarea>
</div>

0 comments on commit 484db0c

Please sign in to comment.