Skip to content

Commit dabe150

Browse files
authored
feat(table): add borderless prop (#2300)
1 parent eb8b431 commit dabe150

File tree

2 files changed

+19
-9
lines changed

2 files changed

+19
-9
lines changed

src/components/table/README.md

+14-9
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,7 @@ fields: [
319319
| ---- | ---- | -----------
320320
| `striped` | Boolean | Add zebra-striping to the table rows within the `<tbody>`
321321
| `bordered` | Boolean | For borders on all sides of the table and cells.
322+
| `borderless` | Boolean | removes inner borders from table.
322323
| `outlined` | Boolean | For a thin border on all sides of the table. Has no effect if `bordered` is set.
323324
| `small` | Boolean | To make tables more compact by cutting cell padding in half.
324325
| `hover` | Boolean | To enable a hover highlighting state on table rows within a `<tbody>`
@@ -334,17 +335,20 @@ fields: [
334335
```html
335336
<template>
336337
<div>
337-
<b-form-checkbox inline v-model="striped">Striped</b-form-checkbox>
338-
<b-form-checkbox inline v-model="bordered">Bordered</b-form-checkbox>
339-
<b-form-checkbox inline v-model="outlined">Outlined</b-form-checkbox>
340-
<b-form-checkbox inline v-model="small">Small</b-form-checkbox>
341-
<b-form-checkbox inline v-model="hover">Hover</b-form-checkbox>
342-
<b-form-checkbox inline v-model="dark">Dark</b-form-checkbox>
343-
<b-form-checkbox inline v-model="fixed">Fixed</b-form-checkbox>
344-
<b-form-checkbox inline v-model="footClone">Foot Clone</b-form-checkbox>
345-
338+
<b-form-group label="Table Options">
339+
<b-form-checkbox inline v-model="striped">Striped</b-form-checkbox>
340+
<b-form-checkbox inline v-model="bordered">Bordered</b-form-checkbox>
341+
<b-form-checkbox inline v-model="borderless">Borderless</b-form-checkbox>
342+
<b-form-checkbox inline v-model="outlined">Outlined</b-form-checkbox>
343+
<b-form-checkbox inline v-model="small">Small</b-form-checkbox>
344+
<b-form-checkbox inline v-model="hover">Hover</b-form-checkbox>
345+
<b-form-checkbox inline v-model="dark">Dark</b-form-checkbox>
346+
<b-form-checkbox inline v-model="fixed">Fixed</b-form-checkbox>
347+
<b-form-checkbox inline v-model="footClone">Foot Clone</b-form-checkbox>
348+
</b-form-group>
346349
<b-table :striped="striped"
347350
:bordered="bordered"
351+
:borderless="borderless"
348352
:outlined="outlined"
349353
:small="small"
350354
:hover="hover"
@@ -369,6 +373,7 @@ export default {
369373
],
370374
striped: false,
371375
bordered: false,
376+
borderless: false,
372377
outlined: false,
373378
small: false,
374379
hover: false,

src/components/table/table.js

+5
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,10 @@ export default {
177177
type: Boolean,
178178
default: false
179179
},
180+
borderless: {
181+
type: Boolean,
182+
default: false
183+
},
180184
outlined: {
181185
type: Boolean,
182186
default: false
@@ -378,6 +382,7 @@ export default {
378382
'table-hover': this.hover,
379383
'table-dark': this.dark,
380384
'table-bordered': this.bordered,
385+
'table-borderless': this.borderless,
381386
'table-sm': this.small,
382387
'border': this.outlined,
383388
// The following are b-table custom styles

0 commit comments

Comments
 (0)