+
+
{
+ e.stopPropagation();
+ this.filterText = (e.target as HTMLInputElement).value;
+ }}
+ style="margin-bottom: 8px; width: 100%;"
+ >
+
+ e.stopPropagation()}
+ >
+ ${this.filteredLNodeTypes.length === 0
+ ? html`${translate(
+ 'iededitor.addLnDialog.noResults'
+ )}`
+ : this.filteredLNodeTypes.map(
+ t => html`
+ {
+ e.stopPropagation();
+ this.lnType = t.id;
+ }}
+ value=${t.id}
+ dialogAction="none"
+ style="cursor: pointer;"
+ @mouseenter=${(e: MouseEvent) =>
+ this.onListItemEnter(e, t.id)}
+ @mousemove=${(e: MouseEvent) =>
+ this.onListItemMove(e)}
+ @mouseleave=${() => this.onListItemLeave()}
+ >
+ ${t.id}
+ ${t.desc || ''}
+
+ `
+ )}
+
+
+
+
{
+ e.stopPropagation();
+ this.prefix = (e.target as HTMLInputElement).value;
+ }}
+ pattern="[A-Za-z][0-9A-Za-z_]*"
+ style="width: 100%; margin-top: 12px;"
+ data-testid="prefix"
+ >
+
{
+ e.stopPropagation();
+ this.amount = Number((e.target as HTMLInputElement).value);
+ }}
+ @click=${(e: Event) => e.stopPropagation()}
+ @mousedown=${(e: Event) => e.stopPropagation()}
+ @mouseup=${(e: Event) => e.stopPropagation()}
+ style="width: 100%; margin-top: 12px;"
+ >
+
+