buefy
Version:
Lightweight UI components for Vue.js (v3) based on Bulma
1,457 lines (1,441 loc) • 94 kB
JavaScript
/*! Buefy v3.0.2 | MIT License | github.com/buefy/buefy */
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('vue')) :
typeof define === 'function' && define.amd ? define(['exports', 'vue'], factory) :
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.Clockpicker = {}, global.Vue));
})(this, (function (exports, vue) { 'use strict';
let config = {
defaultIconPack: "mdi",
defaultIconComponent: null,
defaultLocale: void 0,
defaultInputAutocomplete: "on",
defaultTimepickerMobileNative: true,
defaultTimepickerMobileModal: true,
defaultInputHasCounter: true,
defaultCompatFallthrough: true,
defaultUseHtml5Validation: true,
defaultDropdownMobileModal: true,
defaultTrapFocus: true,
defaultStatusIcon: true};
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __propIsEnum = Object.prototype.propertyIsEnumerable;
var __objRest = (source, exclude) => {
var target = {};
for (var prop in source)
if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
target[prop] = source[prop];
if (source != null && __getOwnPropSymbols)
for (var prop of __getOwnPropSymbols(source)) {
if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
target[prop] = source[prop];
}
return target;
};
var CompatFallthroughMixin = vue.defineComponent({
inheritAttrs: false,
props: {
compatFallthrough: {
type: Boolean,
default: () => config.defaultCompatFallthrough
}
},
computed: {
rootAttrs() {
return this.compatFallthrough ? {
class: this.$attrs.class,
style: this.$attrs.style,
id: this.$attrs.id
} : {};
},
fallthroughAttrs() {
if (this.compatFallthrough) {
const _a = this.$attrs, { style: _1, class: _2, id: _3 } = _a, rest = __objRest(_a, ["style", "class", "id"]);
return rest;
} else {
return this.$attrs;
}
}
}
});
const isMobile = {
Android: function() {
return typeof window !== "undefined" && window.navigator.userAgent.match(/Android/i);
},
BlackBerry: function() {
return typeof window !== "undefined" && window.navigator.userAgent.match(/BlackBerry/i);
},
iOS: function() {
return typeof window !== "undefined" && (window.navigator.userAgent.match(/iPhone|iPad|iPod/i) || window.navigator.platform === "MacIntel" && window.navigator.maxTouchPoints > 1);
},
Opera: function() {
return typeof window !== "undefined" && window.navigator.userAgent.match(/Opera Mini/i);
},
Windows: function() {
return typeof window !== "undefined" && window.navigator.userAgent.match(/IEMobile/i);
},
any: function() {
return isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Opera() || isMobile.Windows();
}
};
function removeElement(el) {
if (typeof el.remove !== "undefined") {
el.remove();
} else if (typeof el.parentNode !== "undefined" && el.parentNode !== null) {
el.parentNode.removeChild(el);
}
}
function createAbsoluteElement(el) {
const root = document.createElement("div");
root.style.position = "absolute";
root.style.left = "0px";
root.style.top = "0px";
root.style.width = "100%";
const wrapper = document.createElement("div");
root.appendChild(wrapper);
wrapper.appendChild(el);
document.body.appendChild(root);
return root;
}
function toCssWidth(width) {
return width === void 0 ? null : isNaN(+width) ? `${width}` : width + "px";
}
function matchWithGroups(pattern, str) {
const matches = str.match(pattern);
const groupNames = pattern.toString().match(/<(.+?)>/g);
if (groupNames == null) {
throw new RangeError("pattern must contain at least one group");
}
return groupNames.map((group) => {
const groupMatches = group.match(/<(.+)>/);
return groupMatches[1];
}).reduce((acc, curr, index) => {
if (matches && matches.length > index) {
acc[curr] = matches[index + 1];
} else {
acc[curr] = null;
}
return acc;
}, {});
}
function isCustomElement(vm) {
return vm.$root != null && "shadowRoot" in vm.$root.$options;
}
var _export_sfc = (sfc, props) => {
const target = sfc.__vccOpts || sfc;
for (const [key, val] of props) {
target[key] = val;
}
return target;
};
const FormElementMixin = vue.defineComponent({
props: {
size: String,
expanded: Boolean,
loading: Boolean,
rounded: Boolean,
icon: String,
iconPack: String,
maxlength: [Number, String],
useHtml5Validation: {
type: Boolean,
default: () => config.defaultUseHtml5Validation
},
validationMessage: String,
locale: {
type: [String, Array],
default: () => {
return config.defaultLocale;
}
},
statusIcon: {
type: Boolean,
default: () => {
return config.defaultStatusIcon;
}
}
},
emits: {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
blur: (event) => true,
// eslint-disable-next-line @typescript-eslint/no-unused-vars
focus: (event) => true
},
data() {
return {
isValid: true,
isFocused: false,
newIconPack: this.iconPack || config.defaultIconPack,
// host component must override this
_elementRef: ""
};
},
computed: {
/*
* Find parent Field, max 3 levels deep.
*/
parentField() {
let parent = this.$parent;
for (let i = 0; i < 3; i++) {
if (parent && !parent.$data._isField) {
parent = parent.$parent;
}
}
return parent;
},
/*
* Get the type prop from parent if it's a Field.
*/
statusType() {
const { newType } = this.parentField || {};
if (!newType) return;
if (typeof newType === "string") {
return newType;
} else {
for (const key in newType) {
if (newType[key]) {
return key;
}
}
}
return void 0;
},
/*
* Get the message prop from parent if it's a Field.
*/
statusMessage() {
if (!this.parentField) return;
return this.parentField.newMessage || this.parentField.$slots.message;
},
/*
* Fix icon size for inputs, large was too big
*/
iconSize() {
switch (this.size) {
case "is-small":
return this.size;
case "is-medium":
return;
case "is-large":
return this.newIconPack === "mdi" ? "is-medium" : "";
}
return void 0;
}
},
methods: {
/*
* Focus method that work dynamically depending on the component.
*/
focus() {
const el = this.getElement();
if (el === void 0) return;
this.$nextTick(() => {
if (el) el.focus();
});
},
onBlur($event) {
this.isFocused = false;
this.$emit("blur", $event);
this.checkHtml5Validity();
},
onFocus($event) {
this.isFocused = true;
this.$emit("focus", $event);
},
getElement() {
let el = this.$refs[this.$data._elementRef];
while (el != null && typeof el === "object" && "$refs" in el) {
const form = el;
el = form.$refs[form.$data._elementRef];
}
return el;
},
setInvalid() {
const type = "is-danger";
const message = this.validationMessage || this.getElement().validationMessage;
this.setValidity(type, message);
},
setValidity(type, message) {
this.$nextTick(() => {
if (this.parentField) {
if (!this.parentField.type) {
this.parentField.newType = type;
}
if (!this.parentField.message) {
this.parentField.newMessage = message;
}
}
});
},
/*
* Check HTML5 validation, set isValid property.
* If validation fail, send 'is-danger' type,
* and error message to parent if it's a Field.
*/
checkHtml5Validity() {
if (!this.useHtml5Validation) {
return false;
}
const el = this.getElement();
if (el == null) {
return false;
}
if (!el.checkValidity()) {
this.setInvalid();
this.isValid = false;
} else {
this.setValidity(null, null);
this.isValid = true;
}
return this.isValid;
}
}
});
const findFocusable = (element, programmatic = false) => {
if (!element) {
return null;
}
if (programmatic) {
return element.querySelectorAll('*[tabindex="-1"]');
}
return element.querySelectorAll(`a[href]:not([tabindex="-1"]),
area[href],
input:not([disabled]),
select:not([disabled]),
textarea:not([disabled]),
button:not([disabled]),
iframe,
object,
embed,
*[tabindex]:not([tabindex="-1"]),
*[contenteditable]`);
};
let onKeyDown;
const beforeMount = (el, { value = true }) => {
if (value) {
let focusable = findFocusable(el);
let focusableProg = findFocusable(el, true);
if (focusable && focusable.length > 0) {
onKeyDown = (event) => {
focusable = findFocusable(el);
focusableProg = findFocusable(el, true);
const firstFocusable = focusable[0];
const lastFocusable = focusable[focusable.length - 1];
if (event.target === firstFocusable && event.shiftKey && event.key === "Tab") {
event.preventDefault();
lastFocusable.focus();
} else if ((event.target === lastFocusable || Array.from(focusableProg).indexOf(event.target) >= 0) && !event.shiftKey && event.key === "Tab") {
event.preventDefault();
firstFocusable.focus();
}
};
el.addEventListener("keydown", onKeyDown);
}
}
};
const unmounted = (el) => {
el.removeEventListener("keydown", onKeyDown);
};
const directive = {
beforeMount,
unmounted
};
const DEFAULT_CLOSE_OPTIONS = ["escape", "outside"];
const DROPDOWN_INJECTION_KEY = Symbol("bdropdown");
var _sfc_main$4 = vue.defineComponent({
name: "BDropdown",
directives: {
trapFocus: directive
},
provide() {
return {
[DROPDOWN_INJECTION_KEY]: this
};
},
props: {
modelValue: {
type: [
String,
Number,
Boolean,
Object,
Array,
Function
],
default: null
},
disabled: Boolean,
inline: Boolean,
scrollable: Boolean,
maxHeight: {
type: [String, Number],
default: 200
},
position: {
type: String,
validator(value) {
return [
"is-top-right",
"is-top-left",
"is-bottom-left",
"is-bottom-right"
].indexOf(value) > -1;
}
},
triggers: {
type: Array,
default: () => ["click"]
},
mobileModal: {
type: Boolean,
default: () => {
return config.defaultDropdownMobileModal;
}
},
ariaRole: {
type: String,
validator(value) {
return [
"menu",
"list",
"dialog"
].indexOf(value) > -1;
},
default: null
},
animation: {
type: String,
default: "fade"
},
multiple: Boolean,
trapFocus: {
type: Boolean,
default: () => {
return config.defaultTrapFocus;
}
},
closeOnClick: {
type: Boolean,
default: true
},
canClose: {
type: [Array, Boolean],
default: true
},
expanded: Boolean,
appendToBody: Boolean,
appendToBodyCopyParent: Boolean,
triggerTabindex: {
type: Number,
default: 0
}
},
emits: {
/* eslint-disable @typescript-eslint/no-unused-vars */
"active-change": (_isActive) => true,
change: (_selected) => true,
"update:modelValue": (_value) => true
/* eslint-enable @typescript-eslint/no-unused-vars */
},
data() {
return {
selected: this.modelValue,
style: {},
isActive: false,
isHoverable: false,
maybeTap: false,
isTouchEnabled: false,
_bodyEl: void 0,
// Used to append to body
timeOutID: void 0,
timeOutID2: void 0
};
},
computed: {
rootClasses() {
return [this.position, {
"is-disabled": this.disabled,
"is-hoverable": this.hoverable,
"is-inline": this.inline,
"is-active": this.isActive || this.inline,
"is-mobile-modal": this.isMobileModal,
"is-expanded": this.expanded,
"is-touch-enabled": this.isTouchEnabled
}];
},
isMobileModal() {
return this.mobileModal && !this.inline;
},
cancelOptions() {
return typeof this.canClose === "boolean" ? this.canClose ? DEFAULT_CLOSE_OPTIONS : [] : this.canClose;
},
contentStyle() {
var _a;
return {
maxHeight: this.scrollable ? (_a = toCssWidth(this.maxHeight)) != null ? _a : void 0 : void 0,
overflow: this.scrollable ? "auto" : void 0
};
},
hoverable() {
return this.triggers.indexOf("hover") >= 0;
}
},
watch: {
/*
* When v-model is changed set the new selected item.
*/
modelValue(value) {
this.selected = value;
},
/*
* Emit event when isActive value is changed.
*
* Also resets `isTouchEnabled` when it turns inactive.
*/
isActive(value) {
this.$emit("active-change", value);
if (!value) {
this.timeOutID = setTimeout(() => {
if (!this.isActive) {
this.isTouchEnabled = false;
}
}, 250);
}
this.handleScroll();
if (this.appendToBody) {
this.$nextTick(() => {
this.updateAppendToBody();
});
}
},
isHoverable(value) {
if (this.hoverable) {
this.$emit("active-change", value);
}
}
},
methods: {
handleScroll() {
if (typeof window === "undefined") return;
if (this.isMobileModal) {
if (this.isActive) {
document.documentElement.classList.add("is-clipped-touch");
} else {
document.documentElement.classList.remove("is-clipped-touch");
}
}
},
/*
* Click listener from DropdownItem.
* 1. Set new selected item.
* 2. Emit input event to update the user v-model.
* 3. Close the dropdown.
*/
selectItem(value) {
if (this.multiple) {
if (this.selected) {
const selected = this.selected;
if (selected.indexOf(value) === -1) {
this.selected = [...selected, value];
} else {
this.selected = selected.filter((val) => val !== value);
}
} else {
this.selected = [value];
}
this.$emit("change", this.selected);
} else {
if (this.selected !== value) {
this.selected = value;
this.$emit("change", this.selected);
}
}
this.$emit("update:modelValue", this.selected);
if (!this.multiple) {
this.isActive = !this.closeOnClick;
if (this.hoverable && this.closeOnClick) {
this.isHoverable = false;
}
}
},
/*
* White-listed items to not close when clicked.
*/
isInWhiteList(el) {
if (el === this.$refs.dropdownMenu) return true;
if (el === this.$refs.trigger) return true;
if (this.$refs.dropdownMenu != null) {
const children = this.$refs.dropdownMenu.querySelectorAll("*");
for (const child of children) {
if (el === child) {
return true;
}
}
}
if (this.$refs.trigger != null) {
const children = this.$refs.trigger.querySelectorAll("*");
for (const child of children) {
if (el === child) {
return true;
}
}
}
return false;
},
/*
* Close dropdown if clicked outside.
*/
clickedOutside(event) {
if (this.cancelOptions.indexOf("outside") < 0) return;
if (this.inline) return;
const target = isCustomElement(this) ? event.composedPath()[0] : event.target;
if (!this.isInWhiteList(target)) this.isActive = false;
},
/*
* Keypress event that is bound to the document
*/
keyPress({ key }) {
if (this.isActive && (key === "Escape" || key === "Esc")) {
if (this.cancelOptions.indexOf("escape") < 0) return;
this.isActive = false;
}
},
onClick() {
if (this.triggers.indexOf("hover") !== -1) return;
if (this.triggers.indexOf("click") < 0) return;
this.toggle();
},
onContextMenu() {
if (this.triggers.indexOf("contextmenu") < 0) return;
this.toggle();
},
onHover() {
if (this.triggers.indexOf("hover") < 0) return;
if (this.isTouchEnabled) return;
this.isHoverable = true;
},
// takes care of touch-enabled devices
// - does nothing if hover trigger is disabled
// - suppresses hover trigger by setting isTouchEnabled
// - handles only a tap; i.e., touchstart on the trigger immediately
// folowed by touchend
onTouchStart() {
this.maybeTap = true;
},
onTouchMove() {
this.maybeTap = false;
},
onTouchEnd(e) {
if (this.triggers.indexOf("hover") === -1) return;
if (!this.maybeTap) return;
e.preventDefault();
this.maybeTap = false;
this.isTouchEnabled = true;
this.toggle();
},
onFocus() {
if (this.triggers.indexOf("focus") < 0) return;
this.toggle();
},
/*
* Toggle dropdown if it's not disabled.
*/
toggle() {
if (this.disabled) return;
if (!this.isActive) {
this.timeOutID2 = setTimeout(() => {
const value = !this.isActive;
this.isActive = value;
});
} else {
this.isActive = !this.isActive;
}
},
updateAppendToBody() {
const dropdown = this.$refs.dropdown;
const dropdownMenu = this.$refs.dropdownMenu;
const trigger = this.$refs.trigger;
if (dropdownMenu && trigger) {
const dropdownWrapper = this.$data._bodyEl.children[0];
dropdownWrapper.classList.forEach((item) => dropdownWrapper.classList.remove(item));
dropdownWrapper.classList.add("dropdown");
dropdownWrapper.classList.add("dropdown-menu-animation");
this.rootClasses.forEach((item) => {
if (item && typeof item === "object") {
for (const key in item) {
if (item[key]) {
dropdownWrapper.classList.add(key);
}
}
}
});
if (this.appendToBodyCopyParent) {
const parentNode = this.$refs.dropdown.parentNode;
const parent = this.$data._bodyEl;
parent.classList.forEach((item) => parent.classList.remove(item));
parentNode.classList.forEach((item) => {
parent.classList.add(item);
});
}
const rect = trigger.getBoundingClientRect();
let top = rect.top + window.scrollY;
let left = rect.left + window.scrollX;
if (!this.position || this.position.indexOf("bottom") >= 0) {
top += trigger.clientHeight;
} else {
top -= dropdownMenu.clientHeight;
}
if (this.position && this.position.indexOf("left") >= 0) {
left -= dropdownMenu.clientWidth - trigger.clientWidth;
}
this.style = {
position: "absolute",
top: `${top}px`,
left: `${left}px`,
zIndex: "99",
width: this.expanded ? `${dropdown.offsetWidth}px` : void 0
};
}
}
},
mounted() {
if (this.appendToBody) {
this.$data._bodyEl = createAbsoluteElement(this.$refs.dropdownMenu);
this.updateAppendToBody();
}
},
created() {
if (typeof window !== "undefined") {
document.addEventListener("click", this.clickedOutside);
document.addEventListener("keyup", this.keyPress);
}
},
beforeUnmount() {
if (typeof window !== "undefined") {
document.removeEventListener("click", this.clickedOutside);
document.removeEventListener("keyup", this.keyPress);
}
if (this.appendToBody) {
removeElement(this.$data._bodyEl);
}
clearTimeout(this.timeOutID);
clearTimeout(this.timeOutID2);
}
});
const _hoisted_1$3 = ["tabindex"];
const _hoisted_2$2 = ["aria-hidden"];
const _hoisted_3$2 = ["aria-hidden"];
const _hoisted_4$2 = ["role", "aria-modal"];
function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
const _directive_trap_focus = vue.resolveDirective("trap-focus");
return vue.openBlock(), vue.createElementBlock(
"div",
{
class: vue.normalizeClass(["dropdown dropdown-menu-animation", _ctx.rootClasses]),
ref: "dropdown",
onMouseleave: _cache[7] || (_cache[7] = ($event) => _ctx.isHoverable = false)
},
[
!_ctx.inline ? (vue.openBlock(), vue.createElementBlock("div", {
key: 0,
tabindex: _ctx.disabled ? void 0 : _ctx.triggerTabindex,
ref: "trigger",
class: "dropdown-trigger",
onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)),
onContextmenu: _cache[1] || (_cache[1] = vue.withModifiers((...args) => _ctx.onContextMenu && _ctx.onContextMenu(...args), ["prevent"])),
onMouseenter: _cache[2] || (_cache[2] = (...args) => _ctx.onHover && _ctx.onHover(...args)),
onFocusCapture: _cache[3] || (_cache[3] = (...args) => _ctx.onFocus && _ctx.onFocus(...args)),
onTouchstart: _cache[4] || (_cache[4] = (...args) => _ctx.onTouchStart && _ctx.onTouchStart(...args)),
onTouchmove: _cache[5] || (_cache[5] = (...args) => _ctx.onTouchMove && _ctx.onTouchMove(...args)),
onTouchend: _cache[6] || (_cache[6] = (...args) => _ctx.onTouchEnd && _ctx.onTouchEnd(...args)),
"aria-haspopup": "true"
}, [
vue.renderSlot(_ctx.$slots, "trigger", { active: _ctx.isActive })
], 40, _hoisted_1$3)) : vue.createCommentVNode("v-if", true),
vue.createVNode(vue.Transition, { name: _ctx.animation }, {
default: vue.withCtx(() => [
_ctx.isMobileModal ? vue.withDirectives((vue.openBlock(), vue.createElementBlock("div", {
key: 0,
class: "background",
"aria-hidden": !_ctx.isActive
}, null, 8, _hoisted_2$2)), [
[vue.vShow, _ctx.isActive]
]) : vue.createCommentVNode("v-if", true)
]),
_: 1
/* STABLE */
}, 8, ["name"]),
vue.createVNode(vue.Transition, {
name: _ctx.animation,
persisted: ""
}, {
default: vue.withCtx(() => [
vue.withDirectives((vue.openBlock(), vue.createElementBlock("div", {
ref: "dropdownMenu",
class: "dropdown-menu",
style: vue.normalizeStyle(_ctx.style),
"aria-hidden": !_ctx.isActive
}, [
vue.createElementVNode("div", {
class: "dropdown-content",
role: _ctx.ariaRole,
"aria-modal": !_ctx.inline,
style: vue.normalizeStyle(_ctx.contentStyle)
}, [
vue.renderSlot(_ctx.$slots, "default")
], 12, _hoisted_4$2)
], 12, _hoisted_3$2)), [
[vue.vShow, !_ctx.disabled && (_ctx.isActive || _ctx.isHoverable) || _ctx.inline],
[_directive_trap_focus, _ctx.trapFocus]
])
]),
_: 3
/* FORWARDED */
}, 8, ["name"])
],
34
/* CLASS, NEED_HYDRATION */
);
}
var BDropdown = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["render", _sfc_render$4]]);
const registerComponent = (Vue, component, name) => {
const componentName = component.name;
if (componentName == null) {
throw new Error("Buefy.registerComponent: missing component name");
}
Vue.component(componentName, component);
};
const mdiIcons = {
sizes: {
default: "mdi-24px",
"is-small": null,
"is-medium": "mdi-36px",
"is-large": "mdi-48px"
},
iconPrefix: "mdi-"
};
const faIcons = () => {
const faIconPrefix = "fa-";
return {
sizes: {
default: null,
"is-small": null,
"is-medium": faIconPrefix + "lg",
"is-large": faIconPrefix + "2x"
},
iconPrefix: faIconPrefix,
internalIcons: {
information: "info-circle",
alert: "exclamation-triangle",
"alert-circle": "exclamation-circle",
"chevron-right": "angle-right",
"chevron-left": "angle-left",
"chevron-down": "angle-down",
"eye-off": "eye-slash",
"menu-down": "caret-down",
"menu-up": "caret-up",
"close-circle": "times-circle"
}
};
};
const getIcons = () => {
let icons = {
mdi: mdiIcons,
fa: faIcons(),
fas: faIcons(),
far: faIcons(),
fad: faIcons(),
fab: faIcons(),
fal: faIcons(),
"fa-solid": faIcons(),
"fa-regular": faIcons(),
"fa-light": faIcons(),
"fa-thin": faIcons(),
"fa-duotone": faIcons(),
"fa-brands": faIcons()
};
return icons;
};
var _sfc_main$3 = vue.defineComponent({
name: "BIcon",
props: {
type: [String, Object],
component: String,
pack: String,
icon: {
type: String,
required: true
},
size: String,
customSize: String,
customClass: String,
both: Boolean
// This is used internally to show both MDI and FA icon
},
computed: {
iconConfig() {
const allIcons = getIcons();
return allIcons[this.newPack];
},
iconPrefix() {
if (this.iconConfig && this.iconConfig.iconPrefix) {
return this.iconConfig.iconPrefix;
}
return "";
},
/*
* Internal icon name based on the pack.
* If pack is 'fa', gets the equivalent FA icon name of the MDI,
* internal icons are always MDI.
*/
newIcon() {
return `${this.iconPrefix}${this.getEquivalentIconOf(this.icon)}`;
},
newPack() {
return this.pack || config.defaultIconPack;
},
newType() {
if (!this.type) return;
let splitType = [];
if (typeof this.type === "string") {
splitType = this.type.split("-");
} else {
for (const key in this.type) {
if (this.type[key]) {
splitType = key.split("-");
break;
}
}
}
if (splitType.length <= 1) return;
const [, ...type] = splitType;
return `has-text-${type.join("-")}`;
},
newCustomSize() {
return this.customSize || this.customSizeByPack;
},
customSizeByPack() {
if (this.iconConfig && this.iconConfig.sizes) {
if (this.size && this.iconConfig.sizes[this.size] !== void 0) {
return this.iconConfig.sizes[this.size];
} else if (this.iconConfig.sizes.default) {
return this.iconConfig.sizes.default;
}
}
return null;
},
useIconComponent() {
return this.component || config.defaultIconComponent;
}
},
methods: {
/*
* Equivalent icon name of the MDI.
*/
getEquivalentIconOf(value) {
if (!this.both) {
return value;
}
if (this.iconConfig == null) {
return value;
}
const maybeInternal = this.iconConfig;
if (maybeInternal && maybeInternal.internalIcons && maybeInternal.internalIcons[value]) {
return maybeInternal.internalIcons[value];
}
return value;
}
}
});
function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
return vue.openBlock(), vue.createElementBlock(
"span",
{
class: vue.normalizeClass(["icon", [_ctx.newType, _ctx.size]])
},
[
!_ctx.useIconComponent ? (vue.openBlock(), vue.createElementBlock(
"i",
{
key: 0,
class: vue.normalizeClass([_ctx.newPack, _ctx.newIcon, _ctx.newCustomSize, _ctx.customClass])
},
null,
2
/* CLASS */
)) : (vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(_ctx.useIconComponent), {
key: 1,
icon: [_ctx.newPack, _ctx.newIcon],
size: _ctx.newCustomSize,
class: vue.normalizeClass([_ctx.customClass])
}, null, 8, ["icon", "size", "class"]))
],
2
/* CLASS */
);
}
var BIcon = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["render", _sfc_render$3]]);
var _sfc_main$2 = vue.defineComponent({
name: "BInput",
components: { BIcon },
mixins: [CompatFallthroughMixin, FormElementMixin],
props: {
modelValue: {
type: [Number, String]
},
type: {
type: String,
default: "text"
},
lazy: {
type: Boolean,
default: false
},
passwordReveal: Boolean,
iconClickable: Boolean,
hasCounter: {
type: Boolean,
default: () => config.defaultInputHasCounter
},
customClass: {
type: String,
default: ""
},
iconRight: String,
iconRightClickable: Boolean,
iconRightType: String,
// Native options to use in HTML5 validation
autocomplete: String
},
emits: {
/* eslint-disable @typescript-eslint/no-unused-vars */
"icon-click": (event) => true,
"icon-right-click": (event) => true,
"update:modelValue": (value) => true
/* eslint-enable @typescript-eslint/no-unused-vars */
},
data() {
return {
newValue: this.modelValue,
newType: this.type,
newAutocomplete: this.autocomplete || config.defaultInputAutocomplete,
isPasswordVisible: false,
_elementRef: this.type === "textarea" ? "textarea" : "input"
};
},
computed: {
computedValue: {
get() {
return this.newValue;
},
set(value) {
this.newValue = value;
this.$emit("update:modelValue", value);
}
},
rootClasses() {
return [
this.iconPosition,
this.size,
{
"is-expanded": this.expanded,
"is-loading": this.loading,
"is-clearfix": !this.hasMessage
}
];
},
inputClasses() {
return [
this.statusType,
this.size,
{ "is-rounded": this.rounded }
];
},
hasIconRight() {
return this.passwordReveal || this.loading || this.statusIcon && this.statusTypeIcon || this.iconRight;
},
rightIcon() {
if (this.passwordReveal) {
return this.passwordVisibleIcon;
} else if (this.iconRight) {
return this.iconRight;
}
return this.statusTypeIcon;
},
rightIconType() {
if (this.passwordReveal) {
return "is-primary";
} else if (this.iconRight) {
return this.iconRightType || void 0;
}
return this.statusType;
},
/*
* Position of the icon or if it's both sides.
*/
iconPosition() {
let iconClasses = "";
if (this.icon) {
iconClasses += "has-icons-left ";
}
if (this.hasIconRight) {
iconClasses += "has-icons-right";
}
return iconClasses;
},
/*
* Icon name (MDI) based on the type.
*/
statusTypeIcon() {
switch (this.statusType) {
case "is-success":
return "check";
case "is-danger":
return "alert-circle";
case "is-info":
return "information";
case "is-warning":
return "alert";
default:
return void 0;
}
},
/*
* Check if have any message prop from parent if it's a Field.
*/
hasMessage() {
return !!this.statusMessage;
},
/*
* Current password-reveal icon name.
*/
passwordVisibleIcon() {
return !this.isPasswordVisible ? "eye" : "eye-off";
},
/*
* Get value length
*/
valueLength() {
if (typeof this.computedValue === "string") {
return Array.from(this.computedValue).length;
} else if (typeof this.computedValue === "number") {
return this.computedValue.toString().length;
}
return 0;
}
},
watch: {
/*
* When v-model is changed:
* 1. Set internal value.
* 2. Validate it if the value came from outside;
* i.e., not equal to computedValue
*/
modelValue(value) {
const fromOutside = this.computedValue != value;
this.newValue = value;
if (fromOutside) {
this.$nextTick(() => {
!this.isValid && this.checkHtml5Validity();
});
}
},
type(type) {
this.newType = type;
}
},
methods: {
/*
* Toggle the visibility of a password-reveal input
* by changing the type and focus the input right away.
*/
togglePasswordVisibility() {
this.isPasswordVisible = !this.isPasswordVisible;
this.newType = this.isPasswordVisible ? "text" : "password";
this.$nextTick(() => {
this.focus();
});
},
iconClick(emit, event) {
this.$emit(emit, event);
this.$nextTick(() => {
this.focus();
});
},
rightIconClick(event) {
if (this.passwordReveal) {
this.togglePasswordVisibility();
} else if (this.iconRightClickable) {
this.iconClick("icon-right-click", event);
}
},
onInput() {
if (!this.lazy) {
this.revalidate();
}
},
onChange() {
if (this.lazy) {
this.revalidate();
}
},
revalidate() {
!this.isValid && this.checkHtml5Validity();
}
}
});
const _hoisted_1$2 = ["type", "autocomplete", "maxlength"];
const _hoisted_2$1 = ["maxlength"];
const _hoisted_3$1 = ["type", "autocomplete", "maxlength"];
const _hoisted_4$1 = ["maxlength"];
function _sfc_render$2(_ctx, _cache, $props, $setup, $data, $options) {
const _component_b_icon = vue.resolveComponent("b-icon");
return vue.openBlock(), vue.createElementBlock(
"div",
vue.mergeProps({
class: ["control", _ctx.rootClasses]
}, _ctx.rootAttrs),
[
_ctx.lazy ? (vue.openBlock(), vue.createElementBlock(
vue.Fragment,
{ key: 0 },
[
_ctx.type !== "textarea" ? vue.withDirectives((vue.openBlock(), vue.createElementBlock("input", vue.mergeProps({
key: 0,
ref: "input",
class: ["input", [_ctx.inputClasses, _ctx.customClass]],
type: _ctx.newType,
autocomplete: _ctx.newAutocomplete,
maxlength: _ctx.maxlength,
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => _ctx.computedValue = $event)
}, _ctx.fallthroughAttrs, {
onInput: _cache[1] || (_cache[1] = (...args) => _ctx.onInput && _ctx.onInput(...args)),
onChange: _cache[2] || (_cache[2] = (...args) => _ctx.onChange && _ctx.onChange(...args)),
onBlur: _cache[3] || (_cache[3] = (...args) => _ctx.onBlur && _ctx.onBlur(...args)),
onFocus: _cache[4] || (_cache[4] = (...args) => _ctx.onFocus && _ctx.onFocus(...args))
}), null, 16, _hoisted_1$2)), [
[
vue.vModelDynamic,
_ctx.computedValue,
void 0,
{ lazy: true }
]
]) : vue.withDirectives((vue.openBlock(), vue.createElementBlock("textarea", vue.mergeProps({
key: 1,
ref: "textarea",
class: ["textarea", [_ctx.inputClasses, _ctx.customClass]],
maxlength: _ctx.maxlength,
"onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => _ctx.computedValue = $event)
}, _ctx.fallthroughAttrs, {
onInput: _cache[6] || (_cache[6] = (...args) => _ctx.onInput && _ctx.onInput(...args)),
onChange: _cache[7] || (_cache[7] = (...args) => _ctx.onChange && _ctx.onChange(...args)),
onBlur: _cache[8] || (_cache[8] = (...args) => _ctx.onBlur && _ctx.onBlur(...args)),
onFocus: _cache[9] || (_cache[9] = (...args) => _ctx.onFocus && _ctx.onFocus(...args))
}), null, 16, _hoisted_2$1)), [
[
vue.vModelText,
_ctx.computedValue,
void 0,
{ lazy: true }
]
])
],
64
/* STABLE_FRAGMENT */
)) : (vue.openBlock(), vue.createElementBlock(
vue.Fragment,
{ key: 1 },
[
_ctx.type !== "textarea" ? vue.withDirectives((vue.openBlock(), vue.createElementBlock("input", vue.mergeProps({
key: 0,
ref: "input",
class: ["input", [_ctx.inputClasses, _ctx.customClass]],
type: _ctx.newType,
autocomplete: _ctx.newAutocomplete,
maxlength: _ctx.maxlength,
"onUpdate:modelValue": _cache[10] || (_cache[10] = ($event) => _ctx.computedValue = $event)
}, _ctx.fallthroughAttrs, {
onInput: _cache[11] || (_cache[11] = (...args) => _ctx.onInput && _ctx.onInput(...args)),
onChange: _cache[12] || (_cache[12] = (...args) => _ctx.onChange && _ctx.onChange(...args)),
onBlur: _cache[13] || (_cache[13] = (...args) => _ctx.onBlur && _ctx.onBlur(...args)),
onFocus: _cache[14] || (_cache[14] = (...args) => _ctx.onFocus && _ctx.onFocus(...args))
}), null, 16, _hoisted_3$1)), [
[vue.vModelDynamic, _ctx.computedValue]
]) : vue.withDirectives((vue.openBlock(), vue.createElementBlock("textarea", vue.mergeProps({
key: 1,
ref: "textarea",
class: ["textarea", [_ctx.inputClasses, _ctx.customClass]],
maxlength: _ctx.maxlength,
"onUpdate:modelValue": _cache[15] || (_cache[15] = ($event) => _ctx.computedValue = $event)
}, _ctx.fallthroughAttrs, {
onInput: _cache[16] || (_cache[16] = (...args) => _ctx.onInput && _ctx.onInput(...args)),
onChange: _cache[17] || (_cache[17] = (...args) => _ctx.onChange && _ctx.onChange(...args)),
onBlur: _cache[18] || (_cache[18] = (...args) => _ctx.onBlur && _ctx.onBlur(...args)),
onFocus: _cache[19] || (_cache[19] = (...args) => _ctx.onFocus && _ctx.onFocus(...args))
}), null, 16, _hoisted_4$1)), [
[vue.vModelText, _ctx.computedValue]
])
],
64
/* STABLE_FRAGMENT */
)),
_ctx.icon ? (vue.openBlock(), vue.createBlock(_component_b_icon, {
key: 2,
class: vue.normalizeClass(["is-left", { "is-clickable": _ctx.iconClickable }]),
icon: _ctx.icon,
pack: _ctx.iconPack,
size: _ctx.iconSize,
onClick: _cache[20] || (_cache[20] = ($event) => _ctx.iconClick("icon-click", $event))
}, null, 8, ["class", "icon", "pack", "size"])) : vue.createCommentVNode("v-if", true),
!_ctx.loading && _ctx.hasIconRight && _ctx.rightIcon ? (vue.openBlock(), vue.createBlock(_component_b_icon, {
key: 3,
class: vue.normalizeClass(["is-right", { "is-clickable": _ctx.passwordReveal || _ctx.iconRightClickable }]),
icon: _ctx.rightIcon,
pack: _ctx.iconPack,
size: _ctx.iconSize,
type: _ctx.rightIconType,
both: "",
onClick: _ctx.rightIconClick
}, null, 8, ["class", "icon", "pack", "size", "type", "onClick"])) : vue.createCommentVNode("v-if", true),
_ctx.maxlength && _ctx.hasCounter && _ctx.type !== "number" ? (vue.openBlock(), vue.createElementBlock(
"small",
{
key: 4,
class: vue.normalizeClass(["help counter", { "is-invisible": !_ctx.isFocused }])
},
vue.toDisplayString(_ctx.valueLength) + " / " + vue.toDisplayString(_ctx.maxlength),
3
/* TEXT, CLASS */
)) : vue.createCommentVNode("v-if", true)
],
16
/* FULL_PROPS */
);
}
var BInput = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["render", _sfc_render$2]]);
const AM = "AM";
const PM = "PM";
const HOUR_FORMAT_24 = "24";
const HOUR_FORMAT_12 = "12";
const defaultTimeFormatter = (date, vm) => {
return vm.dtf.format(date);
};
const defaultTimeParser = (timeString, vm) => {
if (timeString) {
let d = null;
if (vm.computedValue && !isNaN(vm.computedValue.valueOf())) {
d = new Date(vm.computedValue);
} else {
d = vm.timeCreator();
d.setMilliseconds(0);
}
if (vm.dtf.formatToParts && typeof vm.dtf.formatToParts === "function") {
const formatRegex = vm.dtf.formatToParts(d).map((part) => {
if (part.type === "literal") {
return part.value.replace(/ /g, "\\s?");
} else if (part.type === "dayPeriod") {
return `((?!=<${part.type}>)(${vm.amString}|${vm.pmString}|${AM}|${PM}|${AM.toLowerCase()}|${PM.toLowerCase()})?)`;
}
return `((?!=<${part.type}>)\\d+)`;
}).join("");
const timeGroups = matchWithGroups(formatRegex, timeString);
timeGroups.hour = timeGroups.hour ? parseInt(timeGroups.hour + "", 10) : null;
timeGroups.minute = timeGroups.minute ? parseInt(timeGroups.minute + "", 10) : null;
timeGroups.second = timeGroups.second ? parseInt(timeGroups.second + "", 10) : null;
if (timeGroups.hour && timeGroups.hour >= 0 && timeGroups.hour < 24 && timeGroups.minute && timeGroups.minute >= 0 && timeGroups.minute < 59) {
const dayPeriod = timeGroups.dayPeriod;
if (dayPeriod && (dayPeriod.toLowerCase() === vm.pmString.toLowerCase() || dayPeriod.toLowerCase() === PM.toLowerCase()) && timeGroups.hour < 12) {
timeGroups.hour += 12;
}
d.setHours(timeGroups.hour);
d.setMinutes(timeGroups.minute);
d.setSeconds(timeGroups.second || 0);
return d;
}
}
let am = false;
if (vm.hourFormat === HOUR_FORMAT_12) {
const dateString12 = timeString.split(" ");
timeString = dateString12[0];
am = dateString12[1] === vm.amString || dateString12[1] === AM;
}
const time = timeString.split(":");
let hours = parseInt(time[0], 10);
const minutes = parseInt(time[1], 10);
const seconds = vm.enableSeconds ? parseInt(time[2], 10) : 0;
if (isNaN(hours) || hours < 0 || hours > 23 || vm.hourFormat === HOUR_FORMAT_12 && (hours < 1 || hours > 12) || isNaN(minutes) || minutes < 0 || minutes > 59) {
return null;
}
d.setSeconds(seconds);
d.setMinutes(minutes);
if (vm.hourFormat === HOUR_FORMAT_12) {
if (am && hours === 12) {
hours = 0;
} else if (!am && hours !== 12) {
hours += 12;
}
}
d.setHours(hours);
return new Date(d.getTime());
}
return null;
};
var TimepickerMixin = vue.defineComponent({
mixins: [CompatFallthroughMixin, FormElementMixin],
props: {
modelValue: [Date, null],
inline: Boolean,
minTime: [Date, null],
maxTime: [Date, null],
placeholder: String,
editable: Boolean,
disabled: Boolean,
hourFormat: {
type: String,
validator: (value) => {
return value === HOUR_FORMAT_24 || value === HOUR_FORMAT_12;
}
},
incrementHours: {
type: Number,
default: 1
},
incrementMinutes: {
type: Number,
default: 1
},
incrementSeconds: {
type: Number,
default: 1
},
timeFormatter: {
type: Function,
default: (date, vm) => {
{
return defaultTimeFormatter(date, vm);
}
}
},
timeParser: {
type: Function,
default: (date, vm) => {
{
return defaultTimeParser(date, vm);
}
}
},
mobileNative: {
type: Boolean,
default: () => config.defaultTimepickerMobileNative
},
mobileModal: {
type: Boolean,
default: () => config.defaultTimepickerMobileModal
},
timeCreator: {
type: Function,
default: () => {
{
return /* @__PURE__ */ new Date();
}
}