@@ -2381,7 +2381,7 @@ The `<b-table-simple>` component gives the user complete control over the render
23812381content, while providing basic Bootstrap v4 table styling. ` <b-table-simple> ` is a wrapper component
23822382around the ` <table> ` element. Inside the component, via the ` default ` slot, you can use any or all
23832383of the BootstrapVue [ table helper components] ( #table-helper-components ) : ` <b-thead> ` , ` <b-tfoot> ` ,
2384- ` <b-tbody> ` , ` <b-tr> ` , ` <b-th> ` , ` <b-td> ` , and the HTML5 elements ` <caption> ` and ` <colgroup> ` and
2384+ ` <b-tbody> ` , ` <b-tr> ` , ` <b-th> ` , ` <b-td> ` , and the HTML5 elements ` <caption> ` , ` <colgroup> ` and
23852385` <col> ` . Contrary to the component's name, one can create simple or complex table layouts with
23862386` <b-table-simple> ` .
23872387
@@ -2394,7 +2394,7 @@ sticky. See below for more information on using [sticky columns](#simple-tables-
23942394
23952395Since ` b-table-simple ` is just a wrapper component, of which you will need to render content inside,
23962396it does not provide any of the advanced features of ` <b-table> ` (i.e. row events, head events,
2397- sorting, pagination, filtering, foot-clone, etc).
2397+ sorting, pagination, filtering, foot-clone, items, fields, etc).
23982398
23992399``` html
24002400<div >
@@ -2650,24 +2650,24 @@ BootstrapVue provides additional helper child components when using `<b-table-si
26502650slots ` top-row ` , ` bottom-row ` , and ` thead-top ` (all of which accept table child elements). The
26512651helper components are as follows:
26522652
2653- - ` b-tbody `
2654- - ` b-thead `
2655- - ` b-tfoot `
2653+ - ` b-tbody ` ( ` <b-table-simple> ` only)
2654+ - ` b-thead ` ( ` <b-table-simple> ` only)
2655+ - ` b-tfoot ` ( ` <b-table-simple> ` only)
26562656- ` b-tr `
26572657- ` b-td `
26582658- ` b-th `
26592659
26602660These components are optimized to handle converting variants to the appropriate classes (such as
26612661handling table ` dark ` mode), and automatically applying certain accessibility attributes (i.e.
2662- ` role ` s and ` scope ` s) and can handle the stacked table and sticky-header requirements. Components
2662+ ` role ` s and ` scope ` s). It can generate the stacked table and sticky-header requirements. Components
26632663` <b-table> ` and ` <b-table-lite> ` use these helper components internally.
26642664
26652665In the [ Simple tables] ( #simple-tables ) example, we are using the helper components ` <b-thead> ` ,
26662666` <b-tbody> ` , ` <b-tr> ` , ` <b-th> ` , ` <b-tr> ` and ` <b-tfoot> ` . While you can use regular table child
26672667elements (i.e. ` <tbody> ` , ` <tr> ` , ` <td> ` , etc) within ` <b-table-simple> ` , and the named slots
26682668` top-row ` , ` bottom-row ` , and ` thead-top ` , it is recommended to use these BootstrapVue table ` <b-t*> `
2669- helper components. Note that there are no helper components for ` <caption> ` or ` <colgroup> ` + ` <col> ` ,
2670- so you may these two HTML5 elements directly in ` <b-table-simple> ` .
2669+ helper components. Note that there are no helper components for ` <caption> ` , ` <colgroup> ` or
2670+ ` <col> ` , so you may these three HTML5 elements directly in ` <b-table-simple> ` .
26712671
26722672- Table helper components ` <b-tr> ` , ` <b-td> ` and ` <b-th> ` all accept a ` variant ` prop, which will
26732673 apply one of the Bootstrap theme colors (custom theme colors are supported via
0 commit comments