Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BFormTags]: limitTagsText props is not used in HTML #1817

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
62 changes: 50 additions & 12 deletions apps/docs/src/docs/components/form-group.md
Expand Up @@ -99,18 +99,56 @@ columns does not exceed `12`.

See the [Layout and Grid System](/docs/components/layout#how-it-works) docs for further information.

| Prop | Description |
| ----------------- | --------------------------------- |
| `label-cols` | Applies to breakpoint `xs` up |
| `label-cols-sm` | Applies to breakpoint `sm` and up |
| `label-cols-md` | Applies to breakpoint `md` and up |
| `label-cols-lg` | Applies to breakpoint `lg` and up |
| `label-cols-xl` | Applies to breakpoint `xl` and up |
| `content-cols` | Applies to breakpoint `xs` up |
| `content-cols-sm` | Applies to breakpoint `sm` and up |
| `content-cols-md` | Applies to breakpoint `md` and up |
| `content-cols-lg` | Applies to breakpoint `lg` and up |
| `content-cols-xl` | Applies to breakpoint `xl` and up |
<table class="b-table table table-bordered table-striped bv-docs-table">
<thead>
<tr>
<th>Prop</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>label-cols</code></td>
<td>Applies to breakpoint <code>xs</code> up</td>
</tr>
<tr>
<td><code>label-cols-sm</code></td>
<td>Applies to breakpoint <code>sm</code> and up</td>
</tr>
<tr>
<td><code>label-cols-md</code></td>
<td>Applies to breakpoint <code>md</code> and up</td>
</tr>
<tr>
<td><code>label-cols-lg</code></td>
<td>Applies to breakpoint <code>xl</code> and up</td>
</tr>
<tr>
<td><code>label-cols-xl</code></td>
<td>Applies to breakpoint <code>xl</code> and up</td>
</tr>
<tr>
<td><code>content-cols</code></td>
<td>Applies to breakpoint <code>xs</code> up</td>
</tr>
<tr>
<td><code>content-cols-sm</code></td>
<td>Applies to breakpoint <code>sm</code> and up</td>
</tr>
<tr>
<td><code>content-cols-md</code></td>
<td>Applies to breakpoint <code>md</code> and up</td>
</tr>
<tr>
<td><code>content-cols-lg</code></td>
<td>Applies to breakpoint <code>xl</code> and up</td>
</tr>
<tr>
<td><code>content-cols-xl</code></td>
<td>Applies to breakpoint <code>xl</code> and up</td>
</tr>
</tbody>
</table>

<HighlightCard>
<BFormGroup
Expand Down