%PDF- %PDF-
Direktori : /home/ugotscom/3vfm3/node_modules/bootstrap-vue/src/components/form/ |
Current File : /home/ugotscom/3vfm3/node_modules/bootstrap-vue/src/components/form/form-valid-feedback.js |
import Vue, { mergeData } from '../../vue' import { NAME_FORM_VALID_FEEDBACK } from '../../constants/components' import { makePropsConfigurable } from '../../utils/config' export const props = makePropsConfigurable( { id: { type: String // default: null }, tag: { type: String, default: 'div' }, tooltip: { type: Boolean, default: false }, forceShow: { type: Boolean, default: false }, state: { // Tri-state prop: `true`, `false`, or `null` type: Boolean, default: null }, ariaLive: { type: String // default: null }, role: { type: String // default: null } }, NAME_FORM_VALID_FEEDBACK ) // @vue/component export const BFormValidFeedback = /*#__PURE__*/ Vue.extend({ name: NAME_FORM_VALID_FEEDBACK, functional: true, props, render(h, { props, data, children }) { const show = props.forceShow === true || props.state === true return h( props.tag, mergeData(data, { class: { 'valid-feedback': !props.tooltip, 'valid-tooltip': props.tooltip, 'd-block': show }, attrs: { id: props.id || null, role: props.role || null, 'aria-live': props.ariaLive || null, 'aria-atomic': props.ariaLive ? 'true' : null } }), children ) } })