mirror of
https://github.com/bitwarden/browser
synced 2026-02-06 19:53:59 +00:00
* [EC-816] Separate cloud and selfhosted subscription components (#4383) * [EC-636] Add license sync to web vault (#4441) * [EC-1036] Show correct last license sync date (#4558) * [EC-1044] Fix: accidentally changed shared i18n string
16 lines
408 B
HTML
16 lines
408 B
HTML
<bit-form-control inline>
|
|
<input
|
|
type="radio"
|
|
bitRadio
|
|
[id]="inputId"
|
|
[name]="name"
|
|
[disabled]="groupDisabled || disabled"
|
|
[value]="value"
|
|
[checked]="selected"
|
|
(change)="onInputChange()"
|
|
(blur)="onBlur()"
|
|
/>
|
|
<ng-content select="bit-label" ngProjectAs="bit-label"></ng-content>
|
|
<ng-content select="bit-hint" ngProjectAs="bit-hint"></ng-content>
|
|
</bit-form-control>
|