vue-multiselect
Advanced tools
Comparing version 2.0.0-beta.6 to 2.0.0-beta.7
@@ -14,3 +14,5 @@ import deepClone from './utils' | ||
isOpen: false, | ||
value: this.selected ? deepClone(this.selected) : this.multiple ? [] : null | ||
internalValue: this.value || this.value === 0 | ||
? deepClone(this.value) | ||
: this.multiple ? [] : null | ||
} | ||
@@ -51,3 +53,3 @@ }, | ||
*/ | ||
selected: { | ||
value: { | ||
type: null, | ||
@@ -127,5 +129,4 @@ default: null | ||
/** | ||
* Reset this.value, this.search, this.selected after this.value changes. | ||
* Useful if want to create a stateless dropdown, that fires the this.onChange | ||
* callback function with different params. | ||
* Reset this.internalValue, this.search after this.internalValue changes. | ||
* Useful if want to create a stateless dropdown. | ||
* @default false | ||
@@ -155,3 +156,2 @@ * @type {Boolean} | ||
default (option, label) { | ||
if (option && option.isTag) return option.label | ||
return label ? option[label] : option | ||
@@ -218,6 +218,6 @@ } | ||
return this.multiple | ||
? this.value.map(element => element[this.trackBy]) | ||
: this.value[this.trackBy] | ||
? this.internalValue.map(element => element[this.trackBy]) | ||
: this.internalValue[this.trackBy] | ||
} else { | ||
return this.value | ||
return this.internalValue | ||
} | ||
@@ -231,10 +231,9 @@ }, | ||
currentOptionLabel () { | ||
const label = this.getOptionLabel(this.value) | ||
return label ? label.toString() : '' | ||
return this.getOptionLabel(this.internalValue) | ||
} | ||
}, | ||
watch: { | ||
'value' () { | ||
'internalValue' () { | ||
if (this.resetAfter) { | ||
this.value = null | ||
this.internalValue = null | ||
this.search = '' | ||
@@ -246,8 +245,8 @@ } | ||
/* istanbul ignore else */ | ||
if (this.search !== this.currentOptionLabel) { | ||
this.$emit('search-change', this.search, this.id) | ||
} | ||
if (this.search === this.currentOptionLabel) return | ||
this.$emit('search-change', this.search, this.id) | ||
}, | ||
'selected' (newVal, oldVal) { | ||
this.value = deepClone(this.selected) | ||
'value' () { | ||
this.internalValue = deepClone(this.value) | ||
} | ||
@@ -278,3 +277,3 @@ }, | ||
/* istanbul ignore else */ | ||
if (!this.value) return false | ||
if (!this.internalValue) return false | ||
const opt = this.trackBy | ||
@@ -300,5 +299,5 @@ ? option[this.trackBy] | ||
/** | ||
* Returns the option[this.label] | ||
* if option is Object. Otherwise check for option.label. | ||
* If non is found, return entrie option. | ||
* Returns empty string when options is null/undefined | ||
* Returns tag query if option is tag. | ||
* Returns the customLabel() results and casts it to string. | ||
* | ||
@@ -309,7 +308,5 @@ * @param {Object||String||Integer} Passed option | ||
getOptionLabel (option) { | ||
if (typeof option === 'object' && option !== null) { | ||
return this.customLabel(option, this.label) | ||
} else { | ||
return this.customLabel(option) | ||
} | ||
if (!option && option !== 0) return '' | ||
if (option.isTag) return option.label | ||
return this.customLabel(option, this.label) + '' | ||
}, | ||
@@ -324,3 +321,3 @@ /** | ||
select (option) { | ||
if (this.max && this.multiple && this.value.length === this.max) return | ||
if (this.max && this.multiple && this.internalValue.length === this.max) return | ||
if (option.isTag) { | ||
@@ -335,3 +332,3 @@ this.$emit('tag', option.label, this.id) | ||
} else { | ||
this.value.push(option) | ||
this.internalValue.push(option) | ||
} | ||
@@ -344,6 +341,6 @@ } else { | ||
this.value = isSelected ? null : option | ||
this.internalValue = isSelected ? null : option | ||
} | ||
this.$emit('select', deepClone(option), this.id) | ||
this.$emit('update', deepClone(this.value), this.id) | ||
this.$emit('input', deepClone(this.internalValue), this.id) | ||
@@ -363,3 +360,3 @@ if (this.closeOnSelect) this.deactivate() | ||
/* istanbul ignore else */ | ||
if (!this.allowEmpty && this.value.length <= 1) return | ||
if (!this.allowEmpty && this.internalValue.length <= 1) return | ||
@@ -370,9 +367,9 @@ const index = (this.multiple && typeof option === 'object') | ||
this.value.splice(index, 1) | ||
this.internalValue.splice(index, 1) | ||
this.$emit('remove', deepClone(option), this.id) | ||
this.$emit('update', deepClone(this.value), this.id) | ||
this.$emit('input', deepClone(this.internalValue), this.id) | ||
}, | ||
/** | ||
* Calls this.removeElement() with the last element | ||
* from this.value (selected element Array) | ||
* from this.internalValue (selected element Array) | ||
* | ||
@@ -383,4 +380,4 @@ * @fires this#removeElement | ||
/* istanbul ignore else */ | ||
if (this.search.length === 0 && Array.isArray(this.value)) { | ||
this.removeElement(this.value[this.value.length - 1]) | ||
if (this.search.length === 0 && Array.isArray(this.internalValue)) { | ||
this.removeElement(this.internalValue[this.internalValue.length - 1]) | ||
} | ||
@@ -422,3 +419,3 @@ }, | ||
} | ||
this.$emit('close', deepClone(this.value), this.id) | ||
this.$emit('close', deepClone(this.internalValue), this.id) | ||
}, | ||
@@ -425,0 +422,0 @@ /** |
@@ -33,3 +33,3 @@ module.exports = { | ||
'multiselect__option--highlight': index === this.pointer && this.showPointer, | ||
'multiselect__option--selected': !this.isNotSelected(option) | ||
'multiselect__option--selected': this.isSelected(option) | ||
} | ||
@@ -36,0 +36,0 @@ }, |
@@ -1,2 +0,2 @@ | ||
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.VueMultiselect=e():t.VueMultiselect=e()}(this,function(){return function(t){function e(i){if(n[i])return n[i].exports;var r=n[i]={exports:{},id:i,loaded:!1};return t[i].call(r.exports,r,r.exports,e),r.loaded=!0,r.exports}var n={};return e.m=t,e.c=n,e.p="/",e(0)}([function(t,e,n){"use strict";function i(t){return t&&t.__esModule?t:{"default":t}}Object.defineProperty(e,"__esModule",{value:!0}),e.deepClone=e.pointerMixin=e.multiselectMixin=e.Multiselect=void 0;var r=n(80),o=i(r),s=n(28),l=i(s),u=n(29),a=i(u),c=n(30),f=i(c);e["default"]=o["default"],e.Multiselect=o["default"],e.multiselectMixin=l["default"],e.pointerMixin=a["default"],e.deepClone=f["default"]},function(t,e){var n=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},function(t,e,n){var i=n(56),r=n(15);t.exports=function(t){return i(r(t))}},function(t,e,n){t.exports=!n(9)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(t,e,n){var i=n(6),r=n(13);t.exports=n(4)?function(t,e,n){return i.f(t,e,r(1,n))}:function(t,e,n){return t[e]=n,t}},function(t,e,n){var i=n(11),r=n(34),o=n(25),s=Object.defineProperty;e.f=n(4)?Object.defineProperty:function(t,e,n){if(i(t),e=o(e,!0),i(n),r)try{return s(t,e,n)}catch(l){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(t[e]=n.value),t}},function(t,e,n){var i=n(23)("wks"),r=n(14),o=n(1).Symbol,s="function"==typeof o,l=t.exports=function(t){return i[t]||(i[t]=s&&o[t]||(s?o:r)("Symbol."+t))};l.store=i},function(t,e){var n=t.exports={version:"2.4.0"};"number"==typeof __e&&(__e=n)},function(t,e){t.exports=function(t){try{return!!t()}catch(e){return!0}}},function(t,e,n){var i=n(39),r=n(16);t.exports=Object.keys||function(t){return i(t,r)}},function(t,e,n){var i=n(12);t.exports=function(t){if(!i(t))throw TypeError(t+" is not an object!");return t}},function(t,e){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e){var n=0,i=Math.random();t.exports=function(t){return"Symbol(".concat(void 0===t?"":t,")_",(++n+i).toString(36))}},function(t,e){t.exports=function(t){if(void 0==t)throw TypeError("Can't call method on "+t);return t}},function(t,e){t.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(t,e,n){var i=n(1),r=n(8),o=n(53),s=n(5),l="prototype",u=function(t,e,n){var a,c,f,p=t&u.F,d=t&u.G,h=t&u.S,m=t&u.P,v=t&u.B,g=t&u.W,b=d?r:r[e]||(r[e]={}),y=b[l],_=d?i:h?i[e]:(i[e]||{})[l];d&&(n=e);for(a in n)c=!p&&_&&void 0!==_[a],c&&a in b||(f=c?_[a]:n[a],b[a]=d&&"function"!=typeof _[a]?n[a]:v&&c?o(f,i):g&&_[a]==f?function(t){var e=function(e,n,i){if(this instanceof t){switch(arguments.length){case 0:return new t;case 1:return new t(e);case 2:return new t(e,n)}return new t(e,n,i)}return t.apply(this,arguments)};return e[l]=t[l],e}(f):m&&"function"==typeof f?o(Function.call,f):f,m&&((b.virtual||(b.virtual={}))[a]=f,t&u.R&&y&&!y[a]&&s(y,a,f)))};u.F=1,u.G=2,u.S=4,u.P=8,u.B=16,u.W=32,u.U=64,u.R=128,t.exports=u},function(t,e){t.exports={}},function(t,e){t.exports=!0},function(t,e){e.f={}.propertyIsEnumerable},function(t,e,n){var i=n(6).f,r=n(2),o=n(7)("toStringTag");t.exports=function(t,e,n){t&&!r(t=n?t:t.prototype,o)&&i(t,o,{configurable:!0,value:e})}},function(t,e,n){var i=n(23)("keys"),r=n(14);t.exports=function(t){return i[t]||(i[t]=r(t))}},function(t,e,n){var i=n(1),r="__core-js_shared__",o=i[r]||(i[r]={});t.exports=function(t){return o[t]||(o[t]={})}},function(t,e){var n=Math.ceil,i=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?i:n)(t)}},function(t,e,n){var i=n(12);t.exports=function(t,e){if(!i(t))return t;var n,r;if(e&&"function"==typeof(n=t.toString)&&!i(r=n.call(t)))return r;if("function"==typeof(n=t.valueOf)&&!i(r=n.call(t)))return r;if(!e&&"function"==typeof(n=t.toString)&&!i(r=n.call(t)))return r;throw TypeError("Can't convert object to primitive value")}},function(t,e,n){var i=n(1),r=n(8),o=n(19),s=n(27),l=n(6).f;t.exports=function(t){var e=r.Symbol||(r.Symbol=o?{}:i.Symbol||{});"_"==t.charAt(0)||t in e||l(e,t,{value:s.f(t)})}},function(t,e,n){e.f=n(7)},function(t,e,n){"use strict";function i(t){return t&&t.__esModule?t:{"default":t}}function r(t,e){if(!t)return!1;var n=t.toString().toLowerCase();return-1!==n.indexOf(e)}var o=n(31),s=i(o),l=n(30),u=i(l);t.exports={data:function(){return{search:"",isOpen:!1,value:this.selected?(0,u["default"])(this.selected):this.multiple?[]:null}},props:{localSearch:{type:Boolean,"default":!0},options:{type:Array,required:!0},multiple:{type:Boolean,"default":!1},selected:{type:null,"default":null},trackBy:{type:String},label:{type:String},searchable:{type:Boolean,"default":!0},clearOnSelect:{type:Boolean,"default":!0},hideSelected:{type:Boolean,"default":!1},placeholder:{type:String,"default":"Select option"},maxHeight:{type:Number,"default":300},allowEmpty:{type:Boolean,"default":!0},resetAfter:{type:Boolean,"default":!1},closeOnSelect:{type:Boolean,"default":!0},customLabel:{type:Function,"default":function(t,e){return t&&t.isTag?t.label:e?t[e]:t}},taggable:{type:Boolean,"default":!1},tagPlaceholder:{type:String,"default":"Press enter to create a tag"},max:{type:Number},id:{"default":null}},created:function(){this.searchable&&this.adjustSearch()},computed:{filteredOptions:function(){var t=this,e=this.search||"",n=this.hideSelected?this.options.filter(this.isNotSelected):this.options;return this.localSearch&&(n=this.label?n.filter(function(e){return r(e[t.label],t.search)}):n.filter(function(e){return r(e,t.search)})),this.taggable&&e.length&&!this.isExistingOption(e)&&n.unshift({isTag:!0,label:e}),n},valueKeys:function(){var t=this;return this.trackBy?this.multiple?this.value.map(function(e){return e[t.trackBy]}):this.value[this.trackBy]:this.value},optionKeys:function(){var t=this;return this.label?this.options.map(function(e){return e[t.label].toString().toLowerCase()}):this.options.map(function(t){return t.toString().toLowerCase()})},currentOptionLabel:function(){var t=this.getOptionLabel(this.value);return t?t.toString():""}},watch:{value:function(){this.resetAfter&&(this.value=null,this.search=""),this.adjustSearch()},search:function(){this.search!==this.currentOptionLabel&&this.$emit("search-change",this.search,this.id)},selected:function(t,e){this.value=(0,u["default"])(this.selected)}},methods:{updateSearch:function(t){this.search=t.trim().toLowerCase()},isExistingOption:function(t){return this.options?this.optionKeys.indexOf(t)>-1:!1},isSelected:function(t){if(!this.value)return!1;var e=this.trackBy?t[this.trackBy]:t;return this.multiple?this.valueKeys.indexOf(e)>-1:this.valueKeys===e},isNotSelected:function(t){return!this.isSelected(t)},getOptionLabel:function(t){return"object"===("undefined"==typeof t?"undefined":(0,s["default"])(t))&&null!==t?this.customLabel(t,this.label):this.customLabel(t)},select:function(t){if(!this.max||!this.multiple||this.value.length!==this.max)if(t.isTag)this.$emit("tag",t.label,this.id),this.search="";else{if(this.multiple){if(this.isSelected(t))return void this.removeElement(t);this.value.push(t)}else{var e=this.isSelected(t);if(e&&!this.allowEmpty)return;this.value=e?null:t}this.$emit("select",(0,u["default"])(t),this.id),this.$emit("update",(0,u["default"])(this.value),this.id),this.closeOnSelect&&this.deactivate()}},removeElement:function(t){if(this.allowEmpty||!(this.value.length<=1)){var e=this.multiple&&"object"===("undefined"==typeof t?"undefined":(0,s["default"])(t))?this.valueKeys.indexOf(t[this.trackBy]):this.valueKeys.indexOf(t);this.value.splice(e,1),this.$emit("remove",(0,u["default"])(t),this.id),this.$emit("update",(0,u["default"])(this.value),this.id)}},removeLastElement:function(){0===this.search.length&&Array.isArray(this.value)&&this.removeElement(this.value[this.value.length-1])},activate:function(){this.isOpen||(this.isOpen=!0,this.searchable?(this.search="",this.$refs.search.focus()):this.$el.focus(),this.$emit("open",this.id))},deactivate:function(){this.isOpen&&(this.isOpen=!1,this.searchable?(this.$refs.search.blur(),this.adjustSearch()):this.$el.blur(),this.$emit("close",(0,u["default"])(this.value),this.id))},adjustSearch:function(){this.searchable&&this.clearOnSelect&&(this.search=this.multiple?"":this.currentOptionLabel)},toggle:function(){this.isOpen?this.deactivate():this.activate()}}}},function(t,e){"use strict";t.exports={data:function(){return{pointer:0,visibleElements:this.maxHeight/40}},props:{showPointer:{type:Boolean,"default":!0}},computed:{pointerPosition:function(){return 40*this.pointer}},watch:{filteredOptions:function(){this.pointerAdjust()}},methods:{optionHighlight:function(t,e){return{"multiselect__option--highlight":t===this.pointer&&this.showPointer,"multiselect__option--selected":!this.isNotSelected(e)}},addPointerElement:function(){this.filteredOptions.length>0&&this.select(this.filteredOptions[this.pointer]),this.pointerReset()},pointerForward:function(){this.pointer<this.filteredOptions.length-1&&(this.pointer++,this.$refs.list.scrollTop<=this.pointerPosition-40*this.visibleElements&&(this.$refs.list.scrollTop=this.pointerPosition-40*(this.visibleElements-1)))},pointerBackward:function(){this.pointer>0&&(this.pointer--,this.$refs.list.scrollTop>=this.pointerPosition&&(this.$refs.list.scrollTop=this.pointerPosition))},pointerReset:function(){this.closeOnSelect&&(this.pointer=0,this.$refs.list&&(this.$refs.list.scrollTop=0))},pointerAdjust:function(){this.pointer>=this.filteredOptions.length-1&&(this.pointer=this.filteredOptions.length?this.filteredOptions.length-1:0)},pointerSet:function(t){this.pointer=t}}}},function(t,e,n){"use strict";function i(t){return t&&t.__esModule?t:{"default":t}}var r=n(44),o=i(r),s=n(31),l=i(s),u=function a(t){if(Array.isArray(t))return t.map(a);if(t&&"object"===("undefined"==typeof t?"undefined":(0,l["default"])(t))){for(var e={},n=(0,o["default"])(t),i=0,r=n.length;r>i;i++){var s=n[i];e[s]=a(t[s])}return e}return t};t.exports=u},function(t,e,n){"use strict";function i(t){return t&&t.__esModule?t:{"default":t}}e.__esModule=!0;var r=n(46),o=i(r),s=n(45),l=i(s),u="function"==typeof l["default"]&&"symbol"==typeof o["default"]?function(t){return typeof t}:function(t){return t&&"function"==typeof l["default"]&&t.constructor===l["default"]?"symbol":typeof t};e["default"]="function"==typeof l["default"]&&"symbol"===u(o["default"])?function(t){return"undefined"==typeof t?"undefined":u(t)}:function(t){return t&&"function"==typeof l["default"]&&t.constructor===l["default"]?"symbol":"undefined"==typeof t?"undefined":u(t)}},function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e,n){var i=n(12),r=n(1).document,o=i(r)&&i(r.createElement);t.exports=function(t){return o?r.createElement(t):{}}},function(t,e,n){t.exports=!n(4)&&!n(9)(function(){return 7!=Object.defineProperty(n(33)("div"),"a",{get:function(){return 7}}).a})},function(t,e,n){"use strict";var i=n(19),r=n(17),o=n(40),s=n(5),l=n(2),u=n(18),a=n(58),c=n(21),f=n(65),p=n(7)("iterator"),d=!([].keys&&"next"in[].keys()),h="@@iterator",m="keys",v="values",g=function(){return this};t.exports=function(t,e,n,b,y,_,x){a(n,e,b);var w,O,S,k=function(t){if(!d&&t in E)return E[t];switch(t){case m:return function(){return new n(this,t)};case v:return function(){return new n(this,t)}}return function(){return new n(this,t)}},j=e+" Iterator",C=y==v,P=!1,E=t.prototype,L=E[p]||E[h]||y&&E[y],M=L||k(y),T=y?C?k("entries"):M:void 0,A="Array"==e?E.entries||L:L;if(A&&(S=f(A.call(new t)),S!==Object.prototype&&(c(S,j,!0),i||l(S,p)||s(S,p,g))),C&&L&&L.name!==v&&(P=!0,M=function(){return L.call(this)}),i&&!x||!d&&!P&&E[p]||s(E,p,M),u[e]=M,u[j]=g,y)if(w={values:C?M:k(v),keys:_?M:k(m),entries:T},x)for(O in w)O in E||o(E,O,w[O]);else r(r.P+r.F*(d||P),e,w);return w}},function(t,e,n){var i=n(11),r=n(62),o=n(16),s=n(22)("IE_PROTO"),l=function(){},u="prototype",a=function(){var t,e=n(33)("iframe"),i=o.length,r=">";for(e.style.display="none",n(55).appendChild(e),e.src="javascript:",t=e.contentWindow.document,t.open(),t.write("<script>document.F=Object</script"+r),t.close(),a=t.F;i--;)delete a[u][o[i]];return a()};t.exports=Object.create||function(t,e){var n;return null!==t?(l[u]=i(t),n=new l,l[u]=null,n[s]=t):n=a(),void 0===e?n:r(n,e)}},function(t,e,n){var i=n(39),r=n(16).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return i(t,r)}},function(t,e){e.f=Object.getOwnPropertySymbols},function(t,e,n){var i=n(2),r=n(3),o=n(52)(!1),s=n(22)("IE_PROTO");t.exports=function(t,e){var n,l=r(t),u=0,a=[];for(n in l)n!=s&&i(l,n)&&a.push(n);for(;e.length>u;)i(l,n=e[u++])&&(~o(a,n)||a.push(n));return a}},function(t,e,n){t.exports=n(5)},function(t,e,n){var i=n(15);t.exports=function(t){return Object(i(t))}},function(t,e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e["default"]={functional:!0,render:function(t,e){return e.props.optionFunction(t,e.props.option,e.props.label)},props:{optionFunction:{type:Function,required:!0},label:{required:!0},option:{}}}},function(t,e,n){"use strict";function i(t){return t&&t.__esModule?t:{"default":t}}Object.defineProperty(e,"__esModule",{value:!0});var r=n(28),o=i(r),s=n(29),l=i(s),u=n(42),a=i(u);e["default"]={name:"vue-multiselect",components:{MultiselectOption:a["default"]},mixins:[o["default"],l["default"]],props:{selectLabel:{type:String,"default":"Press enter to select"},selectedLabel:{type:String,"default":"Selected"},deselectLabel:{type:String,"default":"Press enter to remove"},showLabels:{type:Boolean,"default":!0},limit:{type:Number,"default":99999},limitText:{type:Function,"default":function(t){return"and "+t+" more"}},loading:{type:Boolean,"default":!1},disabled:{type:Boolean,"default":!1},optionFunction:{type:Function,"default":function(t,e,n){return t("span",{},n)}}},computed:{visibleValue:function(){return this.multiple?this.value.slice(0,this.limit):[]},deselectLabelText:function(){return this.showLabels?this.deselectLabel:""},selectLabelText:function(){return this.showLabels?this.selectLabel:""},selectedLabelText:function(){return this.showLabels?this.selectedLabel:""}}}},function(t,e,n){t.exports={"default":n(47),__esModule:!0}},function(t,e,n){t.exports={"default":n(48),__esModule:!0}},function(t,e,n){t.exports={"default":n(49),__esModule:!0}},function(t,e,n){n(71),t.exports=n(8).Object.keys},function(t,e,n){n(74),n(72),n(75),n(76),t.exports=n(8).Symbol},function(t,e,n){n(73),n(77),t.exports=n(27).f("iterator")},function(t,e){t.exports=function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!");return t}},function(t,e){t.exports=function(){}},function(t,e,n){var i=n(3),r=n(69),o=n(68);t.exports=function(t){return function(e,n,s){var l,u=i(e),a=r(u.length),c=o(s,a);if(t&&n!=n){for(;a>c;)if(l=u[c++],l!=l)return!0}else for(;a>c;c++)if((t||c in u)&&u[c]===n)return t||c||0;return!t&&-1}}},function(t,e,n){var i=n(50);t.exports=function(t,e,n){if(i(t),void 0===e)return t;switch(n){case 1:return function(n){return t.call(e,n)};case 2:return function(n,i){return t.call(e,n,i)};case 3:return function(n,i,r){return t.call(e,n,i,r)}}return function(){return t.apply(e,arguments)}}},function(t,e,n){var i=n(10),r=n(38),o=n(20);t.exports=function(t){var e=i(t),n=r.f;if(n)for(var s,l=n(t),u=o.f,a=0;l.length>a;)u.call(t,s=l[a++])&&e.push(s);return e}},function(t,e,n){t.exports=n(1).document&&document.documentElement},function(t,e,n){var i=n(32);t.exports=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==i(t)?t.split(""):Object(t)}},function(t,e,n){var i=n(32);t.exports=Array.isArray||function(t){return"Array"==i(t)}},function(t,e,n){"use strict";var i=n(36),r=n(13),o=n(21),s={};n(5)(s,n(7)("iterator"),function(){return this}),t.exports=function(t,e,n){t.prototype=i(s,{next:r(1,n)}),o(t,e+" Iterator")}},function(t,e){t.exports=function(t,e){return{value:e,done:!!t}}},function(t,e,n){var i=n(10),r=n(3);t.exports=function(t,e){for(var n,o=r(t),s=i(o),l=s.length,u=0;l>u;)if(o[n=s[u++]]===e)return n}},function(t,e,n){var i=n(14)("meta"),r=n(12),o=n(2),s=n(6).f,l=0,u=Object.isExtensible||function(){return!0},a=!n(9)(function(){return u(Object.preventExtensions({}))}),c=function(t){s(t,i,{value:{i:"O"+ ++l,w:{}}})},f=function(t,e){if(!r(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!o(t,i)){if(!u(t))return"F";if(!e)return"E";c(t)}return t[i].i},p=function(t,e){if(!o(t,i)){if(!u(t))return!0;if(!e)return!1;c(t)}return t[i].w},d=function(t){return a&&h.NEED&&u(t)&&!o(t,i)&&c(t),t},h=t.exports={KEY:i,NEED:!1,fastKey:f,getWeak:p,onFreeze:d}},function(t,e,n){var i=n(6),r=n(11),o=n(10);t.exports=n(4)?Object.defineProperties:function(t,e){r(t);for(var n,s=o(e),l=s.length,u=0;l>u;)i.f(t,n=s[u++],e[n]);return t}},function(t,e,n){var i=n(20),r=n(13),o=n(3),s=n(25),l=n(2),u=n(34),a=Object.getOwnPropertyDescriptor;e.f=n(4)?a:function(t,e){if(t=o(t),e=s(e,!0),u)try{return a(t,e)}catch(n){}return l(t,e)?r(!i.f.call(t,e),t[e]):void 0}},function(t,e,n){var i=n(3),r=n(37).f,o={}.toString,s="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],l=function(t){try{return r(t)}catch(e){return s.slice()}};t.exports.f=function(t){return s&&"[object Window]"==o.call(t)?l(t):r(i(t))}},function(t,e,n){var i=n(2),r=n(41),o=n(22)("IE_PROTO"),s=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=r(t),i(t,o)?t[o]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?s:null}},function(t,e,n){var i=n(17),r=n(8),o=n(9);t.exports=function(t,e){var n=(r.Object||{})[t]||Object[t],s={};s[t]=e(n),i(i.S+i.F*o(function(){n(1)}),"Object",s)}},function(t,e,n){var i=n(24),r=n(15);t.exports=function(t){return function(e,n){var o,s,l=String(r(e)),u=i(n),a=l.length;return 0>u||u>=a?t?"":void 0:(o=l.charCodeAt(u),55296>o||o>56319||u+1===a||(s=l.charCodeAt(u+1))<56320||s>57343?t?l.charAt(u):o:t?l.slice(u,u+2):(o-55296<<10)+(s-56320)+65536)}}},function(t,e,n){var i=n(24),r=Math.max,o=Math.min;t.exports=function(t,e){return t=i(t),0>t?r(t+e,0):o(t,e)}},function(t,e,n){var i=n(24),r=Math.min;t.exports=function(t){return t>0?r(i(t),9007199254740991):0}},function(t,e,n){"use strict";var i=n(51),r=n(59),o=n(18),s=n(3);t.exports=n(35)(Array,"Array",function(t,e){this._t=s(t),this._i=0,this._k=e},function(){var t=this._t,e=this._k,n=this._i++;return!t||n>=t.length?(this._t=void 0,r(1)):"keys"==e?r(0,n):"values"==e?r(0,t[n]):r(0,[n,t[n]])},"values"),o.Arguments=o.Array,i("keys"),i("values"),i("entries")},function(t,e,n){var i=n(41),r=n(10);n(66)("keys",function(){return function(t){return r(i(t))}})},function(t,e){},function(t,e,n){"use strict";var i=n(67)(!0);n(35)(String,"String",function(t){this._t=String(t),this._i=0},function(){var t,e=this._t,n=this._i;return n>=e.length?{value:void 0,done:!0}:(t=i(e,n),this._i+=t.length,{value:t,done:!1})})},function(t,e,n){"use strict";var i=n(1),r=n(2),o=n(4),s=n(17),l=n(40),u=n(61).KEY,a=n(9),c=n(23),f=n(21),p=n(14),d=n(7),h=n(27),m=n(26),v=n(60),g=n(54),b=n(57),y=n(11),_=n(3),x=n(25),w=n(13),O=n(36),S=n(64),k=n(63),j=n(6),C=n(10),P=k.f,E=j.f,L=S.f,M=i.Symbol,T=i.JSON,A=T&&T.stringify,B="prototype",F=d("_hidden"),N=d("toPrimitive"),$={}.propertyIsEnumerable,D=c("symbol-registry"),R=c("symbols"),I=c("op-symbols"),z=Object[B],K="function"==typeof M,H=i.QObject,W=!H||!H[B]||!H[B].findChild,J=o&&a(function(){return 7!=O(E({},"a",{get:function(){return E(this,"a",{value:7}).a}})).a})?function(t,e,n){var i=P(z,e);i&&delete z[e],E(t,e,n),i&&t!==z&&E(z,e,i)}:E,V=function(t){var e=R[t]=O(M[B]);return e._k=t,e},q=K&&"symbol"==typeof M.iterator?function(t){return"symbol"==typeof t}:function(t){return t instanceof M},U=function(t,e,n){return t===z&&U(I,e,n),y(t),e=x(e,!0),y(n),r(R,e)?(n.enumerable?(r(t,F)&&t[F][e]&&(t[F][e]=!1),n=O(n,{enumerable:w(0,!1)})):(r(t,F)||E(t,F,w(1,{})),t[F][e]=!0),J(t,e,n)):E(t,e,n)},G=function(t,e){y(t);for(var n,i=g(e=_(e)),r=0,o=i.length;o>r;)U(t,n=i[r++],e[n]);return t},Y=function(t,e){return void 0===e?O(t):G(O(t),e)},Q=function(t){var e=$.call(this,t=x(t,!0));return this===z&&r(R,t)&&!r(I,t)?!1:e||!r(this,t)||!r(R,t)||r(this,F)&&this[F][t]?e:!0},X=function(t,e){if(t=_(t),e=x(e,!0),t!==z||!r(R,e)||r(I,e)){var n=P(t,e);return!n||!r(R,e)||r(t,F)&&t[F][e]||(n.enumerable=!0),n}},Z=function(t){for(var e,n=L(_(t)),i=[],o=0;n.length>o;)r(R,e=n[o++])||e==F||e==u||i.push(e);return i},tt=function(t){for(var e,n=t===z,i=L(n?I:_(t)),o=[],s=0;i.length>s;)r(R,e=i[s++])&&(n?r(z,e):!0)&&o.push(R[e]);return o};K||(M=function(){if(this instanceof M)throw TypeError("Symbol is not a constructor!");var t=p(arguments.length>0?arguments[0]:void 0),e=function(n){this===z&&e.call(I,n),r(this,F)&&r(this[F],t)&&(this[F][t]=!1),J(this,t,w(1,n))};return o&&W&&J(z,t,{configurable:!0,set:e}),V(t)},l(M[B],"toString",function(){return this._k}),k.f=X,j.f=U,n(37).f=S.f=Z,n(20).f=Q,n(38).f=tt,o&&!n(19)&&l(z,"propertyIsEnumerable",Q,!0),h.f=function(t){return V(d(t))}),s(s.G+s.W+s.F*!K,{Symbol:M});for(var et="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),nt=0;et.length>nt;)d(et[nt++]);for(var et=C(d.store),nt=0;et.length>nt;)m(et[nt++]);s(s.S+s.F*!K,"Symbol",{"for":function(t){return r(D,t+="")?D[t]:D[t]=M(t)},keyFor:function(t){if(q(t))return v(D,t);throw TypeError(t+" is not a symbol!")},useSetter:function(){W=!0},useSimple:function(){W=!1}}),s(s.S+s.F*!K,"Object",{create:Y,defineProperty:U,defineProperties:G,getOwnPropertyDescriptor:X,getOwnPropertyNames:Z,getOwnPropertySymbols:tt}),T&&s(s.S+s.F*(!K||a(function(){var t=M();return"[null]"!=A([t])||"{}"!=A({a:t})||"{}"!=A(Object(t))})),"JSON",{stringify:function(t){if(void 0!==t&&!q(t)){for(var e,n,i=[t],r=1;arguments.length>r;)i.push(arguments[r++]);return e=i[1],"function"==typeof e&&(n=e),!n&&b(e)||(e=function(t,e){return n&&(e=n.call(this,t,e)),q(e)?void 0:e}),i[1]=e,A.apply(T,i)}}}),M[B][N]||n(5)(M[B],N,M[B].valueOf),f(M,"Symbol"),f(Math,"Math",!0),f(i.JSON,"JSON",!0)},function(t,e,n){n(26)("asyncIterator")},function(t,e,n){n(26)("observable")},function(t,e,n){n(70);for(var i=n(1),r=n(5),o=n(18),s=n(7)("toStringTag"),l=["NodeList","DOMTokenList","MediaList","StyleSheetList","CSSRuleList"],u=0;5>u;u++){var a=l[u],c=i[a],f=c&&c.prototype;f&&!f[s]&&r(f,s,a),o[a]=o.Array}},function(t,e,n){e=t.exports=n(79)(),e.push([t.id,'fieldset[disabled] .multiselect{pointer-events:none}.multiselect__spinner{position:absolute;right:1px;top:1px;width:48px;height:35px;background:#fff;display:block}.multiselect__spinner:after,.multiselect__spinner:before{position:absolute;content:"";top:50%;left:50%;margin:-8px 0 0 -8px;width:16px;height:16px;border-radius:100%;border-color:#41b883 transparent transparent;border-style:solid;border-width:2px;box-shadow:0 0 0 1px transparent}.multiselect__spinner:before{animation:spinning 2.4s cubic-bezier(.41,.26,.2,.62);animation-iteration-count:infinite}.multiselect__spinner:after{animation:spinning 2.4s cubic-bezier(.51,.09,.21,.8);animation-iteration-count:infinite},.multiselect__loading-enter-active,.multiselect__loading-leave-active{transition:opacity .4s ease-in-out;opacity:1}.multiselect__loading-enter,.multiselect__loading-leave-active{opacity:0}.multiselect,.multiselect__input,.multiselect__single{font-family:inherit;font-size:14px}.multiselect{box-sizing:content-box;display:block;position:relative;width:100%;min-height:40px;text-align:left;color:#35495e}.multiselect *{box-sizing:border-box}.multiselect:focus{outline:none}.multiselect--disabled{pointer-events:none;opacity:.6}.multiselect--active{z-index:50}.multiselect--active .multiselect__current,.multiselect--active .multiselect__input,.multiselect--active .multiselect__tags{border-bottom-left-radius:0;border-bottom-right-radius:0}.multiselect--active .multiselect__select{transform:rotate(180deg)}.multiselect__input,.multiselect__single{position:relative;display:inline-block;min-height:20px;line-height:20px;border:none;border-radius:5px;background:#fff;padding:1px 0 0 5px;width:100%;transition:border .1s ease;box-sizing:border-box;margin-bottom:8px}.multiselect__tag~.multiselect__input{width:auto}.multiselect__input:hover,.multiselect__single:hover{border-color:#cfcfcf}.multiselect__input:focus,.multiselect__single:focus{border-color:#a8a8a8;outline:none}.multiselect__single{padding-left:6px;margin-bottom:8px}.multiselect__tags{min-height:40px;display:block;padding:8px 40px 0 8px;border-radius:5px;border:1px solid #e8e8e8;background:#fff}.multiselect__tag{position:relative;display:inline-block;padding:4px 26px 4px 10px;border-radius:5px;margin-right:10px;color:#fff;line-height:1;background:#41b883;margin-bottom:8px;white-space:nowrap}.multiselect__tag-icon{cursor:pointer;margin-left:7px;position:absolute;right:0;top:0;bottom:0;font-weight:700;font-style:initial;width:22px;text-align:center;line-height:22px;transition:all .2s ease;border-radius:5px}.multiselect__tag-icon:after{content:"\\D7";color:#266d4d;font-size:14px}.multiselect__tag-icon:focus,.multiselect__tag-icon:hover{background:#369a6e}.multiselect__tag-icon:focus:after,.multiselect__tag-icon:hover:after{color:#fff}.multiselect__current{min-height:40px;overflow:hidden;padding:8px 12px 0;padding-right:30px;white-space:nowrap;border-radius:5px;border:1px solid #e8e8e8}.multiselect__current,.multiselect__select{line-height:16px;box-sizing:border-box;display:block;margin:0;text-decoration:none;cursor:pointer}.multiselect__select{position:absolute;width:40px;height:38px;right:1px;top:1px;padding:4px 8px;text-align:center;transition:transform .2s ease}.multiselect__select:before{position:relative;right:0;top:65%;color:#999;margin-top:4px;border-style:solid;border-width:5px 5px 0;border-color:#999 transparent transparent;content:""}.multiselect__placeholder{color:#adadad;display:inline-block;margin-bottom:10px;padding-top:2px}.multiselect--active .multiselect__placeholder{display:none}.multiselect__content{position:absolute;list-style:none;display:block;background:#fff;width:100%;max-height:240px;overflow:auto;padding:0;margin:0;border:1px solid #e8e8e8;border-top:none;border-bottom-left-radius:5px;border-bottom-right-radius:5px;z-index:50}.multiselect__content::webkit-scrollbar{display:none}.multiselect__option{display:block;padding:12px;min-height:40px;line-height:16px;text-decoration:none;text-transform:none;vertical-align:middle;position:relative;cursor:pointer;white-space:nowrap}.multiselect__option:after{top:0;right:0;position:absolute;line-height:40px;padding-right:12px;padding-left:20px}.multiselect__option--highlight{background:#41b883;outline:none;color:#fff}.multiselect__option--highlight:after{content:attr(data-select);background:#41b883;color:#fff}.multiselect__option--selected{background:#f3f3f3;color:#35495e;font-weight:700}.multiselect__option--selected:after{content:attr(data-selected);color:silver}.multiselect__option--selected.multiselect__option--highlight{background:#ff6a6a;color:#fff}.multiselect__option--selected.multiselect__option--highlight:after{background:#ff6a6a;content:attr(data-deselect);color:#fff}.multiselect--disabled{background:#ededed;pointer-events:none}.multiselect--disabled .multiselect__current,.multiselect--disabled .multiselect__select,.multiselect__option--disabled{background:#ededed;color:#a6a6a6}.multiselect__option--disabled{cursor:text;pointer-events:none}.multiselect__option--disabled:visited{color:#a6a6a6}.multiselect__option--disabled:focus,.multiselect__option--disabled:hover{background:#3dad7b}.multiselect-enter-active,.multiselect-leave-active{transition:all .3s ease}.multiselect-enter,.multiselect-leave-active{opacity:0;max-height:0!important}@keyframes spinning{0%{transform:rotate(0)}to{transform:rotate(2turn)}}',""])},function(t,e){t.exports=function(){var t=[];return t.toString=function(){for(var t=[],e=0;e<this.length;e++){var n=this[e];n[2]?t.push("@media "+n[2]+"{"+n[1]+"}"):t.push(n[1])}return t.join("")},t.i=function(e,n){"string"==typeof e&&(e=[[null,e,""]]);for(var i={},r=0;r<this.length;r++){var o=this[r][0];"number"==typeof o&&(i[o]=!0)}for(r=0;r<e.length;r++){var s=e[r];"number"==typeof s[0]&&i[s[0]]||(n&&!s[2]?s[2]=n:n&&(s[2]="("+s[2]+") and ("+n+")"),t.push(s))}},t}},function(t,e,n){var i,r;n(83),i=n(43);var o=n(81);r=i=i||{},"object"==typeof i["default"]&&(r=i=i["default"]),"function"==typeof r&&(r=r.options),r.render=o.render,r.staticRenderFns=o.staticRenderFns,t.exports=i},function(module,exports){module.exports={render:function(){with(this)return _h("div",{staticClass:"multiselect","class":{"multiselect--active":isOpen,"multiselect--disabled":disabled},attrs:{tabindex:"0"},on:{focus:function(t){activate()},blur:function(t){searchable?!1:deactivate()},keydown:[function(t){40===t.keyCode&&t.target===t.currentTarget&&(t.preventDefault(),pointerForward())},function(t){38===t.keyCode&&t.target===t.currentTarget&&(t.preventDefault(),pointerBackward())},function(t){13===t.keyCode&&(t.stopPropagation(),t.preventDefault(),t.target===t.currentTarget&&addPointerElement())}],keyup:function(t){27===t.keyCode&&deactivate()}}},[_h("div",{staticClass:"multiselect__select",on:{mousedown:function(t){t.preventDefault(),toggle()}}})," ",_h("div",{ref:"tags",staticClass:"multiselect__tags"},[visibleValue&&_l(visibleValue,function(t){return _h("span",{staticClass:"multiselect__tag",attrs:{onmousedown:"event.preventDefault()"}},[_h("span",{domProps:{textContent:_s(getOptionLabel(t))}})," ",_h("i",{staticClass:"multiselect__tag-icon",attrs:{"aria-hidden":"true",tabindex:"1"},on:{keydown:function(e){13===e.keyCode&&(e.preventDefault(),removeElement(t))},mousedown:function(e){e.preventDefault(),removeElement(t)}}})])})," ",value&&value.length>limit?[_h("strong",{domProps:{textContent:_s(limitText(value.length-limit))}})]:_e()," ",_h("transition",{attrs:{name:"multiselect__loading"}},[_h("div",{directives:[{name:"show",value:loading,expression:"loading"}],staticClass:"multiselect__spinner"})])," ",searchable?_h("input",{ref:"search",staticClass:"multiselect__input",attrs:{name:"search",type:"text",autocomplete:"off",placeholder:placeholder,disabled:disabled},domProps:{value:search},on:{input:function(t){updateSearch(t.target.value)},focus:function(t){t.preventDefault(),activate()},blur:function(t){t.preventDefault(),deactivate()},keyup:[function(t){27===t.keyCode&&deactivate()},function(t){40===t.keyCode&&pointerForward()},function(t){38===t.keyCode&&pointerBackward()}],keydown:[function(t){13===t.keyCode&&(t.stopPropagation(),t.preventDefault(),t.target===t.currentTarget&&addPointerElement())},function(t){8!==t.keyCode&&46!==t.keyCode||removeLastElement()}]}}):_e()," ",searchable||multiple?_e():_h("span",{staticClass:"multiselect__single",domProps:{textContent:_s(currentOptionLabel||placeholder)}})])," ",_h("transition",{attrs:{name:"multiselect"}},[_h("ul",{directives:[{name:"show",value:isOpen,expression:"isOpen"}],ref:"list",staticClass:"multiselect__content",style:{maxHeight:maxHeight+"px"}},[_t("beforeList")," ",multiple&&max===value.length?_h("li",[_h("span",{staticClass:"multiselect__option"},[_t("maxElements",["Maximum of "+_s(max)+" options selected. First remove a selected option to select another."])])]):_e()," ",!max||value.length<max?[filteredOptions&&_l(filteredOptions,function(t,e){return _h("li",{key:e},[_h("span",{staticClass:"multiselect__option","class":optionHighlight(e,t),attrs:{tabindex:"0","data-select":t.isTag?tagPlaceholder:selectLabelText,"data-selected":selectedLabelText,"data-deselect":deselectLabelText}, | ||
on:{mousedown:function(e){e.preventDefault(),select(t)},mouseenter:function(t){pointerSet(e)}}},[_h("multiselect-option",{attrs:{"option-function":optionFunction,label:getOptionLabel(t),option:t}})])])})]:_e()," ",_h("li",{directives:[{name:"show",value:0===filteredOptions.length&&search,expression:"filteredOptions.length === 0 && search"}]},[_h("span",{staticClass:"multiselect__option"},[_t("noResult",["No elements found. Consider changing the search query."])])])," ",_t("afterList")])])])},staticRenderFns:[]}},function(t,e,n){function i(t,e){for(var n=0;n<t.length;n++){var i=t[n],r=f[i.id];if(r){r.refs++;for(var o=0;o<r.parts.length;o++)r.parts[o](i.parts[o]);for(;o<i.parts.length;o++)r.parts.push(u(i.parts[o],e))}else{for(var s=[],o=0;o<i.parts.length;o++)s.push(u(i.parts[o],e));f[i.id]={id:i.id,refs:1,parts:s}}}}function r(t){for(var e=[],n={},i=0;i<t.length;i++){var r=t[i],o=r[0],s=r[1],l=r[2],u=r[3],a={css:s,media:l,sourceMap:u};n[o]?n[o].parts.push(a):e.push(n[o]={id:o,parts:[a]})}return e}function o(t,e){var n=h(),i=g[g.length-1];if("top"===t.insertAt)i?i.nextSibling?n.insertBefore(e,i.nextSibling):n.appendChild(e):n.insertBefore(e,n.firstChild),g.push(e);else{if("bottom"!==t.insertAt)throw new Error("Invalid value for parameter 'insertAt'. Must be 'top' or 'bottom'.");n.appendChild(e)}}function s(t){t.parentNode.removeChild(t);var e=g.indexOf(t);e>=0&&g.splice(e,1)}function l(t){var e=document.createElement("style");return e.type="text/css",o(t,e),e}function u(t,e){var n,i,r;if(e.singleton){var o=v++;n=m||(m=l(e)),i=a.bind(null,n,o,!1),r=a.bind(null,n,o,!0)}else n=l(e),i=c.bind(null,n),r=function(){s(n)};return i(t),function(e){if(e){if(e.css===t.css&&e.media===t.media&&e.sourceMap===t.sourceMap)return;i(t=e)}else r()}}function a(t,e,n,i){var r=n?"":i.css;if(t.styleSheet)t.styleSheet.cssText=b(e,r);else{var o=document.createTextNode(r),s=t.childNodes;s[e]&&t.removeChild(s[e]),s.length?t.insertBefore(o,s[e]):t.appendChild(o)}}function c(t,e){var n=e.css,i=e.media,r=e.sourceMap;if(i&&t.setAttribute("media",i),r&&(n+="\n/*# sourceURL="+r.sources[0]+" */",n+="\n/*# sourceMappingURL=data:application/json;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(r))))+" */"),t.styleSheet)t.styleSheet.cssText=n;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(n))}}var f={},p=function(t){var e;return function(){return"undefined"==typeof e&&(e=t.apply(this,arguments)),e}},d=p(function(){return/msie [6-9]\b/.test(window.navigator.userAgent.toLowerCase())}),h=p(function(){return document.head||document.getElementsByTagName("head")[0]}),m=null,v=0,g=[];t.exports=function(t,e){e=e||{},"undefined"==typeof e.singleton&&(e.singleton=d()),"undefined"==typeof e.insertAt&&(e.insertAt="bottom");var n=r(t);return i(n,e),function(t){for(var o=[],s=0;s<n.length;s++){var l=n[s],u=f[l.id];u.refs--,o.push(u)}if(t){var a=r(t);i(a,e)}for(var s=0;s<o.length;s++){var u=o[s];if(0===u.refs){for(var c=0;c<u.parts.length;c++)u.parts[c]();delete f[u.id]}}}};var b=function(){var t=[];return function(e,n){return t[e]=n,t.filter(Boolean).join("\n")}}()},function(t,e,n){var i=n(78);"string"==typeof i&&(i=[[t.id,i,""]]);n(82)(i,{});i.locals&&(t.exports=i.locals)}])}); | ||
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.VueMultiselect=e():t.VueMultiselect=e()}(this,function(){return function(t){function e(i){if(n[i])return n[i].exports;var r=n[i]={exports:{},id:i,loaded:!1};return t[i].call(r.exports,r,r.exports,e),r.loaded=!0,r.exports}var n={};return e.m=t,e.c=n,e.p="/",e(0)}([function(t,e,n){"use strict";function i(t){return t&&t.__esModule?t:{"default":t}}Object.defineProperty(e,"__esModule",{value:!0}),e.deepClone=e.pointerMixin=e.multiselectMixin=e.Multiselect=void 0;var r=n(80),o=i(r),s=n(28),l=i(s),a=n(29),u=i(a),c=n(30),f=i(c);e["default"]=o["default"],e.Multiselect=o["default"],e.multiselectMixin=l["default"],e.pointerMixin=u["default"],e.deepClone=f["default"]},function(t,e){var n=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},function(t,e,n){var i=n(56),r=n(15);t.exports=function(t){return i(r(t))}},function(t,e,n){t.exports=!n(9)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(t,e,n){var i=n(6),r=n(13);t.exports=n(4)?function(t,e,n){return i.f(t,e,r(1,n))}:function(t,e,n){return t[e]=n,t}},function(t,e,n){var i=n(11),r=n(34),o=n(25),s=Object.defineProperty;e.f=n(4)?Object.defineProperty:function(t,e,n){if(i(t),e=o(e,!0),i(n),r)try{return s(t,e,n)}catch(l){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(t[e]=n.value),t}},function(t,e,n){var i=n(23)("wks"),r=n(14),o=n(1).Symbol,s="function"==typeof o,l=t.exports=function(t){return i[t]||(i[t]=s&&o[t]||(s?o:r)("Symbol."+t))};l.store=i},function(t,e){var n=t.exports={version:"2.4.0"};"number"==typeof __e&&(__e=n)},function(t,e){t.exports=function(t){try{return!!t()}catch(e){return!0}}},function(t,e,n){var i=n(39),r=n(16);t.exports=Object.keys||function(t){return i(t,r)}},function(t,e,n){var i=n(12);t.exports=function(t){if(!i(t))throw TypeError(t+" is not an object!");return t}},function(t,e){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e){var n=0,i=Math.random();t.exports=function(t){return"Symbol(".concat(void 0===t?"":t,")_",(++n+i).toString(36))}},function(t,e){t.exports=function(t){if(void 0==t)throw TypeError("Can't call method on "+t);return t}},function(t,e){t.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(t,e,n){var i=n(1),r=n(8),o=n(53),s=n(5),l="prototype",a=function(t,e,n){var u,c,f,p=t&a.F,d=t&a.G,h=t&a.S,m=t&a.P,g=t&a.B,v=t&a.W,b=d?r:r[e]||(r[e]={}),y=b[l],_=d?i:h?i[e]:(i[e]||{})[l];d&&(n=e);for(u in n)c=!p&&_&&void 0!==_[u],c&&u in b||(f=c?_[u]:n[u],b[u]=d&&"function"!=typeof _[u]?n[u]:g&&c?o(f,i):v&&_[u]==f?function(t){var e=function(e,n,i){if(this instanceof t){switch(arguments.length){case 0:return new t;case 1:return new t(e);case 2:return new t(e,n)}return new t(e,n,i)}return t.apply(this,arguments)};return e[l]=t[l],e}(f):m&&"function"==typeof f?o(Function.call,f):f,m&&((b.virtual||(b.virtual={}))[u]=f,t&a.R&&y&&!y[u]&&s(y,u,f)))};a.F=1,a.G=2,a.S=4,a.P=8,a.B=16,a.W=32,a.U=64,a.R=128,t.exports=a},function(t,e){t.exports={}},function(t,e){t.exports=!0},function(t,e){e.f={}.propertyIsEnumerable},function(t,e,n){var i=n(6).f,r=n(2),o=n(7)("toStringTag");t.exports=function(t,e,n){t&&!r(t=n?t:t.prototype,o)&&i(t,o,{configurable:!0,value:e})}},function(t,e,n){var i=n(23)("keys"),r=n(14);t.exports=function(t){return i[t]||(i[t]=r(t))}},function(t,e,n){var i=n(1),r="__core-js_shared__",o=i[r]||(i[r]={});t.exports=function(t){return o[t]||(o[t]={})}},function(t,e){var n=Math.ceil,i=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?i:n)(t)}},function(t,e,n){var i=n(12);t.exports=function(t,e){if(!i(t))return t;var n,r;if(e&&"function"==typeof(n=t.toString)&&!i(r=n.call(t)))return r;if("function"==typeof(n=t.valueOf)&&!i(r=n.call(t)))return r;if(!e&&"function"==typeof(n=t.toString)&&!i(r=n.call(t)))return r;throw TypeError("Can't convert object to primitive value")}},function(t,e,n){var i=n(1),r=n(8),o=n(19),s=n(27),l=n(6).f;t.exports=function(t){var e=r.Symbol||(r.Symbol=o?{}:i.Symbol||{});"_"==t.charAt(0)||t in e||l(e,t,{value:s.f(t)})}},function(t,e,n){e.f=n(7)},function(t,e,n){"use strict";function i(t){return t&&t.__esModule?t:{"default":t}}function r(t,e){if(!t)return!1;var n=t.toString().toLowerCase();return-1!==n.indexOf(e)}var o=n(31),s=i(o),l=n(30),a=i(l);t.exports={data:function(){return{search:"",isOpen:!1,internalValue:this.value||0===this.value?(0,a["default"])(this.value):this.multiple?[]:null}},props:{localSearch:{type:Boolean,"default":!0},options:{type:Array,required:!0},multiple:{type:Boolean,"default":!1},value:{type:null,"default":null},trackBy:{type:String},label:{type:String},searchable:{type:Boolean,"default":!0},clearOnSelect:{type:Boolean,"default":!0},hideSelected:{type:Boolean,"default":!1},placeholder:{type:String,"default":"Select option"},maxHeight:{type:Number,"default":300},allowEmpty:{type:Boolean,"default":!0},resetAfter:{type:Boolean,"default":!1},closeOnSelect:{type:Boolean,"default":!0},customLabel:{type:Function,"default":function(t,e){return e?t[e]:t}},taggable:{type:Boolean,"default":!1},tagPlaceholder:{type:String,"default":"Press enter to create a tag"},max:{type:Number},id:{"default":null}},created:function(){this.searchable&&this.adjustSearch()},computed:{filteredOptions:function(){var t=this,e=this.search||"",n=this.hideSelected?this.options.filter(this.isNotSelected):this.options;return this.localSearch&&(n=this.label?n.filter(function(e){return r(e[t.label],t.search)}):n.filter(function(e){return r(e,t.search)})),this.taggable&&e.length&&!this.isExistingOption(e)&&n.unshift({isTag:!0,label:e}),n},valueKeys:function(){var t=this;return this.trackBy?this.multiple?this.internalValue.map(function(e){return e[t.trackBy]}):this.internalValue[this.trackBy]:this.internalValue},optionKeys:function(){var t=this;return this.label?this.options.map(function(e){return e[t.label].toString().toLowerCase()}):this.options.map(function(t){return t.toString().toLowerCase()})},currentOptionLabel:function(){return this.getOptionLabel(this.internalValue)}},watch:{internalValue:function(){this.resetAfter&&(this.internalValue=null,this.search=""),this.adjustSearch()},search:function(){this.search!==this.currentOptionLabel&&this.$emit("search-change",this.search,this.id)},value:function(){this.internalValue=(0,a["default"])(this.value)}},methods:{updateSearch:function(t){this.search=t.trim().toLowerCase()},isExistingOption:function(t){return this.options?this.optionKeys.indexOf(t)>-1:!1},isSelected:function(t){if(!this.internalValue)return!1;var e=this.trackBy?t[this.trackBy]:t;return this.multiple?this.valueKeys.indexOf(e)>-1:this.valueKeys===e},isNotSelected:function(t){return!this.isSelected(t)},getOptionLabel:function(t){return t||0===t?t.isTag?t.label:this.customLabel(t,this.label)+"":""},select:function(t){if(!this.max||!this.multiple||this.internalValue.length!==this.max)if(t.isTag)this.$emit("tag",t.label,this.id),this.search="";else{if(this.multiple){if(this.isSelected(t))return void this.removeElement(t);this.internalValue.push(t)}else{var e=this.isSelected(t);if(e&&!this.allowEmpty)return;this.internalValue=e?null:t}this.$emit("select",(0,a["default"])(t),this.id),this.$emit("input",(0,a["default"])(this.internalValue),this.id),this.closeOnSelect&&this.deactivate()}},removeElement:function(t){if(this.allowEmpty||!(this.internalValue.length<=1)){var e=this.multiple&&"object"===("undefined"==typeof t?"undefined":(0,s["default"])(t))?this.valueKeys.indexOf(t[this.trackBy]):this.valueKeys.indexOf(t);this.internalValue.splice(e,1),this.$emit("remove",(0,a["default"])(t),this.id),this.$emit("input",(0,a["default"])(this.internalValue),this.id)}},removeLastElement:function(){0===this.search.length&&Array.isArray(this.internalValue)&&this.removeElement(this.internalValue[this.internalValue.length-1])},activate:function(){this.isOpen||(this.isOpen=!0,this.searchable?(this.search="",this.$refs.search.focus()):this.$el.focus(),this.$emit("open",this.id))},deactivate:function(){this.isOpen&&(this.isOpen=!1,this.searchable?(this.$refs.search.blur(),this.adjustSearch()):this.$el.blur(),this.$emit("close",(0,a["default"])(this.internalValue),this.id))},adjustSearch:function(){this.searchable&&this.clearOnSelect&&(this.search=this.multiple?"":this.currentOptionLabel)},toggle:function(){this.isOpen?this.deactivate():this.activate()}}}},function(t,e){"use strict";t.exports={data:function(){return{pointer:0,visibleElements:this.maxHeight/40}},props:{showPointer:{type:Boolean,"default":!0}},computed:{pointerPosition:function(){return 40*this.pointer}},watch:{filteredOptions:function(){this.pointerAdjust()}},methods:{optionHighlight:function(t,e){return{"multiselect__option--highlight":t===this.pointer&&this.showPointer,"multiselect__option--selected":this.isSelected(e)}},addPointerElement:function(){this.filteredOptions.length>0&&this.select(this.filteredOptions[this.pointer]),this.pointerReset()},pointerForward:function(){this.pointer<this.filteredOptions.length-1&&(this.pointer++,this.$refs.list.scrollTop<=this.pointerPosition-40*this.visibleElements&&(this.$refs.list.scrollTop=this.pointerPosition-40*(this.visibleElements-1)))},pointerBackward:function(){this.pointer>0&&(this.pointer--,this.$refs.list.scrollTop>=this.pointerPosition&&(this.$refs.list.scrollTop=this.pointerPosition))},pointerReset:function(){this.closeOnSelect&&(this.pointer=0,this.$refs.list&&(this.$refs.list.scrollTop=0))},pointerAdjust:function(){this.pointer>=this.filteredOptions.length-1&&(this.pointer=this.filteredOptions.length?this.filteredOptions.length-1:0)},pointerSet:function(t){this.pointer=t}}}},function(t,e,n){"use strict";function i(t){return t&&t.__esModule?t:{"default":t}}var r=n(44),o=i(r),s=n(31),l=i(s),a=function u(t){if(Array.isArray(t))return t.map(u);if(t&&"object"===("undefined"==typeof t?"undefined":(0,l["default"])(t))){for(var e={},n=(0,o["default"])(t),i=0,r=n.length;r>i;i++){var s=n[i];e[s]=u(t[s])}return e}return t};t.exports=a},function(t,e,n){"use strict";function i(t){return t&&t.__esModule?t:{"default":t}}e.__esModule=!0;var r=n(46),o=i(r),s=n(45),l=i(s),a="function"==typeof l["default"]&&"symbol"==typeof o["default"]?function(t){return typeof t}:function(t){return t&&"function"==typeof l["default"]&&t.constructor===l["default"]?"symbol":typeof t};e["default"]="function"==typeof l["default"]&&"symbol"===a(o["default"])?function(t){return"undefined"==typeof t?"undefined":a(t)}:function(t){return t&&"function"==typeof l["default"]&&t.constructor===l["default"]?"symbol":"undefined"==typeof t?"undefined":a(t)}},function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e,n){var i=n(12),r=n(1).document,o=i(r)&&i(r.createElement);t.exports=function(t){return o?r.createElement(t):{}}},function(t,e,n){t.exports=!n(4)&&!n(9)(function(){return 7!=Object.defineProperty(n(33)("div"),"a",{get:function(){return 7}}).a})},function(t,e,n){"use strict";var i=n(19),r=n(17),o=n(40),s=n(5),l=n(2),a=n(18),u=n(58),c=n(21),f=n(65),p=n(7)("iterator"),d=!([].keys&&"next"in[].keys()),h="@@iterator",m="keys",g="values",v=function(){return this};t.exports=function(t,e,n,b,y,_,x){u(n,e,b);var w,O,S,k=function(t){if(!d&&t in E)return E[t];switch(t){case m:return function(){return new n(this,t)};case g:return function(){return new n(this,t)}}return function(){return new n(this,t)}},j=e+" Iterator",P=y==g,C=!1,E=t.prototype,L=E[p]||E[h]||y&&E[y],M=L||k(y),T=y?P?k("entries"):M:void 0,A="Array"==e?E.entries||L:L;if(A&&(S=f(A.call(new t)),S!==Object.prototype&&(c(S,j,!0),i||l(S,p)||s(S,p,v))),P&&L&&L.name!==g&&(C=!0,M=function(){return L.call(this)}),i&&!x||!d&&!C&&E[p]||s(E,p,M),a[e]=M,a[j]=v,y)if(w={values:P?M:k(g),keys:_?M:k(m),entries:T},x)for(O in w)O in E||o(E,O,w[O]);else r(r.P+r.F*(d||C),e,w);return w}},function(t,e,n){var i=n(11),r=n(62),o=n(16),s=n(22)("IE_PROTO"),l=function(){},a="prototype",u=function(){var t,e=n(33)("iframe"),i=o.length,r=">";for(e.style.display="none",n(55).appendChild(e),e.src="javascript:",t=e.contentWindow.document,t.open(),t.write("<script>document.F=Object</script"+r),t.close(),u=t.F;i--;)delete u[a][o[i]];return u()};t.exports=Object.create||function(t,e){var n;return null!==t?(l[a]=i(t),n=new l,l[a]=null,n[s]=t):n=u(),void 0===e?n:r(n,e)}},function(t,e,n){var i=n(39),r=n(16).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return i(t,r)}},function(t,e){e.f=Object.getOwnPropertySymbols},function(t,e,n){var i=n(2),r=n(3),o=n(52)(!1),s=n(22)("IE_PROTO");t.exports=function(t,e){var n,l=r(t),a=0,u=[];for(n in l)n!=s&&i(l,n)&&u.push(n);for(;e.length>a;)i(l,n=e[a++])&&(~o(u,n)||u.push(n));return u}},function(t,e,n){t.exports=n(5)},function(t,e,n){var i=n(15);t.exports=function(t){return Object(i(t))}},function(t,e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e["default"]={functional:!0,render:function(t,e){return e.props.optionFunction(t,e.props.option,e.props.label)},props:{optionFunction:{type:Function,required:!0},label:{required:!0},option:{}}}},function(t,e,n){"use strict";function i(t){return t&&t.__esModule?t:{"default":t}}Object.defineProperty(e,"__esModule",{value:!0});var r=n(28),o=i(r),s=n(29),l=i(s),a=n(42),u=i(a);e["default"]={name:"vue-multiselect",components:{MultiselectOption:u["default"]},mixins:[o["default"],l["default"]],props:{selectLabel:{type:String,"default":"Press enter to select"},selectedLabel:{type:String,"default":"Selected"},deselectLabel:{type:String,"default":"Press enter to remove"},showLabels:{type:Boolean,"default":!0},limit:{type:Number,"default":99999},limitText:{type:Function,"default":function(t){return"and "+t+" more"}},loading:{type:Boolean,"default":!1},disabled:{type:Boolean,"default":!1},optionFunction:{type:Function,"default":function(t,e,n){return t("span",{},n)}}},computed:{visibleValue:function(){return this.multiple?this.internalValue.slice(0,this.limit):[]},deselectLabelText:function(){return this.showLabels?this.deselectLabel:""},selectLabelText:function(){return this.showLabels?this.selectLabel:""},selectedLabelText:function(){return this.showLabels?this.selectedLabel:""}}}},function(t,e,n){t.exports={"default":n(47),__esModule:!0}},function(t,e,n){t.exports={"default":n(48),__esModule:!0}},function(t,e,n){t.exports={"default":n(49),__esModule:!0}},function(t,e,n){n(71),t.exports=n(8).Object.keys},function(t,e,n){n(74),n(72),n(75),n(76),t.exports=n(8).Symbol},function(t,e,n){n(73),n(77),t.exports=n(27).f("iterator")},function(t,e){t.exports=function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!");return t}},function(t,e){t.exports=function(){}},function(t,e,n){var i=n(3),r=n(69),o=n(68);t.exports=function(t){return function(e,n,s){var l,a=i(e),u=r(a.length),c=o(s,u);if(t&&n!=n){for(;u>c;)if(l=a[c++],l!=l)return!0}else for(;u>c;c++)if((t||c in a)&&a[c]===n)return t||c||0;return!t&&-1}}},function(t,e,n){var i=n(50);t.exports=function(t,e,n){if(i(t),void 0===e)return t;switch(n){case 1:return function(n){return t.call(e,n)};case 2:return function(n,i){return t.call(e,n,i)};case 3:return function(n,i,r){return t.call(e,n,i,r)}}return function(){return t.apply(e,arguments)}}},function(t,e,n){var i=n(10),r=n(38),o=n(20);t.exports=function(t){var e=i(t),n=r.f;if(n)for(var s,l=n(t),a=o.f,u=0;l.length>u;)a.call(t,s=l[u++])&&e.push(s);return e}},function(t,e,n){t.exports=n(1).document&&document.documentElement},function(t,e,n){var i=n(32);t.exports=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==i(t)?t.split(""):Object(t)}},function(t,e,n){var i=n(32);t.exports=Array.isArray||function(t){return"Array"==i(t)}},function(t,e,n){"use strict";var i=n(36),r=n(13),o=n(21),s={};n(5)(s,n(7)("iterator"),function(){return this}),t.exports=function(t,e,n){t.prototype=i(s,{next:r(1,n)}),o(t,e+" Iterator")}},function(t,e){t.exports=function(t,e){return{value:e,done:!!t}}},function(t,e,n){var i=n(10),r=n(3);t.exports=function(t,e){for(var n,o=r(t),s=i(o),l=s.length,a=0;l>a;)if(o[n=s[a++]]===e)return n}},function(t,e,n){var i=n(14)("meta"),r=n(12),o=n(2),s=n(6).f,l=0,a=Object.isExtensible||function(){return!0},u=!n(9)(function(){return a(Object.preventExtensions({}))}),c=function(t){s(t,i,{value:{i:"O"+ ++l,w:{}}})},f=function(t,e){if(!r(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!o(t,i)){if(!a(t))return"F";if(!e)return"E";c(t)}return t[i].i},p=function(t,e){if(!o(t,i)){if(!a(t))return!0;if(!e)return!1;c(t)}return t[i].w},d=function(t){return u&&h.NEED&&a(t)&&!o(t,i)&&c(t),t},h=t.exports={KEY:i,NEED:!1,fastKey:f,getWeak:p,onFreeze:d}},function(t,e,n){var i=n(6),r=n(11),o=n(10);t.exports=n(4)?Object.defineProperties:function(t,e){r(t);for(var n,s=o(e),l=s.length,a=0;l>a;)i.f(t,n=s[a++],e[n]);return t}},function(t,e,n){var i=n(20),r=n(13),o=n(3),s=n(25),l=n(2),a=n(34),u=Object.getOwnPropertyDescriptor;e.f=n(4)?u:function(t,e){if(t=o(t),e=s(e,!0),a)try{return u(t,e)}catch(n){}return l(t,e)?r(!i.f.call(t,e),t[e]):void 0}},function(t,e,n){var i=n(3),r=n(37).f,o={}.toString,s="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],l=function(t){try{return r(t)}catch(e){return s.slice()}};t.exports.f=function(t){return s&&"[object Window]"==o.call(t)?l(t):r(i(t))}},function(t,e,n){var i=n(2),r=n(41),o=n(22)("IE_PROTO"),s=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=r(t),i(t,o)?t[o]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?s:null}},function(t,e,n){var i=n(17),r=n(8),o=n(9);t.exports=function(t,e){var n=(r.Object||{})[t]||Object[t],s={};s[t]=e(n),i(i.S+i.F*o(function(){n(1)}),"Object",s)}},function(t,e,n){var i=n(24),r=n(15);t.exports=function(t){return function(e,n){var o,s,l=String(r(e)),a=i(n),u=l.length;return 0>a||a>=u?t?"":void 0:(o=l.charCodeAt(a),55296>o||o>56319||a+1===u||(s=l.charCodeAt(a+1))<56320||s>57343?t?l.charAt(a):o:t?l.slice(a,a+2):(o-55296<<10)+(s-56320)+65536)}}},function(t,e,n){var i=n(24),r=Math.max,o=Math.min;t.exports=function(t,e){return t=i(t),0>t?r(t+e,0):o(t,e)}},function(t,e,n){var i=n(24),r=Math.min;t.exports=function(t){return t>0?r(i(t),9007199254740991):0}},function(t,e,n){"use strict";var i=n(51),r=n(59),o=n(18),s=n(3);t.exports=n(35)(Array,"Array",function(t,e){this._t=s(t),this._i=0,this._k=e},function(){var t=this._t,e=this._k,n=this._i++;return!t||n>=t.length?(this._t=void 0,r(1)):"keys"==e?r(0,n):"values"==e?r(0,t[n]):r(0,[n,t[n]])},"values"),o.Arguments=o.Array,i("keys"),i("values"),i("entries")},function(t,e,n){var i=n(41),r=n(10);n(66)("keys",function(){return function(t){return r(i(t))}})},function(t,e){},function(t,e,n){"use strict";var i=n(67)(!0);n(35)(String,"String",function(t){this._t=String(t),this._i=0},function(){var t,e=this._t,n=this._i;return n>=e.length?{value:void 0,done:!0}:(t=i(e,n),this._i+=t.length,{value:t,done:!1})})},function(t,e,n){"use strict";var i=n(1),r=n(2),o=n(4),s=n(17),l=n(40),a=n(61).KEY,u=n(9),c=n(23),f=n(21),p=n(14),d=n(7),h=n(27),m=n(26),g=n(60),v=n(54),b=n(57),y=n(11),_=n(3),x=n(25),w=n(13),O=n(36),S=n(64),k=n(63),j=n(6),P=n(10),C=k.f,E=j.f,L=S.f,M=i.Symbol,T=i.JSON,A=T&&T.stringify,B="prototype",F=d("_hidden"),V=d("toPrimitive"),N={}.propertyIsEnumerable,D=c("symbol-registry"),$=c("symbols"),R=c("op-symbols"),I=Object[B],z="function"==typeof M,K=i.QObject,H=!K||!K[B]||!K[B].findChild,W=o&&u(function(){return 7!=O(E({},"a",{get:function(){return E(this,"a",{value:7}).a}})).a})?function(t,e,n){var i=C(I,e);i&&delete I[e],E(t,e,n),i&&t!==I&&E(I,e,i)}:E,J=function(t){var e=$[t]=O(M[B]);return e._k=t,e},q=z&&"symbol"==typeof M.iterator?function(t){return"symbol"==typeof t}:function(t){return t instanceof M},U=function(t,e,n){return t===I&&U(R,e,n),y(t),e=x(e,!0),y(n),r($,e)?(n.enumerable?(r(t,F)&&t[F][e]&&(t[F][e]=!1),n=O(n,{enumerable:w(0,!1)})):(r(t,F)||E(t,F,w(1,{})),t[F][e]=!0),W(t,e,n)):E(t,e,n)},G=function(t,e){y(t);for(var n,i=v(e=_(e)),r=0,o=i.length;o>r;)U(t,n=i[r++],e[n]);return t},Y=function(t,e){return void 0===e?O(t):G(O(t),e)},Q=function(t){var e=N.call(this,t=x(t,!0));return this===I&&r($,t)&&!r(R,t)?!1:e||!r(this,t)||!r($,t)||r(this,F)&&this[F][t]?e:!0},X=function(t,e){if(t=_(t),e=x(e,!0),t!==I||!r($,e)||r(R,e)){var n=C(t,e);return!n||!r($,e)||r(t,F)&&t[F][e]||(n.enumerable=!0),n}},Z=function(t){for(var e,n=L(_(t)),i=[],o=0;n.length>o;)r($,e=n[o++])||e==F||e==a||i.push(e);return i},tt=function(t){for(var e,n=t===I,i=L(n?R:_(t)),o=[],s=0;i.length>s;)r($,e=i[s++])&&(n?r(I,e):!0)&&o.push($[e]);return o};z||(M=function(){if(this instanceof M)throw TypeError("Symbol is not a constructor!");var t=p(arguments.length>0?arguments[0]:void 0),e=function(n){this===I&&e.call(R,n),r(this,F)&&r(this[F],t)&&(this[F][t]=!1),W(this,t,w(1,n))};return o&&H&&W(I,t,{configurable:!0,set:e}),J(t)},l(M[B],"toString",function(){return this._k}),k.f=X,j.f=U,n(37).f=S.f=Z,n(20).f=Q,n(38).f=tt,o&&!n(19)&&l(I,"propertyIsEnumerable",Q,!0),h.f=function(t){return J(d(t))}),s(s.G+s.W+s.F*!z,{Symbol:M});for(var et="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),nt=0;et.length>nt;)d(et[nt++]);for(var et=P(d.store),nt=0;et.length>nt;)m(et[nt++]);s(s.S+s.F*!z,"Symbol",{"for":function(t){return r(D,t+="")?D[t]:D[t]=M(t)},keyFor:function(t){if(q(t))return g(D,t);throw TypeError(t+" is not a symbol!")},useSetter:function(){H=!0},useSimple:function(){H=!1}}),s(s.S+s.F*!z,"Object",{create:Y,defineProperty:U,defineProperties:G,getOwnPropertyDescriptor:X,getOwnPropertyNames:Z,getOwnPropertySymbols:tt}),T&&s(s.S+s.F*(!z||u(function(){var t=M();return"[null]"!=A([t])||"{}"!=A({a:t})||"{}"!=A(Object(t))})),"JSON",{stringify:function(t){if(void 0!==t&&!q(t)){for(var e,n,i=[t],r=1;arguments.length>r;)i.push(arguments[r++]);return e=i[1],"function"==typeof e&&(n=e),!n&&b(e)||(e=function(t,e){return n&&(e=n.call(this,t,e)),q(e)?void 0:e}),i[1]=e,A.apply(T,i)}}}),M[B][V]||n(5)(M[B],V,M[B].valueOf),f(M,"Symbol"),f(Math,"Math",!0),f(i.JSON,"JSON",!0)},function(t,e,n){n(26)("asyncIterator")},function(t,e,n){n(26)("observable")},function(t,e,n){n(70);for(var i=n(1),r=n(5),o=n(18),s=n(7)("toStringTag"),l=["NodeList","DOMTokenList","MediaList","StyleSheetList","CSSRuleList"],a=0;5>a;a++){var u=l[a],c=i[u],f=c&&c.prototype;f&&!f[s]&&r(f,s,u),o[u]=o.Array}},function(t,e,n){e=t.exports=n(79)(),e.push([t.id,'fieldset[disabled] .multiselect{pointer-events:none}.multiselect__spinner{position:absolute;right:1px;top:1px;width:48px;height:35px;background:#fff;display:block}.multiselect__spinner:after,.multiselect__spinner:before{position:absolute;content:"";top:50%;left:50%;margin:-8px 0 0 -8px;width:16px;height:16px;border-radius:100%;border-color:#41b883 transparent transparent;border-style:solid;border-width:2px;box-shadow:0 0 0 1px transparent}.multiselect__spinner:before{animation:spinning 2.4s cubic-bezier(.41,.26,.2,.62);animation-iteration-count:infinite}.multiselect__spinner:after{animation:spinning 2.4s cubic-bezier(.51,.09,.21,.8);animation-iteration-count:infinite},.multiselect__loading-enter-active,.multiselect__loading-leave-active{transition:opacity .4s ease-in-out;opacity:1}.multiselect__loading-enter,.multiselect__loading-leave-active{opacity:0}.multiselect,.multiselect__input,.multiselect__single{font-family:inherit;font-size:14px}.multiselect{box-sizing:content-box;display:block;position:relative;width:100%;min-height:40px;text-align:left;color:#35495e}.multiselect *{box-sizing:border-box}.multiselect:focus{outline:none}.multiselect--disabled{pointer-events:none;opacity:.6}.multiselect--active{z-index:50}.multiselect--active .multiselect__current,.multiselect--active .multiselect__input,.multiselect--active .multiselect__tags{border-bottom-left-radius:0;border-bottom-right-radius:0}.multiselect--active .multiselect__select{transform:rotate(180deg)}.multiselect__input,.multiselect__single{position:relative;display:inline-block;min-height:20px;line-height:20px;border:none;border-radius:5px;background:#fff;padding:1px 0 0 5px;width:100%;transition:border .1s ease;box-sizing:border-box;margin-bottom:8px}.multiselect__tag~.multiselect__input{width:auto}.multiselect__input:hover,.multiselect__single:hover{border-color:#cfcfcf}.multiselect__input:focus,.multiselect__single:focus{border-color:#a8a8a8;outline:none}.multiselect__single{padding-left:6px;margin-bottom:8px}.multiselect__tags{min-height:40px;display:block;padding:8px 40px 0 8px;border-radius:5px;border:1px solid #e8e8e8;background:#fff}.multiselect__tag{position:relative;display:inline-block;padding:4px 26px 4px 10px;border-radius:5px;margin-right:10px;color:#fff;line-height:1;background:#41b883;margin-bottom:8px;white-space:nowrap}.multiselect__tag-icon{cursor:pointer;margin-left:7px;position:absolute;right:0;top:0;bottom:0;font-weight:700;font-style:initial;width:22px;text-align:center;line-height:22px;transition:all .2s ease;border-radius:5px}.multiselect__tag-icon:after{content:"\\D7";color:#266d4d;font-size:14px}.multiselect__tag-icon:focus,.multiselect__tag-icon:hover{background:#369a6e}.multiselect__tag-icon:focus:after,.multiselect__tag-icon:hover:after{color:#fff}.multiselect__current{min-height:40px;overflow:hidden;padding:8px 12px 0;padding-right:30px;white-space:nowrap;border-radius:5px;border:1px solid #e8e8e8}.multiselect__current,.multiselect__select{line-height:16px;box-sizing:border-box;display:block;margin:0;text-decoration:none;cursor:pointer}.multiselect__select{position:absolute;width:40px;height:38px;right:1px;top:1px;padding:4px 8px;text-align:center;transition:transform .2s ease}.multiselect__select:before{position:relative;right:0;top:65%;color:#999;margin-top:4px;border-style:solid;border-width:5px 5px 0;border-color:#999 transparent transparent;content:""}.multiselect__placeholder{color:#adadad;display:inline-block;margin-bottom:10px;padding-top:2px}.multiselect--active .multiselect__placeholder{display:none}.multiselect__content{position:absolute;list-style:none;display:block;background:#fff;width:100%;max-height:240px;overflow:auto;padding:0;margin:0;border:1px solid #e8e8e8;border-top:none;border-bottom-left-radius:5px;border-bottom-right-radius:5px;z-index:50}.multiselect__content::webkit-scrollbar{display:none}.multiselect__option{display:block;padding:12px;min-height:40px;line-height:16px;text-decoration:none;text-transform:none;vertical-align:middle;position:relative;cursor:pointer;white-space:nowrap}.multiselect__option:after{top:0;right:0;position:absolute;line-height:40px;padding-right:12px;padding-left:20px}.multiselect__option--highlight{background:#41b883;outline:none;color:#fff}.multiselect__option--highlight:after{content:attr(data-select);background:#41b883;color:#fff}.multiselect__option--selected{background:#f3f3f3;color:#35495e;font-weight:700}.multiselect__option--selected:after{content:attr(data-selected);color:silver}.multiselect__option--selected.multiselect__option--highlight{background:#ff6a6a;color:#fff}.multiselect__option--selected.multiselect__option--highlight:after{background:#ff6a6a;content:attr(data-deselect);color:#fff}.multiselect--disabled{background:#ededed;pointer-events:none}.multiselect--disabled .multiselect__current,.multiselect--disabled .multiselect__select,.multiselect__option--disabled{background:#ededed;color:#a6a6a6}.multiselect__option--disabled{cursor:text;pointer-events:none}.multiselect__option--disabled:visited{color:#a6a6a6}.multiselect__option--disabled:focus,.multiselect__option--disabled:hover{background:#3dad7b}.multiselect-enter-active,.multiselect-leave-active{transition:all .3s ease}.multiselect-enter,.multiselect-leave-active{opacity:0;max-height:0!important}@keyframes spinning{0%{transform:rotate(0)}to{transform:rotate(2turn)}}',""])},function(t,e){t.exports=function(){var t=[];return t.toString=function(){for(var t=[],e=0;e<this.length;e++){var n=this[e];n[2]?t.push("@media "+n[2]+"{"+n[1]+"}"):t.push(n[1])}return t.join("")},t.i=function(e,n){"string"==typeof e&&(e=[[null,e,""]]);for(var i={},r=0;r<this.length;r++){var o=this[r][0];"number"==typeof o&&(i[o]=!0)}for(r=0;r<e.length;r++){var s=e[r];"number"==typeof s[0]&&i[s[0]]||(n&&!s[2]?s[2]=n:n&&(s[2]="("+s[2]+") and ("+n+")"),t.push(s))}},t}},function(t,e,n){var i,r;n(83),i=n(43);var o=n(81);r=i=i||{},"object"!=typeof i["default"]&&"function"!=typeof i["default"]||(r=i=i["default"]),"function"==typeof r&&(r=r.options),r.render=o.render,r.staticRenderFns=o.staticRenderFns,t.exports=i},function(module,exports){module.exports={render:function(){with(this)return _h("div",{staticClass:"multiselect","class":{"multiselect--active":isOpen,"multiselect--disabled":disabled},attrs:{tabindex:"0"},on:{focus:function(t){activate()},blur:function(t){searchable?!1:deactivate()},keydown:[function(t){40===t.keyCode&&t.target===t.currentTarget&&(t.preventDefault(),pointerForward())},function(t){38===t.keyCode&&t.target===t.currentTarget&&(t.preventDefault(),pointerBackward())},function(t){13===t.keyCode&&(t.stopPropagation(),t.preventDefault(),t.target===t.currentTarget&&addPointerElement())},function(t){9===t.keyCode&&(t.stopPropagation(),t.preventDefault(),t.target===t.currentTarget&&addPointerElement())}],keyup:function(t){27===t.keyCode&&deactivate()}}},[_h("div",{staticClass:"multiselect__select",on:{mousedown:function(t){t.preventDefault(),toggle()}}})," ",_h("div",{ref:"tags",staticClass:"multiselect__tags"},[_l(visibleValue,function(t){return _h("span",{staticClass:"multiselect__tag",attrs:{onmousedown:"event.preventDefault()"}},[_h("span",{domProps:{textContent:_s(getOptionLabel(t))}})," ",_h("i",{staticClass:"multiselect__tag-icon",attrs:{"aria-hidden":"true",tabindex:"1"},on:{keydown:function(e){13===e.keyCode&&(e.preventDefault(),removeElement(t))},mousedown:function(e){e.preventDefault(),removeElement(t)}}})])})," ",internalValue&&internalValue.length>limit?[_h("strong",{domProps:{textContent:_s(limitText(internalValue.length-limit))}})]:_e()," ",_h("transition",{attrs:{name:"multiselect__loading"}},[_h("div",{directives:[{name:"show",value:loading,expression:"loading"}],staticClass:"multiselect__spinner"})])," ",searchable?_h("input",{ref:"search",staticClass:"multiselect__input",attrs:{name:"search",type:"text",autocomplete:"off",placeholder:placeholder,disabled:disabled},domProps:{value:search},on:{input:function(t){updateSearch(t.target.value)},focus:function(t){t.preventDefault(),activate()},blur:function(t){t.preventDefault(),deactivate()},keyup:[function(t){27===t.keyCode&&deactivate()},function(t){40===t.keyCode&&pointerForward()},function(t){38===t.keyCode&&pointerBackward()}],keydown:[function(t){13===t.keyCode&&(t.stopPropagation(),t.preventDefault(),t.target===t.currentTarget&&addPointerElement())},function(t){9===t.keyCode&&(t.stopPropagation(),t.preventDefault(),t.target===t.currentTarget&&addPointerElement())},function(t){8!==t.keyCode&&46!==t.keyCode||removeLastElement()}]}}):_e()," ",searchable||multiple?_e():_h("span",{staticClass:"multiselect__single",domProps:{textContent:_s(currentOptionLabel||placeholder)}})])," ",_h("transition",{attrs:{name:"multiselect"}},[_h("ul",{directives:[{name:"show",value:isOpen,expression:"isOpen"}],ref:"list",staticClass:"multiselect__content",style:{maxHeight:maxHeight+"px"}},[_t("beforeList")," ",multiple&&max===internalValue.length?_h("li",[_h("span",{staticClass:"multiselect__option"},[_t("maxElements",["Maximum of "+_s(max)+" options selected. First remove a selected option to select another."])])]):_e()," ",!max||internalValue.length<max?[_l(filteredOptions,function(t,e){ | ||
return _h("li",{key:e},[_h("span",{staticClass:"multiselect__option","class":optionHighlight(e,t),attrs:{tabindex:"0","data-select":t.isTag?tagPlaceholder:selectLabelText,"data-selected":selectedLabelText,"data-deselect":deselectLabelText},on:{mousedown:function(e){e.preventDefault(),select(t)},mouseenter:function(t){pointerSet(e)}}},[_h("multiselect-option",{attrs:{"option-function":optionFunction,label:getOptionLabel(t),option:t}})])])})]:_e()," ",_h("li",{directives:[{name:"show",value:0===filteredOptions.length&&search,expression:"filteredOptions.length === 0 && search"}]},[_h("span",{staticClass:"multiselect__option"},[_t("noResult",["No elements found. Consider changing the search query."])])])," ",_t("afterList")])])])},staticRenderFns:[]}},function(t,e,n){function i(t,e){for(var n=0;n<t.length;n++){var i=t[n],r=f[i.id];if(r){r.refs++;for(var o=0;o<r.parts.length;o++)r.parts[o](i.parts[o]);for(;o<i.parts.length;o++)r.parts.push(a(i.parts[o],e))}else{for(var s=[],o=0;o<i.parts.length;o++)s.push(a(i.parts[o],e));f[i.id]={id:i.id,refs:1,parts:s}}}}function r(t){for(var e=[],n={},i=0;i<t.length;i++){var r=t[i],o=r[0],s=r[1],l=r[2],a=r[3],u={css:s,media:l,sourceMap:a};n[o]?n[o].parts.push(u):e.push(n[o]={id:o,parts:[u]})}return e}function o(t,e){var n=h(),i=v[v.length-1];if("top"===t.insertAt)i?i.nextSibling?n.insertBefore(e,i.nextSibling):n.appendChild(e):n.insertBefore(e,n.firstChild),v.push(e);else{if("bottom"!==t.insertAt)throw new Error("Invalid value for parameter 'insertAt'. Must be 'top' or 'bottom'.");n.appendChild(e)}}function s(t){t.parentNode.removeChild(t);var e=v.indexOf(t);e>=0&&v.splice(e,1)}function l(t){var e=document.createElement("style");return e.type="text/css",o(t,e),e}function a(t,e){var n,i,r;if(e.singleton){var o=g++;n=m||(m=l(e)),i=u.bind(null,n,o,!1),r=u.bind(null,n,o,!0)}else n=l(e),i=c.bind(null,n),r=function(){s(n)};return i(t),function(e){if(e){if(e.css===t.css&&e.media===t.media&&e.sourceMap===t.sourceMap)return;i(t=e)}else r()}}function u(t,e,n,i){var r=n?"":i.css;if(t.styleSheet)t.styleSheet.cssText=b(e,r);else{var o=document.createTextNode(r),s=t.childNodes;s[e]&&t.removeChild(s[e]),s.length?t.insertBefore(o,s[e]):t.appendChild(o)}}function c(t,e){var n=e.css,i=e.media,r=e.sourceMap;if(i&&t.setAttribute("media",i),r&&(n+="\n/*# sourceURL="+r.sources[0]+" */",n+="\n/*# sourceMappingURL=data:application/json;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(r))))+" */"),t.styleSheet)t.styleSheet.cssText=n;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(n))}}var f={},p=function(t){var e;return function(){return"undefined"==typeof e&&(e=t.apply(this,arguments)),e}},d=p(function(){return/msie [6-9]\b/.test(window.navigator.userAgent.toLowerCase())}),h=p(function(){return document.head||document.getElementsByTagName("head")[0]}),m=null,g=0,v=[];t.exports=function(t,e){e=e||{},"undefined"==typeof e.singleton&&(e.singleton=d()),"undefined"==typeof e.insertAt&&(e.insertAt="bottom");var n=r(t);return i(n,e),function(t){for(var o=[],s=0;s<n.length;s++){var l=n[s],a=f[l.id];a.refs--,o.push(a)}if(t){var u=r(t);i(u,e)}for(var s=0;s<o.length;s++){var a=o[s];if(0===a.refs){for(var c=0;c<a.parts.length;c++)a.parts[c]();delete f[a.id]}}}};var b=function(){var t=[];return function(e,n){return t[e]=n,t.filter(Boolean).join("\n")}}()},function(t,e,n){var i=n(78);"string"==typeof i&&(i=[[t.id,i,""]]);n(82)(i,{});i.locals&&(t.exports=i.locals)}])}); |
{ | ||
"name": "vue-multiselect", | ||
"version": "2.0.0-beta.6", | ||
"version": "2.0.0-beta.7", | ||
"description": "Multiselect component for vue.js", | ||
@@ -5,0 +5,0 @@ "author": "Damian Dulisz <damian.dulisz@monterail.com>", |
@@ -1,3 +0,3 @@ | ||
# vue-multiselect ![Build Status](https://circleci.com/gh/monterail/vue-multiselect/tree/master.svg?style=shield&circle-token=5c931ff28fd12587610f835472becdd514d09cef) | ||
Probably the most complete *selecting* solution for Vue.js, without jQuery. | ||
# vue-multiselect ![Build Status](https://circleci.com/gh/monterail/vue-multiselect/tree/2.0.svg?style=shield&circle-token=5c931ff28fd12587610f835472becdd514d09cef) | ||
Probably the most complete *selecting* solution for Vue.js 2.0, without jQuery. | ||
@@ -14,2 +14,3 @@ ### Features & characteristics: | ||
* Basic component and support for custom components | ||
* V-model support | ||
* Vuex support | ||
@@ -20,6 +21,2 @@ * Async options support | ||
## Demo & docs | ||
[http://monterail.github.io/vue-multiselect/](http://monterail.github.io/vue-multiselect/) | ||
## Install & basic usage | ||
@@ -35,5 +32,4 @@ | ||
<multiselect | ||
:selected="selected" | ||
:options="options" | ||
@update="updateSelected"> | ||
v-model="selected" | ||
:options="options"> | ||
</multiselect> | ||
@@ -53,7 +49,2 @@ </div> | ||
} | ||
}, | ||
methods: { | ||
updateSelected (newSelected) { | ||
this.selected = newSelected | ||
} | ||
} | ||
@@ -90,11 +81,11 @@ } | ||
multiselect( | ||
:value="value", | ||
:options="source", | ||
:selected="value", | ||
:searchable="false", | ||
:close-on-select="false", | ||
:allow-empty="false", | ||
@update="updateSelected", | ||
@input="updateSelected", | ||
label="name", | ||
placeholder="Select one", | ||
key="name" | ||
track-by="name" | ||
) | ||
@@ -106,10 +97,9 @@ ``` | ||
multiselect( | ||
v-model="value", | ||
:options="source", | ||
:selected="value", | ||
:close-on-select="true", | ||
:clear-on-select="false", | ||
@update="updateValue", | ||
placeholder="Select one", | ||
label="name", | ||
key="name" | ||
track-by="name" | ||
) | ||
@@ -121,10 +111,9 @@ ``` | ||
multiselect( | ||
v-model="multiValue", | ||
:options="source", | ||
:selected="multiValue", | ||
:multiple="true", | ||
:close-on-select="true", | ||
@update="updateMultiValue", | ||
placeholder="Pick some", | ||
label="name", | ||
key="name" | ||
track-by="name" | ||
) | ||
@@ -137,12 +126,11 @@ ``` | ||
multiselect( | ||
v-model="taggingSelected", | ||
:options="taggingOptions", | ||
:selected="taggingSelected", | ||
:multiple="true", | ||
:taggable="true", | ||
@tag="addTag", | ||
@update="updateSelectedTagging", | ||
tag-placeholder="Add this as new tag", | ||
placeholder="Type to search or add tag", | ||
label="name", | ||
key="code" | ||
track-by="code" | ||
) | ||
@@ -166,4 +154,4 @@ ``` | ||
multiselect( | ||
v-model="selectedCountries", | ||
:options="countries", | ||
:selected="selectedCountries", | ||
:multiple="multiple", | ||
@@ -174,3 +162,3 @@ :searchable="searchable", | ||
label="name" | ||
key="code" | ||
track-by="code" | ||
) | ||
@@ -218,3 +206,3 @@ span(slot="noResult"). | ||
*/ | ||
selected: {}, | ||
value: {}, | ||
/** | ||
@@ -225,3 +213,3 @@ * Key to compare objects | ||
*/ | ||
key: { | ||
track-by: { | ||
type: String, | ||
@@ -228,0 +216,0 @@ default: false |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
75139
0
679
451