![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/ts.corals.io/frontend/node_modules/bootstrap-vue/src/components/table/ |
import { Vue } from '../../vue' import { NAME_TR } from '../../constants/components' import { PROP_TYPE_STRING } from '../../constants/props' import { makeProp, makePropsConfigurable } from '../../utils/props' import { attrsMixin } from '../../mixins/attrs' import { listenersMixin } from '../../mixins/listeners' import { normalizeSlotMixin } from '../../mixins/normalize-slot' // --- Constants --- const LIGHT = 'light' const DARK = 'dark' // --- Props --- export const props = makePropsConfigurable( { variant: makeProp(PROP_TYPE_STRING) }, NAME_TR ) // --- Main component --- // 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 BTr = /*#__PURE__*/ Vue.extend({ name: NAME_TR, mixins: [attrsMixin, listenersMixin, normalizeSlotMixin], provide() { return { bvTableTr: this } }, inject: { bvTableRowGroup: { default: /* istanbul ignore next */ () => ({}) } }, inheritAttrs: false, props, computed: { // Sniffed by `<b-td>` / `<b-th>` inTbody() { return this.bvTableRowGroup.isTbody }, // Sniffed by `<b-td>` / `<b-th>` inThead() { return this.bvTableRowGroup.isThead }, // Sniffed by `<b-td>` / `<b-th>` inTfoot() { return this.bvTableRowGroup.isTfoot }, // Sniffed by `<b-td>` / `<b-th>` isDark() { return this.bvTableRowGroup.isDark }, // Sniffed by `<b-td>` / `<b-th>` isStacked() { return this.bvTableRowGroup.isStacked }, // Sniffed by `<b-td>` / `<b-th>` isResponsive() { return this.bvTableRowGroup.isResponsive }, // Sniffed by `<b-td>` / `<b-th>` // Sticky headers are only supported in thead isStickyHeader() { return this.bvTableRowGroup.isStickyHeader }, // 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 hasStickyHeader() { return !this.isStacked && this.bvTableRowGroup.hasStickyHeader }, // Sniffed by `<b-td>` / `<b-th>` tableVariant() { return this.bvTableRowGroup.tableVariant }, // Sniffed by `<b-td>` / `<b-th>` headVariant() { return this.inThead ? this.bvTableRowGroup.headVariant : null }, // Sniffed by `<b-td>` / `<b-th>` footVariant() { return this.inTfoot ? this.bvTableRowGroup.footVariant : null }, isRowDark() { return this.headVariant === LIGHT || this.footVariant === LIGHT ? /* istanbul ignore next */ false : this.headVariant === DARK || this.footVariant === DARK ? /* istanbul ignore next */ true : this.isDark }, trClasses() { const { variant } = this return [variant ? `${this.isRowDark ? 'bg' : 'table'}-${variant}` : null] }, trAttrs() { return { role: 'row', ...this.bvAttrs } } }, render(h) { return h( 'tr', { class: this.trClasses, attrs: this.trAttrs, // Pass native listeners to child on: this.bvListeners }, this.normalizeSlot() ) } })