mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 17:23:37 +00:00
* trace generation requests * eliminate spurious save caused by validator changes * fix emissions caused by setting bounds attrbutes --------- Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
33 lines
1.3 KiB
HTML
33 lines
1.3 KiB
HTML
<bit-section [disableMargin]="disableMargin">
|
|
<bit-section-header *ngIf="showHeader">
|
|
<h6 bitTypography="h6">{{ "options" | i18n }}</h6>
|
|
</bit-section-header>
|
|
<form class="box" [formGroup]="settings" class="tw-container">
|
|
<div class="tw-mb-4">
|
|
<bit-card>
|
|
<bit-form-field disableMargin>
|
|
<bit-label>{{ "numWords" | i18n }}</bit-label>
|
|
<input bitInput formControlName="numWords" id="num-words" type="number" />
|
|
</bit-form-field>
|
|
</bit-card>
|
|
</div>
|
|
<div>
|
|
<bit-card>
|
|
<bit-form-field>
|
|
<bit-label>{{ "wordSeparator" | i18n }}</bit-label>
|
|
<input bitInput formControlName="wordSeparator" id="word-separator" type="text" />
|
|
</bit-form-field>
|
|
<bit-form-control>
|
|
<input bitCheckbox formControlName="capitalize" id="capitalize" type="checkbox" />
|
|
<bit-label>{{ "capitalize" | i18n }}</bit-label>
|
|
</bit-form-control>
|
|
<bit-form-control [disableMargin]="!policyInEffect">
|
|
<input bitCheckbox formControlName="includeNumber" id="include-number" type="checkbox" />
|
|
<bit-label>{{ "includeNumber" | i18n }}</bit-label>
|
|
</bit-form-control>
|
|
<p *ngIf="policyInEffect" bitTypography="helper">{{ "generatorPolicyInEffect" | i18n }}</p>
|
|
</bit-card>
|
|
</div>
|
|
</form>
|
|
</bit-section>
|