WIP: Form components extensions and improvements #94707

Draft
Márton Lente wants to merge 12 commits from component-forms into v2

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
Showing only changes of commit 610ea38ef2 - Show all commits

View File

@ -1699,6 +1699,23 @@
</div> </div>
</div> </div>
</div> </div>
<hr>
<div class="row">
<div class="col-md-6">
<div class="form-check">
<input class="form-check-input" id="example-radios-1" name="example-radios" type="radio" value="option-1" checked>
<label class="form-check-label" for="example-radios-1">
Default radio
</label>
</div>
<div class="form-check">
<input class="form-check-input" id="example-radios-2" name="example-radios" type="radio" value="option-2">
<label class="form-check-label" for="example-radios-2">
Second default radio
</label>
</div>
</div>
</div>
</fieldset> </fieldset>
</form> </form>
<!-- // Forms. --> <!-- // Forms. -->