UNPKG

custom-bootstrap-vue

Version:

Custom version of bootstrap-vue created for providing specific theme to a particular project

89 lines (86 loc) 2.33 kB
import Vue from '../../utils/vue' import attrsMixin from '../../mixins/attrs' import listenersMixin from '../../mixins/listeners' import normalizeSlotMixin from '../../mixins/normalize-slot' export const props = { footVariant: { type: String, // Supported values: 'lite', 'dark', or null default: null } } // TODO: // In Bootstrap v5, we won't need "sniffing" as table element variants properly inherit // to the child elements, so this can be converted to a functional component // @vue/component export const BTfoot = /*#__PURE__*/ Vue.extend({ name: 'BTfoot', // Mixin order is important! mixins: [attrsMixin, listenersMixin, normalizeSlotMixin], inheritAttrs: false, provide() { return { bvTableRowGroup: this } }, inject: { bvTable: { // Sniffed by <b-tr> / <b-td> / <b-th> /* istanbul ignore next */ default() /* istanbul ignore next */ { return {} } } }, props, computed: { isTfoot() { // Sniffed by <b-tr> / <b-td> / <b-th> return true }, isDark() { // Sniffed by <b-tr> / <b-td> / <b-th> return this.bvTable.dark }, isStacked() { // Sniffed by <b-tr> / <b-td> / <b-th> return this.bvTable.isStacked }, isResponsive() { // Sniffed by <b-tr> / <b-td> / <b-th> return this.bvTable.isResponsive }, isStickyHeader() { // Sniffed by <b-tr> / <b-td> / <b-th> // Sticky headers are only supported in thead return false }, hasStickyHeader() { // Sniffed by <b-tr> / <b-td> / <b-th> // Needed to handle header background classes, due to lack of // background color inheritance with Bootstrap v4 table CSS return !this.isStacked && this.bvTable.stickyHeader }, tableVariant() { // Sniffed by <b-tr> / <b-td> / <b-th> return this.bvTable.tableVariant }, tfootClasses() { return [this.footVariant ? `thead-${this.footVariant}` : null] }, tfootAttrs() { return { role: 'rowgroup', ...this.bvAttrs } } }, render(h) { return h( 'tfoot', { class: this.tfootClasses, attrs: this.tfootAttrs, // Pass down any native listeners on: this.bvListeners }, this.normalizeSlot('default') ) } })