StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.1 KiB
79 lines
2.1 KiB
import Vue from '../../utils/vue';
|
|
import { getComponentConfig } from '../../utils/config';
|
|
import { HTMLElement } from '../../utils/safe-types';
|
|
import { BTooltip } from '../tooltip/tooltip';
|
|
import { BVPopover } from './helpers/bv-popover';
|
|
var NAME = 'BPopover';
|
|
export var BPopover =
|
|
/*#__PURE__*/
|
|
Vue.extend({
|
|
name: NAME,
|
|
extends: BTooltip,
|
|
inheritAttrs: false,
|
|
props: {
|
|
title: {
|
|
type: String // default: undefined
|
|
|
|
},
|
|
content: {
|
|
type: String // default: undefined
|
|
|
|
},
|
|
triggers: {
|
|
type: [String, Array],
|
|
default: 'click'
|
|
},
|
|
placement: {
|
|
type: String,
|
|
default: 'right'
|
|
},
|
|
variant: {
|
|
type: String,
|
|
default: function _default() {
|
|
return getComponentConfig(NAME, 'variant');
|
|
}
|
|
},
|
|
customClass: {
|
|
type: String,
|
|
default: function _default() {
|
|
return getComponentConfig(NAME, 'customClass');
|
|
}
|
|
},
|
|
delay: {
|
|
type: [Number, Object, String],
|
|
default: function _default() {
|
|
return getComponentConfig(NAME, 'delay');
|
|
}
|
|
},
|
|
boundary: {
|
|
// String: scrollParent, window, or viewport
|
|
// Element: element reference
|
|
// Object: Vue component
|
|
type: [String, HTMLElement, Object],
|
|
default: function _default() {
|
|
return getComponentConfig(NAME, 'boundary');
|
|
}
|
|
},
|
|
boundaryPadding: {
|
|
type: [Number, String],
|
|
default: function _default() {
|
|
return getComponentConfig(NAME, 'boundaryPadding');
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
getComponent: function getComponent() {
|
|
// Overridden by BPopover
|
|
return BVPopover;
|
|
},
|
|
updateContent: function updateContent() {
|
|
// Tooltip: Default slot is `title`
|
|
// Popover: Default slot is `content`, `title` slot is title
|
|
// We pass a scoped slot function references by default (Vue v2.6x)
|
|
// And pass the title prop as a fallback
|
|
this.setContent(this.$scopedSlots.default || this.content);
|
|
this.setTitle(this.$scopedSlots.title || this.title);
|
|
}
|
|
} // Render function provided by BTooltip
|
|
|
|
}); |