|
|
|
@ -241,7 +241,7 @@ class CompilerContainer { |
|
|
|
|
<div class="row w-100 no-gutters mb-2"> |
|
|
|
|
<div class="col-sm-4"> |
|
|
|
|
<div class="d-flex flex-row justify-content-end"> |
|
|
|
|
<label class="${css.compilerLabel} input-group-text pr-0 border-0 w-100" for="versionSelector"> |
|
|
|
|
<label class="${css.compilerLabel} form-check-label input-group-text pr-0 border-0 w-100" for="versionSelector"> |
|
|
|
|
<button class="far fa-plus-square border-0 p-0 mx-2 btn-sm" onclick="${(e) => this.promtCompiler(e)}" title="Add a custom compiler with URL"></button> |
|
|
|
|
Compiler |
|
|
|
|
</label> |
|
|
|
@ -257,7 +257,7 @@ class CompilerContainer { |
|
|
|
|
</div> |
|
|
|
|
<div class="row w-100 no-gutters mb-2"> |
|
|
|
|
<div class="col-sm-4"> |
|
|
|
|
<label class="${css.compilerLabel} input-group-text pl-0 border-0" for="compilierLanguageSelector">Language</label> |
|
|
|
|
<label class="${css.compilerLabel} form-check-label input-group-text pl-0 border-0" for="compilierLanguageSelector">Language</label> |
|
|
|
|
</div> |
|
|
|
|
<div class="col-sm-8"> |
|
|
|
|
${this._view.languageSelector} |
|
|
|
@ -265,7 +265,7 @@ class CompilerContainer { |
|
|
|
|
</div> |
|
|
|
|
<div class="row w-100 no-gutters"> |
|
|
|
|
<div class="col-sm-4"> |
|
|
|
|
<label class="${css.compilerLabel} input-group-text pl-0 border-0" for="evmVersionSelector">EVM Version</label> |
|
|
|
|
<label class="${css.compilerLabel} form-check-label input-group-text pl-0 border-0" for="evmVersionSelector">EVM Version</label> |
|
|
|
|
</div> |
|
|
|
|
<div class="col-sm-8"> |
|
|
|
|
${this._view.evmVersionSelector} |
|
|
|
@ -280,15 +280,15 @@ class CompilerContainer { |
|
|
|
|
<ul class="list-group list-group-flush"> |
|
|
|
|
<li class="list-group-item form-group ${css.compilerConfig}"> |
|
|
|
|
${this._view.autoCompile} |
|
|
|
|
<label for="autoCompile">Auto compile</label> |
|
|
|
|
<label class="form-check-label" for="autoCompile">Auto compile</label> |
|
|
|
|
</li> |
|
|
|
|
<li class="list-group-item form-group ${css.compilerConfig}"> |
|
|
|
|
${this._view.optimize} |
|
|
|
|
<label for="optimize">Enable optimization</label> |
|
|
|
|
<label class="form-check-label" for="optimize">Enable optimization</label> |
|
|
|
|
</li> |
|
|
|
|
<li class="list-group-item form-group ${css.compilerConfig}"> |
|
|
|
|
${this._view.hideWarningsBox} |
|
|
|
|
<label for="hideWarningsBox">Hide warnings</label> |
|
|
|
|
<label class="form-check-label" for="hideWarningsBox">Hide warnings</label> |
|
|
|
|
</li> |
|
|
|
|
</ul> |
|
|
|
|
</article> |
|
|
|
|