{"version":3,"file":"tom-select.base.js","sources":["../../src/contrib/microevent.ts","../../src/contrib/microplugin.ts","../../node_modules/@orchidjs/sifter/lib/diacritics.ts","../../node_modules/@orchidjs/sifter/lib/utils.ts","../../node_modules/@orchidjs/sifter/lib/sifter.ts","../../src/vanilla.ts","../../src/contrib/highlight.ts","../../src/constants.ts","../../src/defaults.ts","../../src/utils.ts","../../src/getSettings.ts","../../src/tom-select.ts"],"sourcesContent":["/**\n * MicroEvent - to make any js object an event emitter\n *\n * - pure javascript - server compatible, browser compatible\n * - dont rely on the browser doms\n * - super simple - you get it immediatly, no mistery, no magic involved\n *\n * @author Jerome Etienne (https://github.com/jeromeetienne)\n */\n\ntype TCallback = (...args:any) => any;\n\n/**\n * Execute callback for each event in space separated list of event names\n *\n */\nfunction forEvents(events:string,callback:(event:string)=>any){\n\tevents.split(/\\s+/).forEach((event) =>{\n\t\tcallback(event);\n\t});\n}\n\nexport default class MicroEvent{\n\n\tpublic _events: {[key:string]:TCallback[]};\n\n\tconstructor(){\n\t\tthis._events = {};\n\t}\n\n\ton(events:string, fct:TCallback){\n\t\tforEvents(events,(event) => {\n\t\t\tthis._events[event] = this._events[event] || [];\n\t\t\tthis._events[event].push(fct);\n\t\t});\n\t}\n\n\toff(events:string, fct:TCallback){\n\t\tvar n = arguments.length;\n\t\tif( n === 0 ){\n\t\t\tthis._events = {};\n\t\t\treturn;\n\t\t}\n\n\t\tforEvents(events,(event) => {\n\n\t\t\tif (n === 1) return delete this._events[event];\n\n\t\t\tif (event in this._events === false) return;\n\t\t\tthis._events[event].splice(this._events[event].indexOf(fct), 1);\n\t\t});\n\t}\n\n\ttrigger(events:string, ...args:any){\n\t\tvar self = this;\n\n\t\tforEvents(events,(event) => {\n\t\t\tif(event in self._events === false) return;\n\t\t\tfor( let fct of self._events[event] ){\n\t\t\t\tfct.apply(self, args );\n\t\t\t}\n\t\t});\n\t}\n};\n","/**\n * microplugin.js\n * Copyright (c) 2013 Brian Reavis & contributors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this\n * file except in compliance with the License. You may obtain a copy of the License at:\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF\n * ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n *\n * @author Brian Reavis <brian@thirdroute.com>\n */\n\ntype TSettings = {\n\t[key:string]:any\n}\n\ntype TPlugins = {\n\tnames: string[],\n\tsettings: TSettings,\n\trequested: {[key:string]:boolean},\n\tloaded: {[key:string]:any}\n};\n\nexport type TPluginItem = {name:string,options:{}};\nexport type TPluginHash = {[key:string]:{}};\n\n\n\n\nexport default function MicroPlugin(Interface: any ){\n\n\tInterface.plugins = {};\n\n\treturn class extends Interface{\n\n\t\tpublic plugins:TPlugins = {\n\t\t\tnames     : [],\n\t\t\tsettings  : {},\n\t\t\trequested : {},\n\t\t\tloaded    : {}\n\t\t};\n\n\t\t/**\n\t\t * Registers a plugin.\n\t\t *\n\t\t * @param {function} fn\n\t\t */\n\t\tstatic define(name:string, fn:(this:any,settings:TSettings)=>any){\n\t\t\tInterface.plugins[name] = {\n\t\t\t\t'name' : name,\n\t\t\t\t'fn'   : fn\n\t\t\t};\n\t\t}\n\n\n\t\t/**\n\t\t * Initializes the listed plugins (with options).\n\t\t * Acceptable formats:\n\t\t *\n\t\t * List (without options):\n\t\t *   ['a', 'b', 'c']\n\t\t *\n\t\t * List (with options):\n\t\t *   [{'name': 'a', options: {}}, {'name': 'b', options: {}}]\n\t\t *\n\t\t * Hash (with options):\n\t\t *   {'a': { ... }, 'b': { ... }, 'c': { ... }}\n\t\t *\n\t\t * @param {array|object} plugins\n\t\t */\n\t\tinitializePlugins(plugins:string[]|TPluginItem[]|TPluginHash) {\n\t\t\tvar key, name;\n\t\t\tconst self  = this;\n\t\t\tconst queue:string[] = [];\n\n\t\t\tif (Array.isArray(plugins)) {\n\t\t\t\tplugins.forEach((plugin:string|TPluginItem)=>{\n\t\t\t\t\tif (typeof plugin === 'string') {\n\t\t\t\t\t\tqueue.push(plugin);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tself.plugins.settings[plugin.name] = plugin.options;\n\t\t\t\t\t\tqueue.push(plugin.name);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t} else if (plugins) {\n\t\t\t\tfor (key in plugins) {\n\t\t\t\t\tif (plugins.hasOwnProperty(key)) {\n\t\t\t\t\t\tself.plugins.settings[key] = plugins[key];\n\t\t\t\t\t\tqueue.push(key);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\twhile( name = queue.shift() ){\n\t\t\t\tself.require(name);\n\t\t\t}\n\t\t}\n\n\t\tloadPlugin(name:string) {\n\t\t\tvar self    = this;\n\t\t\tvar plugins = self.plugins;\n\t\t\tvar plugin  = Interface.plugins[name];\n\n\t\t\tif (!Interface.plugins.hasOwnProperty(name)) {\n\t\t\t\tthrow new Error('Unable to find \"' +  name + '\" plugin');\n\t\t\t}\n\n\t\t\tplugins.requested[name] = true;\n\t\t\tplugins.loaded[name] = plugin.fn.apply(self, [self.plugins.settings[name] || {}]);\n\t\t\tplugins.names.push(name);\n\t\t}\n\n\t\t/**\n\t\t * Initializes a plugin.\n\t\t *\n\t\t */\n\t\trequire(name:string) {\n\t\t\tvar self = this;\n\t\t\tvar plugins = self.plugins;\n\n\t\t\tif (!self.plugins.loaded.hasOwnProperty(name)) {\n\t\t\t\tif (plugins.requested[name]) {\n\t\t\t\t\tthrow new Error('Plugin has circular dependency (\"' + name + '\")');\n\t\t\t\t}\n\t\t\t\tself.loadPlugin(name);\n\t\t\t}\n\n\t\t\treturn plugins.loaded[name];\n\t\t}\n\n\t};\n\n}\n","\n// @ts-ignore TS2691 \"An import path cannot end with a '.ts' extension\"\nimport { escape_regex } from './utils.ts';\n\ntype TDiacraticList = {[key:string]:string};\n\n// https://github.com/andrewrk/node-diacritics/blob/master/index.js\n\nvar latin_pat:RegExp;\nconst accent_pat = '[\\u0300-\\u036F\\u{b7}\\u{2be}]'; // \\u{2bc}\nconst accent_reg = new RegExp(accent_pat,'gu');\nvar diacritic_patterns:TDiacraticList;\n\nconst latin_convert:TDiacraticList = {\n\t'æ': 'ae',\n\t'ⱥ': 'a',\n\t'ø': 'o',\n};\n\nconst convert_pat = new RegExp(Object.keys(latin_convert).join('|'),'gu');\n\nconst code_points:[[number,number]] = [[ 0, 65535 ]];\n\n/**\n * Remove accents\n * via https://github.com/krisk/Fuse/issues/133#issuecomment-318692703\n *\n */\nexport const asciifold = (str:string):string => {\n\treturn str\n\t\t.normalize('NFKD')\n\t\t.replace(accent_reg, '')\n\t\t.toLowerCase()\n\t\t.replace(convert_pat,function(foreignletter) {\n\t\t\treturn latin_convert[foreignletter];\n\t\t});\n};\n\n/**\n * Convert array of strings to a regular expression\n *\tex ['ab','a'] => (?:ab|a)\n * \tex ['a','b'] => [ab]\n *\n */\nexport const arrayToPattern = (chars:string[],glue:string='|'):string =>{\n\n\tif( chars.length == 1 ){\n\t\treturn chars[0];\n\t}\n\n\tvar longest = 1;\n\tchars.forEach((a)=>{longest = Math.max(longest,a.length)});\n\n\tif( longest == 1 ){\n\t\treturn '['+chars.join('')+']';\n\t}\n\n\treturn '(?:'+chars.join(glue)+')';\n};\n\nexport const escapeToPattern = (chars:string[]):string =>{\n\tconst escaped = chars.map((diacritic) => escape_regex(diacritic));\n\treturn arrayToPattern(escaped);\n};\n\n/**\n * Get all possible combinations of substrings that add up to the given string\n * https://stackoverflow.com/questions/30169587/find-all-the-combination-of-substrings-that-add-up-to-the-given-string\n *\n */\nexport const allSubstrings = (input:string):string[][] => {\n\n    if( input.length === 1) return [[input]];\n\n    var result:string[][] = [];\n    allSubstrings(input.substring(1)).forEach(function(subresult) {\n        var tmp = subresult.slice(0);\n        tmp[0] = input.charAt(0) + tmp[0];\n        result.push(tmp);\n\n        tmp = subresult.slice(0);\n        tmp.unshift(input.charAt(0));\n        result.push(tmp);\n    });\n\n    return result;\n}\n\n/**\n * Generate a list of diacritics from the list of code points\n *\n */\nexport const generateDiacritics = (code_points:[[number,number]]):TDiacraticList => {\n\n\tvar diacritics:{[key:string]:string[]} = {};\n\tcode_points.forEach((code_range)=>{\n\n\t\tfor(let i = code_range[0]; i <= code_range[1]; i++){\n\n\t\t\tlet diacritic\t= String.fromCharCode(i);\n\t\t\tlet\tlatin\t\t= asciifold(diacritic);\n\n\t\t\tif( latin == diacritic.toLowerCase() ){\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// skip when latin is a string longer than 3 characters long\n\t\t\t// bc the resulting regex patterns will be long\n\t\t\t// eg:\n\t\t\t// latin صلى الله عليه وسلم length 18 code point 65018\n\t\t\t// latin جل جلاله length 8 code point 65019\n\t\t\tif( latin.length > 3 ){\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tif( !(latin in diacritics) ){\n\t\t\t\tdiacritics[latin] = [latin];\n\t\t\t}\n\n\t\t\tvar patt = new RegExp( escapeToPattern(diacritics[latin]),'iu');\n\t\t\tif( diacritic.match(patt) ){\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tdiacritics[latin].push(diacritic);\n\t\t}\n\t});\n\n\t// filter out if there's only one character in the list\n\tlet latin_chars = Object.keys(diacritics);\n\tfor( let i = 0; i < latin_chars.length; i++){\n\t\tconst latin = latin_chars[i];\n\t\tif( diacritics[latin].length < 2 ){\n\t\t\tdelete diacritics[latin];\n\t\t}\n\t}\n\n\n\t// latin character pattern\n\t// match longer substrings first\n\tlatin_chars\t\t= Object.keys(diacritics).sort((a, b) => b.length - a.length );\n\tlatin_pat\t\t= new RegExp('('+ escapeToPattern(latin_chars) + accent_pat + '*)','gu');\n\n\n\t// build diacritic patterns\n\t// ae needs:\n\t//\t(?:(?:ae|Æ|Ǽ|Ǣ)|(?:A|Ⓐ|Ａ...)(?:E|ɛ|Ⓔ...))\n\tvar diacritic_patterns:TDiacraticList = {};\n\tlatin_chars.sort((a,b) => a.length -b.length).forEach((latin)=>{\n\n\t\tvar substrings\t= allSubstrings(latin);\n\t\tvar pattern = substrings.map((sub_pat)=>{\n\n\t\t\tsub_pat = sub_pat.map((l)=>{\n\t\t\t\tif( diacritics.hasOwnProperty(l) ){\n\t\t\t\t\treturn escapeToPattern(diacritics[l]);\n\t\t\t\t}\n\t\t\t\treturn l;\n\t\t\t});\n\n\t\t\treturn arrayToPattern(sub_pat,'');\n\t\t});\n\n\t\tdiacritic_patterns[latin] = arrayToPattern(pattern);\n\t});\n\n\n\treturn diacritic_patterns;\n}\n\n/**\n * Expand a regular expression pattern to include diacritics\n * \teg /a/ becomes /aⓐａẚàáâầấẫẩãāăằắẵẳȧǡäǟảåǻǎȁȃạậặḁąⱥɐɑAⒶＡÀÁÂẦẤẪẨÃĀĂẰẮẴẲȦǠÄǞẢÅǺǍȀȂẠẬẶḀĄȺⱯ/\n *\n */\nexport const diacriticRegexPoints = (regex:string):string => {\n\n\tif( diacritic_patterns === undefined ){\n\t\tdiacritic_patterns = generateDiacritics(code_points);\n\t}\n\n\tconst decomposed\t\t= regex.normalize('NFKD').toLowerCase();\n\n\treturn decomposed.split(latin_pat).map((part:string)=>{\n\n\t\t// \"ﬄ\" or \"ffl\"\n\t\tconst no_accent = asciifold(part);\n\t\tif( no_accent == '' ){\n\t\t\treturn '';\n\t\t}\n\n\t\tif( diacritic_patterns.hasOwnProperty(no_accent) ){\n\t\t\treturn diacritic_patterns[no_accent];\n\t\t}\n\n\t\treturn part;\n\t}).join('');\n\n}\n","\n// @ts-ignore TS2691 \"An import path cannot end with a '.ts' extension\"\nimport { asciifold } from './diacritics.ts';\n\n// @ts-ignore TS2691 \"An import path cannot end with a '.ts' extension\"\nimport * as T from './types.ts';\n\n\n/**\n * A property getter resolving dot-notation\n * @param  {Object}  obj     The root object to fetch property on\n * @param  {String}  name    The optionally dotted property name to fetch\n * @return {Object}          The resolved property value\n */\nexport const getAttr = (obj:{[key:string]:any}, name:string ) => {\n    if (!obj ) return;\n    return obj[name];\n};\n\n/**\n * A property getter resolving dot-notation\n * @param  {Object}  obj     The root object to fetch property on\n * @param  {String}  name    The optionally dotted property name to fetch\n * @return {Object}          The resolved property value\n */\nexport const getAttrNesting = (obj:{[key:string]:any}, name:string ) => {\n    if (!obj ) return;\n    var part, names = name.split(\".\");\n\twhile( (part = names.shift()) && (obj = obj[part]));\n    return obj;\n};\n\n/**\n * Calculates how close of a match the\n * given value is against a search token.\n *\n */\nexport const scoreValue = (value:string, token:T.Token, weight:number ):number => {\n\tvar score, pos;\n\n\tif (!value) return 0;\n\n\tvalue = value + '';\n\tpos = value.search(token.regex);\n\tif (pos === -1) return 0;\n\n\tscore = token.string.length / value.length;\n\tif (pos === 0) score += 0.5;\n\n\treturn score * weight;\n};\n\n/**\n *\n * https://stackoverflow.com/questions/63006601/why-does-u-throw-an-invalid-escape-error\n */\nexport const escape_regex = (str:string):string => {\n\treturn (str + '').replace(/([\\$\\(\\)\\*\\+\\.\\?\\[\\]\\^\\{\\|\\}\\\\])/gu, '\\\\$1');\n};\n\n\n/**\n * Cast object property to an array if it exists and has a value\n *\n */\nexport const propToArray = (obj:{[key:string]:any}, key:string) => {\n\tvar value = obj[key];\n\n\tif( typeof value == 'function' ) return value;\n\n\tif( value && !Array.isArray(value) ){\n\t\tobj[key] = [value];\n\t}\n}\n\n\n/**\n * Iterates over arrays and hashes.\n *\n * ```\n * iterate(this.items, function(item, id) {\n *    // invoked for each item\n * });\n * ```\n *\n */\nexport const iterate = (object:[]|{[key:string]:any}, callback:(value:any,key:number|string)=>any) => {\n\n\tif ( Array.isArray(object)) {\n\t\tobject.forEach(callback);\n\n\t}else{\n\n\t\tfor (var key in object) {\n\t\t\tif (object.hasOwnProperty(key)) {\n\t\t\t\tcallback(object[key], key);\n\t\t\t}\n\t\t}\n\t}\n};\n\n\n\nexport const cmp = (a:number|string, b:number|string) => {\n\tif (typeof a === 'number' && typeof b === 'number') {\n\t\treturn a > b ? 1 : (a < b ? -1 : 0);\n\t}\n\ta = asciifold(a + '').toLowerCase();\n\tb = asciifold(b + '').toLowerCase();\n\tif (a > b) return 1;\n\tif (b > a) return -1;\n\treturn 0;\n};\n","/**\n * sifter.js\n * Copyright (c) 2013–2020 Brian Reavis & contributors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this\n * file except in compliance with the License. You may obtain a copy of the License at:\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF\n * ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n *\n * @author Brian Reavis <brian@thirdroute.com>\n */\n\n // @ts-ignore TS2691 \"An import path cannot end with a '.ts' extension\"\nimport { scoreValue, getAttr, getAttrNesting, escape_regex, propToArray, iterate, cmp } from './utils.ts';\n// @ts-ignore TS2691 \"An import path cannot end with a '.ts' extension\"\nimport { diacriticRegexPoints } from './diacritics.ts';\n// @ts-ignore TS2691 \"An import path cannot end with a '.ts' extension\"\nimport * as T from 'types.ts';\n\nexport default class Sifter{\n\n\tpublic items; // []|{};\n\tpublic settings: T.Settings;\n\n\t/**\n\t * Textually searches arrays and hashes of objects\n\t * by property (or multiple properties). Designed\n\t * specifically for autocomplete.\n\t *\n\t */\n\tconstructor(items:any, settings:T.Settings) {\n\t\tthis.items = items;\n\t\tthis.settings = settings || {diacritics: true};\n\t};\n\n\t/**\n\t * Splits a search string into an array of individual\n\t * regexps to be used to match results.\n\t *\n\t */\n\ttokenize(query:string, respect_word_boundaries?:boolean, weights?:T.Weights ):T.Token[] {\n\t\tif (!query || !query.length) return [];\n\n\t\tconst tokens:T.Token[]\t= [];\n\t\tconst words\t\t\t\t= query.split(/\\s+/);\n\t\tvar field_regex:RegExp;\n\n\t\tif( weights ){\n\t\t\tfield_regex = new RegExp( '^('+ Object.keys(weights).map(escape_regex).join('|')+')\\:(.*)$');\n\t\t}\n\n\t\twords.forEach((word:string) => {\n\t\t\tlet field_match;\n\t\t\tlet field:null|string\t= null;\n\t\t\tlet regex:null|string\t= null;\n\n\t\t\t// look for \"field:query\" tokens\n\t\t\tif( field_regex && (field_match = word.match(field_regex)) ){\n\t\t\t\tfield\t= field_match[1];\n\t\t\t\tword\t= field_match[2];\n\t\t\t}\n\n\t\t\tif( word.length > 0 ){\n\t\t\t\tif( this.settings.diacritics ){\n\t\t\t\t\tregex = diacriticRegexPoints(word);\n\t\t\t\t}else{\n\t\t\t\t\tregex = escape_regex(word);\n\t\t\t\t}\n\t\t\t\tif( respect_word_boundaries ) regex = \"\\\\b\"+regex;\n\t\t\t}\n\n\t\t\ttokens.push({\n\t\t\t\tstring : word,\n\t\t\t\tregex  : regex ? new RegExp(regex,'iu') : null,\n\t\t\t\tfield  : field,\n\t\t\t});\n\t\t});\n\n\t\treturn tokens;\n\t};\n\n\n\t/**\n\t * Returns a function to be used to score individual results.\n\t *\n\t * Good matches will have a higher score than poor matches.\n\t * If an item is not a match, 0 will be returned by the function.\n\t *\n\t * @returns {function}\n\t */\n\tgetScoreFunction(query:string, options:T.Options ){\n\t\tvar search = this.prepareSearch(query, options);\n\t\treturn this._getScoreFunction(search);\n\t}\n\n\t_getScoreFunction(search:T.PrepareObj ){\n\t\tconst tokens\t\t= search.tokens,\n\t\ttoken_count\t\t\t= tokens.length;\n\n\t\tif (!token_count) {\n\t\t\treturn function() { return 0; };\n\t\t}\n\n\t\tconst fields\t= search.options.fields,\n\t\tweights\t\t\t= search.weights,\n\t\tfield_count\t\t= fields.length,\n\t\tgetAttrFn\t\t= search.getAttrFn;\n\n\t\tif (!field_count) {\n\t\t\treturn function() { return 1; };\n\t\t}\n\n\n\t\t/**\n\t\t * Calculates the score of an object\n\t\t * against the search query.\n\t\t *\n\t\t */\n\t\tconst scoreObject = (function() {\n\n\n\t\t\tif (field_count === 1) {\n\t\t\t\treturn function(token:T.Token, data:{}) {\n\t\t\t\t\tconst field = fields[0].field;\n\t\t\t\t\treturn scoreValue(getAttrFn(data, field), token, weights[field]);\n\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn function(token:T.Token, data:{}) {\n\t\t\t\tvar sum = 0;\n\n\t\t\t\t// is the token specific to a field?\n\t\t\t\tif( token.field ){\n\n\t\t\t\t\tconst value = getAttrFn(data, token.field);\n\n\t\t\t\t\tif( !token.regex && value ){\n\t\t\t\t\t\tsum += (1/field_count);\n\t\t\t\t\t}else{\n\t\t\t\t\t\tsum += scoreValue(value, token, 1);\n\t\t\t\t\t}\n\n\n\n\t\t\t\t}else{\n\t\t\t\t\titerate(weights, (weight:number, field:string) => {\n\t\t\t\t\t\tsum += scoreValue(getAttrFn(data, field), token, weight);\n\t\t\t\t\t});\n\t\t\t\t}\n\n\t\t\t\treturn sum / field_count;\n\t\t\t};\n\t\t})();\n\n\t\tif (token_count === 1) {\n\t\t\treturn function(data:{}) {\n\t\t\t\treturn scoreObject(tokens[0], data);\n\t\t\t};\n\t\t}\n\n\t\tif (search.options.conjunction === 'and') {\n\t\t\treturn function(data:{}) {\n\t\t\t\tvar i = 0, score, sum = 0;\n\t\t\t\tfor (; i < token_count; i++) {\n\t\t\t\t\tscore = scoreObject(tokens[i], data);\n\t\t\t\t\tif (score <= 0) return 0;\n\t\t\t\t\tsum += score;\n\t\t\t\t}\n\t\t\t\treturn sum / token_count;\n\t\t\t};\n\t\t} else {\n\t\t\treturn function(data:{}) {\n\t\t\t\tvar sum = 0;\n\t\t\t\titerate(tokens,(token:T.Token)=>{\n\t\t\t\t\tsum += scoreObject(token, data);\n\t\t\t\t});\n\t\t\t\treturn sum / token_count;\n\t\t\t};\n\t\t}\n\t};\n\n\t/**\n\t * Returns a function that can be used to compare two\n\t * results, for sorting purposes. If no sorting should\n\t * be performed, `null` will be returned.\n\t *\n\t * @return function(a,b)\n\t */\n\tgetSortFunction(query:string, options:T.Options) {\n\t\tvar search  = this.prepareSearch(query, options);\n\t\treturn this._getSortFunction(search);\n\t}\n\n\t_getSortFunction(search:T.PrepareObj){\n\t\tvar i, n, implicit_score;\n\n\t\tconst self\t= this,\n\t\toptions\t\t= search.options,\n\t\tsort\t\t= (!search.query && options.sort_empty) ? options.sort_empty : options.sort,\n\t\tsort_flds:T.Sort[]\t\t= [],\n\t\tmultipliers:number[]\t= [];\n\n\n\t\tif( typeof sort == 'function' ){\n\t\t\treturn sort.bind(this);\n\t\t}\n\n\t\t/**\n\t\t * Fetches the specified sort field value\n\t\t * from a search result item.\n\t\t *\n\t\t */\n\t\tconst get_field = function(name:string, result:T.ResultItem):string|number {\n\t\t\tif (name === '$score') return result.score;\n\t\t\treturn search.getAttrFn(self.items[result.id], name);\n\t\t};\n\n\t\t// parse options\n\t\tif (sort) {\n\t\t\tfor (i = 0, n = sort.length; i < n; i++) {\n\t\t\t\tif (search.query || sort[i].field !== '$score') {\n\t\t\t\t\tsort_flds.push(sort[i]);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// the \"$score\" field is implied to be the primary\n\t\t// sort field, unless it's manually specified\n\t\tif (search.query) {\n\t\t\timplicit_score = true;\n\t\t\tfor (i = 0, n = sort_flds.length; i < n; i++) {\n\t\t\t\tif (sort_flds[i].field === '$score') {\n\t\t\t\t\timplicit_score = false;\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (implicit_score) {\n\t\t\t\tsort_flds.unshift({field: '$score', direction: 'desc'});\n\t\t\t}\n\t\t} else {\n\t\t\tfor (i = 0, n = sort_flds.length; i < n; i++) {\n\t\t\t\tif (sort_flds[i].field === '$score') {\n\t\t\t\t\tsort_flds.splice(i, 1);\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tfor (i = 0, n = sort_flds.length; i < n; i++) {\n\t\t\tmultipliers.push(sort_flds[i].direction === 'desc' ? -1 : 1);\n\t\t}\n\n\t\t// build function\n\t\tconst sort_flds_count = sort_flds.length;\n\t\tif (!sort_flds_count) {\n\t\t\treturn null;\n\t\t} else if (sort_flds_count === 1) {\n\t\t\tconst sort_fld = sort_flds[0].field;\n\t\t\tconst multiplier = multipliers[0];\n\t\t\treturn function(a:T.ResultItem, b:T.ResultItem) {\n\t\t\t\treturn multiplier * cmp(\n\t\t\t\t\tget_field(sort_fld, a),\n\t\t\t\t\tget_field(sort_fld, b)\n\t\t\t\t);\n\t\t\t};\n\t\t} else {\n\t\t\treturn function(a:T.ResultItem, b:T.ResultItem) {\n\t\t\t\tvar i, result, field;\n\t\t\t\tfor (i = 0; i < sort_flds_count; i++) {\n\t\t\t\t\tfield = sort_flds[i].field;\n\t\t\t\t\tresult = multipliers[i] * cmp(\n\t\t\t\t\t\tget_field(field, a),\n\t\t\t\t\t\tget_field(field, b)\n\t\t\t\t\t);\n\t\t\t\t\tif (result) return result;\n\t\t\t\t}\n\t\t\t\treturn 0;\n\t\t\t};\n\t\t}\n\t};\n\n\t/**\n\t * Parses a search query and returns an object\n\t * with tokens and fields ready to be populated\n\t * with results.\n\t *\n\t */\n\tprepareSearch(query:string, optsUser:Partial<T.Options>):T.PrepareObj {\n\t\tconst weights:T.Weights = {};\n\t\tvar options\t\t= Object.assign({},optsUser);\n\n\t\tpropToArray(options,'sort');\n\t\tpropToArray(options,'sort_empty');\n\n\t\t// convert fields to new format\n\t\tif( options.fields ){\n\t\t\tpropToArray(options,'fields');\n\t\t\tconst fields:T.Field[] = [];\n\t\t\toptions.fields.forEach((field:string|T.Field) => {\n\t\t\t\tif( typeof field == 'string' ){\n\t\t\t\t\tfield = {field:field,weight:1};\n\t\t\t\t}\n\t\t\t\tfields.push(field);\n\t\t\t\tweights[field.field] = ('weight' in field) ? field.weight : 1;\n\t\t\t});\n\t\t\toptions.fields = fields;\n\t\t}\n\n\n\t\treturn {\n\t\t\toptions\t\t: options,\n\t\t\tquery\t\t: query.toLowerCase().trim(),\n\t\t\ttokens\t\t: this.tokenize(query, options.respect_word_boundaries, weights),\n\t\t\ttotal\t\t: 0,\n\t\t\titems\t\t: [],\n\t\t\tweights\t\t: weights,\n\t\t\tgetAttrFn\t: (options.nesting) ? getAttrNesting : getAttr,\n\t\t};\n\t};\n\n\t/**\n\t * Searches through all items and returns a sorted array of matches.\n\t *\n\t */\n\tsearch(query:string, options:T.Options) : T.PrepareObj {\n\t\tvar self = this, score, search:T.PrepareObj;\n\n\t\tsearch  = this.prepareSearch(query, options);\n\t\toptions = search.options;\n\t\tquery   = search.query;\n\n\t\t// generate result scoring function\n\t\tconst fn_score = options.score || self._getScoreFunction(search);\n\n\t\t// perform search and sort\n\t\tif (query.length) {\n\t\t\titerate(self.items, (item:T.ResultItem, id:string|number) => {\n\t\t\t\tscore = fn_score(item);\n\t\t\t\tif (options.filter === false || score > 0) {\n\t\t\t\t\tsearch.items.push({'score': score, 'id': id});\n\t\t\t\t}\n\t\t\t});\n\t\t} else {\n\t\t\titerate(self.items, (_:T.ResultItem, id:string|number) => {\n\t\t\t\tsearch.items.push({'score': 1, 'id': id});\n\t\t\t});\n\t\t}\n\n\t\tconst fn_sort = self._getSortFunction(search);\n\t\tif (fn_sort) search.items.sort(fn_sort);\n\n\t\t// apply limits\n\t\tsearch.total = search.items.length;\n\t\tif (typeof options.limit === 'number') {\n\t\t\tsearch.items = search.items.slice(0, options.limit);\n\t\t}\n\n\t\treturn search;\n\t};\n}\n","\nimport { iterate } from '@orchidjs/sifter/lib/utils';\n\n/**\n * Return a dom element from either a dom query string, jQuery object, a dom element or html string\n * https://stackoverflow.com/questions/494143/creating-a-new-dom-element-from-an-html-string-using-built-in-dom-methods-or-pro/35385518#35385518\n *\n * param query should be {}\n */\nexport const getDom = ( query:any ):HTMLElement => {\n\n\tif( query.jquery ){\n\t\treturn query[0];\n\t}\n\n\tif( query instanceof HTMLElement ){\n\t\treturn query;\n\t}\n\n\tif( isHtmlString(query) ){\n\t\tlet div = document.createElement('div');\n\t\tdiv.innerHTML = query.trim(); // Never return a text node of whitespace as the result\n\t\treturn div.firstChild as HTMLElement;\n\t}\n\n\treturn document.querySelector(query);\n};\n\nexport const isHtmlString = (arg:any): boolean => {\n\tif( typeof arg === 'string' && arg.indexOf('<') > -1 ){\n\t\treturn true;\n\t}\n\treturn false;\n}\n\nexport const escapeQuery = (query:string):string => {\n\treturn query.replace(/['\"\\\\]/g, '\\\\$&');\n}\n\n/**\n * Dispatch an event\n *\n */\nexport const triggerEvent = ( dom_el:HTMLElement, event_name:string ):void => {\n\tvar event = document.createEvent('HTMLEvents');\n\tevent.initEvent(event_name, true, false);\n\tdom_el.dispatchEvent(event)\n};\n\n/**\n * Apply CSS rules to a dom element\n *\n */\nexport const applyCSS = ( dom_el:HTMLElement, css:{ [key: string]: string|number }):void => {\n\tObject.assign(dom_el.style, css);\n}\n\n\n/**\n * Add css classes\n *\n */\nexport const addClasses = ( elmts:HTMLElement|HTMLElement[], ...classes:string[]|string[][] ) => {\n\n\tvar norm_classes \t= classesArray(classes);\n\telmts\t\t\t\t= castAsArray(elmts);\n\n\telmts.map( el => {\n\t\tnorm_classes.map( cls => {\n\t\t\tel.classList.add( cls );\n\t\t});\n\t});\n}\n\n/**\n * Remove css classes\n *\n */\n export const removeClasses = ( elmts:HTMLElement|HTMLElement[], ...classes:string[]|string[][] ) => {\n\n \tvar norm_classes \t= classesArray(classes);\n\telmts\t\t\t\t= castAsArray(elmts);\n\n\telmts.map( el => {\n\t\tnorm_classes.map(cls => {\n\t \t\tel.classList.remove( cls );\n\t\t});\n \t});\n }\n\n\n/**\n * Return arguments\n *\n */\nexport const classesArray = (args:string[]|string[][]):string[] => {\n\tvar classes:string[] = [];\n\titerate( args, (_classes) =>{\n\t\tif( typeof _classes === 'string' ){\n\t\t\t_classes = _classes.trim().split(/[\\11\\12\\14\\15\\40]/);\n\t\t}\n\t\tif( Array.isArray(_classes) ){\n\t\t\tclasses = classes.concat(_classes);\n\t\t}\n\t});\n\n\treturn classes.filter(Boolean);\n}\n\n\n/**\n * Create an array from arg if it's not already an array\n *\n */\nexport const castAsArray = (arg:any):Array<any> => {\n\tif( !Array.isArray(arg) ){\n \t\targ = [arg];\n \t}\n\treturn arg;\n}\n\n\n/**\n * Get the closest node to the evt.target matching the selector\n * Stops at wrapper\n *\n */\nexport const parentMatch = ( target:null|HTMLElement, selector:string, wrapper?:HTMLElement ):HTMLElement|void => {\n\n\tif( wrapper && !wrapper.contains(target) ){\n\t\treturn;\n\t}\n\n\twhile( target && target.matches ){\n\n\t\tif( target.matches(selector) ){\n\t\t\treturn target;\n\t\t}\n\n\t\ttarget = target.parentNode as HTMLElement;\n\t}\n}\n\n\n/**\n * Get the first or last item from an array\n *\n * > 0 - right (last)\n * <= 0 - left (first)\n *\n */\nexport const getTail = ( list:Array<any>|NodeList, direction:number=0 ):any => {\n\n\tif( direction > 0 ){\n\t\treturn list[list.length-1];\n\t}\n\n\treturn list[0];\n}\n\n/**\n * Return true if an object is empty\n *\n */\nexport const isEmptyObject = (obj:object):boolean => {\n\treturn (Object.keys(obj).length === 0);\n}\n\n\n/**\n * Get the index of an element amongst sibling nodes of the same type\n *\n */\nexport const nodeIndex = ( el:null|Element, amongst?:string ):number => {\n\tif (!el) return -1;\n\n\tamongst = amongst || el.nodeName;\n\n\tvar i = 0;\n\twhile( el = el.previousElementSibling ){\n\n\t\tif( el.matches(amongst) ){\n\t\t\ti++;\n\t\t}\n\t}\n\treturn i;\n}\n\n\n/**\n * Set attributes of an element\n *\n */\nexport const setAttr = (el:Element,attrs:{ [key: string]: null|string|number }) => {\n\titerate( attrs,(val,attr) => {\n\t\tif( val == null ){\n\t\t\tel.removeAttribute(attr as string);\n\t\t}else{\n\t\t\tel.setAttribute(attr as string, ''+val);\n\t\t}\n\t});\n}\n\n\n/**\n * Replace a node\n */\nexport const replaceNode = ( existing:Node, replacement:Node ) => {\n\tif( existing.parentNode ) existing.parentNode.replaceChild(replacement, existing);\n}\n","/**\n * highlight v3 | MIT license | Johann Burkard <jb@eaio.com>\n * Highlights arbitrary terms in a node.\n *\n * - Modified by Marshal <beatgates@gmail.com> 2011-6-24 (added regex)\n * - Modified by Brian Reavis <brian@thirdroute.com> 2012-8-27 (cleanup)\n */\n\nimport {replaceNode} from '../vanilla';\n\n\nexport const highlight = (element:HTMLElement, regex:string|RegExp) => {\n\n\tif( regex === null ) return;\n\n\t// convet string to regex\n\tif( typeof regex === 'string' ){\n\n\t\tif( !regex.length ) return;\n\t\tregex = new RegExp(regex, 'i');\n\t}\n\n\n\t// Wrap matching part of text node with highlighting <span>, e.g.\n\t// Soccer  ->  <span class=\"highlight\">Soc</span>cer  for regex = /soc/i\n\tconst highlightText = ( node:Text ):number => {\n\n\t\tvar match = node.data.match(regex);\n\t\tif( match && node.data.length > 0 ){\n\t\t\tvar spannode\t\t= document.createElement('span');\n\t\t\tspannode.className\t= 'highlight';\n\t\t\tvar middlebit\t\t= node.splitText(match.index as number);\n\n\t\t\tmiddlebit.splitText(match[0].length);\n\t\t\tvar middleclone\t\t= middlebit.cloneNode(true);\n\n\t\t\tspannode.appendChild(middleclone);\n\t\t\treplaceNode(middlebit, spannode);\n\t\t\treturn 1;\n\t\t}\n\n\t\treturn 0;\n\t};\n\n\t// Recurse element node, looking for child text nodes to highlight, unless element\n\t// is childless, <script>, <style>, or already highlighted: <span class=\"hightlight\">\n\tconst highlightChildren = ( node:Element ):void => {\n\t\tif( node.nodeType === 1 && node.childNodes && !/(script|style)/i.test(node.tagName) && ( node.className !== 'highlight' || node.tagName !== 'SPAN' ) ){\n\t\t\tfor (var i = 0; i < node.childNodes.length; ++i) {\n\t\t\t\ti += highlightRecursive(node.childNodes[i]);\n\t\t\t}\n\t\t}\n\t};\n\n\n\tconst highlightRecursive = ( node:Node|Element ):number => {\n\n\t\tif( node.nodeType === 3 ){\n\t\t\treturn highlightText(node as Text);\n\t\t}\n\n\t\thighlightChildren(node as Element);\n\n\t\treturn 0;\n\t};\n\n\thighlightRecursive( element );\n};\n\n/**\n * removeHighlight fn copied from highlight v5 and\n * edited to remove with(), pass js strict mode, and use without jquery\n */\nexport const removeHighlight = (el:HTMLElement) => {\n\tvar elements = el.querySelectorAll(\"span.highlight\");\n\tArray.prototype.forEach.call(elements, function(el:HTMLElement){\n\t\tvar parent = el.parentNode as Node;\n\t\tparent.replaceChild(el.firstChild as Node, el);\n\t\tparent.normalize();\n\t});\n};\n","export const KEY_A\t\t\t\t= 65;\nexport const KEY_RETURN\t\t\t= 13;\nexport const KEY_ESC\t\t\t= 27;\nexport const KEY_LEFT\t\t\t= 37;\nexport const KEY_UP\t\t\t\t= 38;\nexport const KEY_RIGHT\t\t\t= 39;\nexport const KEY_DOWN\t\t\t= 40;\nexport const KEY_BACKSPACE\t\t= 8;\nexport const KEY_DELETE\t\t\t= 46;\nexport const KEY_TAB\t\t\t= 9;\n\nexport const IS_MAC      \t\t= typeof navigator === 'undefined' ? false : /Mac/.test(navigator.userAgent);\nexport const KEY_SHORTCUT\t\t= IS_MAC ? 'metaKey' : 'ctrlKey'; // ctrl key or apple key for ma\n","\nexport default {\n\toptions: [],\n\toptgroups: [],\n\n\tplugins: [],\n\tdelimiter: ',',\n\tsplitOn: null, // regexp or string for splitting up values from a paste command\n\tpersist: true,\n\tdiacritics: true,\n\tcreate: null,\n\tcreateOnBlur: false,\n\tcreateFilter: null,\n\thighlight: true,\n\topenOnFocus: true,\n\tshouldOpen: null,\n\tmaxOptions: 50,\n\tmaxItems: null,\n\thideSelected: null,\n\tduplicates: false,\n\taddPrecedence: false,\n\tselectOnTab: false,\n\tpreload: null,\n\tallowEmptyOption: false,\n\t//closeAfterSelect: false,\n\n\tloadThrottle: 300,\n\tloadingClass: 'loading',\n\n\tdataAttr: null, //'data-data',\n\toptgroupField: 'optgroup',\n\tvalueField: 'value',\n\tlabelField: 'text',\n\tdisabledField: 'disabled',\n\toptgroupLabelField: 'label',\n\toptgroupValueField: 'value',\n\tlockOptgroupOrder: false,\n\n\tsortField: '$order',\n\tsearchField: ['text'],\n\tsearchConjunction: 'and',\n\n\tmode: null,\n\twrapperClass: 'ts-wrapper',\n\tcontrolClass: 'ts-control',\n\tdropdownClass: 'ts-dropdown',\n\tdropdownContentClass: 'ts-dropdown-content',\n\titemClass: 'item',\n\toptionClass: 'option',\n\n\tdropdownParent: null,\n\tcontrolInput: '<input type=\"text\" autocomplete=\"off\" size=\"1\" />',\n\n\tcopyClassesToDropdown: false,\n\n\tplaceholder: null,\n\thidePlaceholder: null,\n\n\tshouldLoad: function(query:string):boolean{\n\t\treturn query.length > 0;\n\t},\n\n\t/*\n\tload                 : null, // function(query, callback) { ... }\n\tscore                : null, // function(search) { ... }\n\tonInitialize         : null, // function() { ... }\n\tonChange             : null, // function(value) { ... }\n\tonItemAdd            : null, // function(value, $item) { ... }\n\tonItemRemove         : null, // function(value) { ... }\n\tonClear              : null, // function() { ... }\n\tonOptionAdd          : null, // function(value, data) { ... }\n\tonOptionRemove       : null, // function(value) { ... }\n\tonOptionClear        : null, // function() { ... }\n\tonOptionGroupAdd     : null, // function(id, data) { ... }\n\tonOptionGroupRemove  : null, // function(id) { ... }\n\tonOptionGroupClear   : null, // function() { ... }\n\tonDropdownOpen       : null, // function(dropdown) { ... }\n\tonDropdownClose      : null, // function(dropdown) { ... }\n\tonType               : null, // function(str) { ... }\n\tonDelete             : null, // function(values) { ... }\n\t*/\n\n\trender: {\n\t\t/*\n\t\titem: null,\n\t\toptgroup: null,\n\t\toptgroup_header: null,\n\t\toption: null,\n\t\toption_create: null\n\t\t*/\n\t}\n};\n","\nimport TomSelect from './tom-select';\nimport { TomLoadCallback } from './types/index';\n\n\n/**\n * Converts a scalar to its best string representation\n * for hash keys and HTML attribute values.\n *\n * Transformations:\n *   'str'     -> 'str'\n *   null      -> ''\n *   undefined -> ''\n *   true      -> '1'\n *   false     -> '0'\n *   0         -> '0'\n *   1         -> '1'\n *\n */\nexport const hash_key = (value:undefined|null|boolean|string):string|null => {\n\tif (typeof value === 'undefined' || value === null) return null;\n\treturn get_hash(value);\n};\n\nexport const get_hash = (value:boolean|string):string => {\n\tif (typeof value === 'boolean') return value ? '1' : '0';\n\treturn value + '';\n};\n\n/**\n * Escapes a string for use within HTML.\n *\n */\nexport const escape_html = (str:string):string => {\n\treturn (str + '')\n\t\t.replace(/&/g, '&amp;')\n\t\t.replace(/</g, '&lt;')\n\t\t.replace(/>/g, '&gt;')\n\t\t.replace(/\"/g, '&quot;');\n};\n\n\n/**\n * Debounce the user provided load function\n *\n */\nexport const loadDebounce = (fn:(value:string,callback:TomLoadCallback) => void,delay:number) => {\n\tvar timeout: null|ReturnType<typeof setTimeout>;\n\treturn function(this:TomSelect, value:string,callback:TomLoadCallback) {\n\t\tvar self = this;\n\n\t\tif( timeout ){\n\t\t\tself.loading = Math.max(self.loading - 1, 0);\n\t\t\tclearTimeout(timeout);\n\t\t}\n\t\ttimeout = setTimeout(function() {\n\t\t\ttimeout = null;\n\t\t\tself.loadedSearches[value] = true;\n\t\t\tfn.call(self, value, callback);\n\n\t\t}, delay);\n\t};\n};\n\n\n/**\n * Debounce all fired events types listed in `types`\n * while executing the provided `fn`.\n *\n */\nexport const debounce_events = ( self:TomSelect, types:string[], fn:() => void ) => {\n\tvar type:string;\n\tvar trigger = self.trigger;\n\tvar event_args:{ [key: string]: any } = {};\n\n\t// override trigger method\n\tself.trigger = function(){\n\t\tvar type = arguments[0];\n\t\tif (types.indexOf(type) !== -1) {\n\t\t\tevent_args[type] = arguments;\n\t\t} else {\n\t\t\treturn trigger.apply(self, arguments);\n\t\t}\n\t};\n\n\t// invoke provided function\n\tfn.apply(self, []);\n\tself.trigger = trigger;\n\n\t// trigger queued events\n\tfor( type of types ){\n\t\tif( type in event_args ){\n\t\t\ttrigger.apply(self, event_args[type]);\n\t\t}\n\t}\n};\n\n\n/**\n * Determines the current selection within a text input control.\n * Returns an object containing:\n *   - start\n *   - length\n *\n */\nexport const getSelection = (input:HTMLInputElement):{ start: number; length: number } => {\n\treturn {\n\t\tstart\t: input.selectionStart || 0,\n\t\tlength\t: (input.selectionEnd||0) - (input.selectionStart||0),\n\t};\n};\n\n\n/**\n * Prevent default\n *\n */\nexport const preventDefault = (evt?:Event, stop:boolean=false):void => {\n\tif( evt ){\n\t\tevt.preventDefault();\n\t\tif( stop ){\n\t\t\tevt.stopPropagation();\n\t\t}\n\t}\n}\n\n\n/**\n * Prevent default\n *\n */\nexport const addEvent = (target:EventTarget, type:string, callback:EventListenerOrEventListenerObject, options?:object):void => {\n\ttarget.addEventListener(type,callback,options);\n};\n\n\n/**\n * Return true if the requested key is down\n * Will return false if more than one control character is pressed ( when [ctrl+shift+a] != [ctrl+a] )\n * The current evt may not always set ( eg calling advanceSelection() )\n *\n */\nexport const isKeyDown = ( key_name:keyof (KeyboardEvent|MouseEvent), evt?:KeyboardEvent|MouseEvent ) => {\n\n\tif( !evt ){\n\t\treturn false;\n\t}\n\n\tif( !evt[key_name] ){\n\t\treturn false;\n\t}\n\n\tvar count = (evt.altKey?1:0) + (evt.ctrlKey?1:0) + (evt.shiftKey?1:0) + (evt.metaKey?1:0);\n\n\tif( count === 1 ){\n\t\treturn true;\n\t}\n\n\treturn false;\n};\n\n\n/**\n * Get the id of an element\n * If the id attribute is not set, set the attribute with the given id\n *\n */\nexport const getId = (el:Element,id:string) => {\n\tconst existing_id = el.getAttribute('id');\n\tif( existing_id ){\n\t\treturn existing_id;\n\t}\n\n\tel.setAttribute('id',id);\n\treturn id;\n};\n\n\n/**\n * Returns a string with backslashes added before characters that need to be escaped.\n */\nexport const addSlashes = (str:string):string => {\n\treturn str.replace(/[\\\\\"']/g, '\\\\$&');\n};\n\n/**\n *\n */\nexport const append = ( parent:Element|DocumentFragment, node: string|Node|null|undefined ):void =>{\n\tif( node ) parent.append(node);\n};\n","import defaults from './defaults';\nimport { hash_key } from './utils';\nimport { TomOption, TomSettings } from './types/index';\nimport { iterate } from '@orchidjs/sifter/lib/utils';\nimport { TomInput } from './types/index';\n\n\nexport default function getSettings( input:TomInput, settings_user:Partial<TomSettings>):TomSettings{\n\tvar settings:TomSettings\t= Object.assign({}, defaults, settings_user);\n\n\tvar attr_data\t\t\t\t= settings.dataAttr;\n\tvar field_label\t\t\t\t= settings.labelField;\n\tvar field_value\t\t\t\t= settings.valueField;\n\tvar field_disabled\t\t\t= settings.disabledField;\n\tvar field_optgroup\t\t\t= settings.optgroupField;\n\tvar field_optgroup_label\t= settings.optgroupLabelField;\n\tvar field_optgroup_value\t= settings.optgroupValueField;\n\n\tvar tag_name\t\t\t\t= input.tagName.toLowerCase();\n\tvar placeholder\t\t\t\t= input.getAttribute('placeholder') || input.getAttribute('data-placeholder');\n\n\tif (!placeholder && !settings.allowEmptyOption) {\n\t\tlet option\t\t= input.querySelector('option[value=\"\"]');\n\t\tif( option ){\n\t\t\tplaceholder = option.textContent;\n\t\t}\n\n\t}\n\n\tvar settings_element:{\n\t\tplaceholder\t: null|string,\n\t\toptions\t\t: TomOption[],\n\t\toptgroups\t: TomOption[],\n\t\titems\t\t: string[],\n\t\tmaxItems\t: null|number,\n\t} = {\n\t\tplaceholder\t: placeholder,\n\t\toptions\t\t: [],\n\t\toptgroups\t: [],\n\t\titems\t\t: [],\n\t\tmaxItems\t: null,\n\t};\n\n\n\t/**\n\t * Initialize from a <select> element.\n\t *\n\t */\n\tvar init_select = () => {\n\t\tvar tagName;\n\t\tvar options = settings_element.options;\n\t\tvar optionsMap:{[key:string]:any} = {};\n\t\tvar group_count = 1;\n\n\t\tvar readData = (el:HTMLElement):TomOption => {\n\n\t\t\tvar data\t= Object.assign({},el.dataset); // get plain object from DOMStringMap\n\t\t\tvar json\t= attr_data && data[attr_data];\n\n\t\t\tif( typeof json === 'string' && json.length ){\n\t\t\t\tdata = Object.assign(data,JSON.parse(json));\n\t\t\t}\n\n\t\t\treturn data;\n\t\t};\n\n\t\tvar addOption = (option:HTMLOptionElement, group?:string) => {\n\n\t\t\tvar value = hash_key(option.value);\n\t\t\tif ( value == null ) return;\n\t\t\tif ( !value && !settings.allowEmptyOption) return;\n\n\t\t\t// if the option already exists, it's probably been\n\t\t\t// duplicated in another optgroup. in this case, push\n\t\t\t// the current group to the \"optgroup\" property on the\n\t\t\t// existing option so that it's rendered in both places.\n\t\t\tif (optionsMap.hasOwnProperty(value)) {\n\t\t\t\tif (group) {\n\t\t\t\t\tvar arr = optionsMap[value][field_optgroup];\n\t\t\t\t\tif (!arr) {\n\t\t\t\t\t\toptionsMap[value][field_optgroup] = group;\n\t\t\t\t\t} else if (!Array.isArray(arr)) {\n\t\t\t\t\t\toptionsMap[value][field_optgroup] = [arr, group];\n\t\t\t\t\t} else {\n\t\t\t\t\t\tarr.push(group);\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t}else{\n\n\t\t\t\tvar option_data             = readData(option);\n\t\t\t\toption_data[field_label]    = option_data[field_label] || option.textContent;\n\t\t\t\toption_data[field_value]    = option_data[field_value] || value;\n\t\t\t\toption_data[field_disabled] = option_data[field_disabled] || option.disabled;\n\t\t\t\toption_data[field_optgroup] = option_data[field_optgroup] || group;\n\t\t\t\toption_data.$option\t\t\t= option;\n\n\t\t\t\toptionsMap[value] = option_data;\n\t\t\t\toptions.push(option_data);\n\t\t\t}\n\n\t\t\tif( option.selected ){\n\t\t\t\tsettings_element.items.push(value);\n\t\t\t}\n\t\t};\n\n\t\tvar addGroup = ( optgroup:HTMLOptGroupElement ) => {\n\t\t\tvar id:string, optgroup_data\n\n\t\t\toptgroup_data\t\t\t\t\t\t\t= readData(optgroup);\n\t\t\toptgroup_data[field_optgroup_label]\t\t= optgroup_data[field_optgroup_label] || optgroup.getAttribute('label') || '';\n\t\t\toptgroup_data[field_optgroup_value]\t\t= optgroup_data[field_optgroup_value] || group_count++;\n\t\t\toptgroup_data[field_disabled]\t\t\t= optgroup_data[field_disabled] || optgroup.disabled;\n\t\t\tsettings_element.optgroups.push(optgroup_data);\n\n\t\t\tid = optgroup_data[field_optgroup_value];\n\n\t\t\titerate(optgroup.children, (option)=>{\n\t\t\t\taddOption(option as HTMLOptionElement, id);\n\t\t\t});\n\n\t\t};\n\n\t\tsettings_element.maxItems = input.hasAttribute('multiple') ? null : 1;\n\n\t\titerate(input.children,(child)=>{\n\t\t\ttagName = child.tagName.toLowerCase();\n\t\t\tif (tagName === 'optgroup') {\n\t\t\t\taddGroup(child as HTMLOptGroupElement);\n\t\t\t} else if (tagName === 'option') {\n\t\t\t\taddOption(child as HTMLOptionElement);\n\t\t\t}\n\t\t});\n\n\t};\n\n\n\t/**\n\t * Initialize from a <input type=\"text\"> element.\n\t *\n\t */\n\tvar init_textbox = () => {\n\t\tconst data_raw = input.getAttribute(attr_data);\n\n\t\tif (!data_raw) {\n\t\t\tvar value = input.value.trim() || '';\n\t\t\tif (!settings.allowEmptyOption && !value.length) return;\n\t\t\tconst values = value.split(settings.delimiter);\n\n\t\t\titerate( values, (value) => {\n\t\t\t\tconst option:TomOption = {};\n\t\t\t\toption[field_label] = value;\n\t\t\t\toption[field_value] = value;\n\t\t\t\tsettings_element.options.push(option);\n\t\t\t});\n\t\t\tsettings_element.items = values;\n\t\t} else {\n\t\t\tsettings_element.options = JSON.parse(data_raw);\n\t\t\titerate( settings_element.options, (opt) => {\n\t\t\t\tsettings_element.items.push(opt[field_value]);\n\t\t\t});\n\t\t}\n\t};\n\n\n\tif (tag_name === 'select') {\n\t\tinit_select();\n\t} else {\n\t\tinit_textbox();\n\t}\n\n\treturn Object.assign( {}, defaults, settings_element, settings_user) as TomSettings;\n};\n","\nimport MicroEvent from './contrib/microevent';\nimport MicroPlugin from './contrib/microplugin';\nimport Sifter from '@orchidjs/sifter/lib/sifter';\nimport { escape_regex, iterate } from '@orchidjs/sifter/lib/utils';\nimport { TomInput, TomArgObject, TomOption, TomOptions, TomCreateFilter, TomCreateCallback, TomItem, TomSettings, TomTemplateNames, TomClearFilter } from './types/index';\nimport {highlight, removeHighlight} from './contrib/highlight';\nimport * as constants from './constants';\nimport getSettings from './getSettings';\nimport {\n\thash_key,\n\tget_hash,\n\tescape_html,\n\tdebounce_events,\n\tgetSelection,\n\tpreventDefault,\n\taddEvent,\n\tloadDebounce,\n\tisKeyDown,\n\tgetId,\n\taddSlashes,\n\tappend\n} from './utils';\n\nimport {\n\tgetDom,\n\tisHtmlString,\n\tescapeQuery,\n\ttriggerEvent,\n\tapplyCSS,\n\taddClasses,\n\tremoveClasses,\n\tparentMatch,\n\tgetTail,\n\tisEmptyObject,\n\tnodeIndex,\n\tsetAttr,\n\treplaceNode\n} from './vanilla';\n\nvar instance_i = 0;\n\nexport default class TomSelect extends MicroPlugin(MicroEvent){\n\n\tpublic control_input\t\t\t: HTMLInputElement;\n\tpublic wrapper\t\t\t\t\t: HTMLElement;\n\tpublic dropdown\t\t\t\t\t: HTMLElement;\n\tpublic control\t\t\t\t\t: HTMLElement;\n\tpublic dropdown_content\t\t\t: HTMLElement;\n\tpublic focus_node\t\t\t\t: HTMLElement;\n\n\tpublic order\t\t\t\t\t: number = 0;\n\tpublic settings\t\t\t\t\t: TomSettings;\n\tpublic input\t\t\t\t\t: TomInput;\n\tpublic tabIndex\t\t\t\t\t: number;\n\tpublic is_select_tag\t\t\t: boolean;\n\tpublic rtl\t\t\t\t\t\t: boolean;\n\tprivate inputId\t\t\t\t\t: string;\n\n\tprivate _destroy\t\t\t\t!: () => void;\n\tpublic sifter\t\t\t\t\t: Sifter;\n\n\n\tpublic isOpen\t\t\t\t\t: boolean = false;\n\tpublic isDisabled\t\t\t\t: boolean = false;\n\tpublic isRequired\t\t\t\t: boolean;\n\tpublic isInvalid\t\t\t\t: boolean = false; // @deprecated 1.8\n\tpublic isValid\t\t\t\t\t: boolean = true;\n\tpublic isLocked\t\t\t\t\t: boolean = false;\n\tpublic isFocused\t\t\t\t: boolean = false;\n\tpublic isInputHidden\t\t\t: boolean = false;\n\tpublic isSetup\t\t\t\t\t: boolean = false;\n\tpublic ignoreFocus\t\t\t\t: boolean = false;\n\tpublic ignoreHover\t\t\t\t: boolean = false;\n\tpublic hasOptions\t\t\t\t: boolean = false;\n\tpublic currentResults\t\t\t?: ReturnType<Sifter['search']>;\n\tpublic lastValue\t\t\t\t: string = '';\n\tpublic caretPos\t\t\t\t\t: number = 0;\n\tpublic loading\t\t\t\t\t: number = 0;\n\tpublic loadedSearches\t\t\t: { [key: string]: boolean } = {};\n\n\tpublic activeOption\t\t\t\t: null|HTMLElement = null;\n\tpublic activeItems\t\t\t\t: TomItem[] = [];\n\n\tpublic optgroups\t\t\t\t: TomOptions = {};\n\tpublic options\t\t\t\t\t: TomOptions = {};\n\tpublic userOptions\t\t\t\t: {[key:string]:boolean} = {};\n\tpublic items\t\t\t\t\t: string[] = [];\n\n\n\n\tconstructor( input_arg: string|TomInput, user_settings:Partial<TomSettings> ){\n\t\tsuper();\n\n\t\tinstance_i++;\n\n\t\tvar dir;\n\t\tvar input\t\t\t\t= getDom( input_arg ) as TomInput;\n\n\t\tif( input.tomselect ){\n\t\t\tthrow new Error('Tom Select already initialized on this element');\n\t\t}\n\n\n\t\tinput.tomselect\t\t\t= this;\n\n\n\t\t// detect rtl environment\n\t\tvar computedStyle\t\t= window.getComputedStyle && window.getComputedStyle(input, null);\n\t\tdir\t\t\t\t\t\t= computedStyle.getPropertyValue('direction');\n\n\t\t// setup default state\n\t\tconst settings\t\t\t= getSettings( input, user_settings );\n\t\tthis.settings\t\t\t= settings;\n\t\tthis.input\t\t\t\t= input;\n\t\tthis.tabIndex\t\t\t= input.tabIndex || 0;\n\t\tthis.is_select_tag\t\t= input.tagName.toLowerCase() === 'select';\n\t\tthis.rtl\t\t\t\t= /rtl/i.test(dir);\n\t\tthis.inputId\t\t\t= getId(input, 'tomselect-'+instance_i);\n\t\tthis.isRequired\t\t\t= input.required;\n\n\n\t\t// search system\n\t\tthis.sifter = new Sifter(this.options, {diacritics: settings.diacritics});\n\n\t\t// option-dependent defaults\n\t\tsettings.mode = settings.mode || (settings.maxItems === 1 ? 'single' : 'multi');\n\t\tif (typeof settings.hideSelected !== 'boolean') {\n\t\t\tsettings.hideSelected = settings.mode === 'multi';\n\t\t}\n\n\t\tif( typeof settings.hidePlaceholder !== 'boolean' ){\n\t\t\tsettings.hidePlaceholder = settings.mode !== 'multi';\n\t\t}\n\n\t\t// set up createFilter callback\n\t\tvar filter = settings.createFilter;\n\t\tif( typeof filter !== 'function' ){\n\n\t\t\tif( typeof filter === 'string' ){\n\t\t\t\tfilter = new RegExp(filter);\n\t\t\t}\n\n\t\t\tif( filter instanceof RegExp ){\n\t\t\t\tsettings.createFilter = (input) => (filter as RegExp).test(input);\n\t\t\t}else{\n\t\t\t\tsettings.createFilter = (value) => {\n\t\t\t\t\treturn this.settings.duplicates || !this.options[value];\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\n\t\tthis.initializePlugins(settings.plugins);\n\t\tthis.setupCallbacks();\n\t\tthis.setupTemplates();\n\n\n\t\t// Create all elements\n\t\tconst wrapper\t\t\t= getDom('<div>');\n\t\tconst control\t\t\t= getDom('<div>');\n\t\tconst dropdown\t\t\t= this._render('dropdown');\n\t\tconst dropdown_content\t= getDom(`<div role=\"listbox\" tabindex=\"-1\">`);\n\n\t\tconst classes\t\t\t= this.input.getAttribute('class') || '';\n\t\tconst inputMode\t\t\t= settings.mode;\n\n\t\tvar control_input: HTMLInputElement;\n\n\n\t\taddClasses( wrapper, settings.wrapperClass, classes, inputMode);\n\n\n\t\taddClasses(control,settings.controlClass);\n\t\tappend( wrapper, control );\n\n\n\t\taddClasses(dropdown, settings.dropdownClass, inputMode);\n\t\tif( settings.copyClassesToDropdown ){\n\t\t\taddClasses( dropdown, classes);\n\t\t}\n\n\n\t\taddClasses(dropdown_content, settings.dropdownContentClass);\n\t\tappend( dropdown, dropdown_content );\n\n\t\tgetDom( settings.dropdownParent || wrapper ).appendChild( dropdown );\n\n\n\t\t// default controlInput\n\t\tif( isHtmlString(settings.controlInput) ){\n\t\t\tcontrol_input\t\t= getDom(settings.controlInput ) as HTMLInputElement;\n\n\t\t\t// set attributes\n\t\t\tvar attrs = ['autocorrect','autocapitalize','autocomplete'];\n\t\t\titerate(attrs,(attr) => {\n\t\t\t\tif( input.getAttribute(attr) ){\n\t\t\t\t\tsetAttr(control_input,{[attr]:input.getAttribute(attr)});\n\t\t\t\t}\n\t\t\t});\n\n\t\t\tcontrol_input.tabIndex = -1;\n\t\t\tcontrol.appendChild( control_input );\n\t\t\tthis.focus_node\t\t= control_input;\n\n\t\t// dom element\n\t\t}else if( settings.controlInput ){\n\t\t\tcontrol_input\t\t= getDom( settings.controlInput ) as HTMLInputElement;\n\t\t\tthis.focus_node\t\t= control_input;\n\n\t\t}else{\n\t\t\tcontrol_input\t\t= getDom('<input/>') as HTMLInputElement;\n\t\t\tthis.focus_node\t\t= control;\n\t\t}\n\n\t\tthis.wrapper\t\t\t= wrapper;\n\t\tthis.dropdown\t\t\t= dropdown;\n\t\tthis.dropdown_content\t= dropdown_content;\n\t\tthis.control \t\t\t= control;\n\t\tthis.control_input\t\t= control_input;\n\n\t\tthis.setup();\n\t}\n\n\t/**\n\t * set up event bindings.\n\t *\n\t */\n\tsetup(){\n\n\t\tconst self = this;\n\t\tconst settings\t\t\t\t= self.settings;\n\t\tconst control_input\t\t\t= self.control_input;\n\t\tconst dropdown\t\t\t\t= self.dropdown;\n\t\tconst dropdown_content\t\t= self.dropdown_content;\n\t\tconst wrapper\t\t\t\t= self.wrapper;\n\t\tconst control\t\t\t\t= self.control;\n\t\tconst input\t\t\t\t\t= self.input;\n\t\tconst focus_node\t\t\t= self.focus_node;\n\t\tconst passive_event\t\t\t= { passive: true };\n\t\tconst listboxId\t\t\t\t= self.inputId +'-ts-dropdown';\n\n\n\t\tsetAttr(dropdown_content,{\n\t\t\tid: listboxId\n\t\t});\n\n\t\tsetAttr(focus_node,{\n\t\t\trole:'combobox',\n\t\t\t'aria-haspopup':'listbox',\n\t\t\t'aria-expanded':'false',\n\t\t\t'aria-controls':listboxId\n\t\t});\n\n\t\tconst control_id\t= getId(focus_node,self.inputId + '-ts-control');\n\t\tconst query\t\t\t= \"label[for='\"+escapeQuery(self.inputId)+\"']\";\n\t\tconst label\t\t\t= document.querySelector(query);\n\t\tconst label_click\t= self.focus.bind(self);\n\t\tif( label ){\n\t\t\taddEvent(label,'click', label_click );\n\t\t\tsetAttr(label,{for:control_id});\n\t\t\tconst label_id = getId(label,self.inputId+'-ts-label');\n\t\t\tsetAttr(focus_node,{'aria-labelledby':label_id});\n\t\t\tsetAttr(dropdown_content,{'aria-labelledby':label_id});\n\t\t}\n\n\t\twrapper.style.width = input.style.width;\n\n\t\tif (self.plugins.names.length) {\n\t\t\tconst classes_plugins = 'plugin-' + self.plugins.names.join(' plugin-');\n\t\t\taddClasses( [wrapper,dropdown], classes_plugins);\n\t\t}\n\n\t\tif ((settings.maxItems === null || settings.maxItems > 1) && self.is_select_tag ){\n\t\t\tsetAttr(input,{multiple:'multiple'});\n\t\t}\n\n\t\tif (settings.placeholder) {\n\t\t\tsetAttr(control_input,{placeholder:settings.placeholder});\n\t\t}\n\n\t\t// if splitOn was not passed in, construct it from the delimiter to allow pasting universally\n\t\tif (!settings.splitOn && settings.delimiter) {\n\t\t\tsettings.splitOn = new RegExp('\\\\s*' + escape_regex(settings.delimiter) + '+\\\\s*');\n\t\t}\n\n\t\t// debounce user defined load() if loadThrottle > 0\n\t\t// after initializePlugins() so plugins can create/modify user defined loaders\n\t\tif( settings.load && settings.loadThrottle ){\n\t\t\tsettings.load = loadDebounce(settings.load,settings.loadThrottle)\n\t\t}\n\n\t\tself.control_input.type\t= input.type;\n\n\t\taddEvent(dropdown,'mouseenter', (e) => {\n\n\t\t\tvar target_match = parentMatch(e.target as HTMLElement, '[data-selectable]', dropdown);\n\t\t\tif( target_match ) self.onOptionHover( e as MouseEvent, target_match );\n\n\t\t}, {capture:true});\n\n\t\t// clicking on an option should select it\n\t\taddEvent(dropdown,'click',(evt) => {\n\t\t\tconst option = parentMatch(evt.target as HTMLElement, '[data-selectable]');\n\t\t\tif( option ){\n\t\t\t\tself.onOptionSelect( evt as MouseEvent, option );\n\t\t\t\tpreventDefault(evt,true);\n\t\t\t}\n\t\t});\n\n\t\taddEvent(control,'click', (evt) => {\n\n\t\t\tvar target_match = parentMatch( evt.target as HTMLElement, '[data-ts-item]', control);\n\t\t\tif( target_match && self.onItemSelect(evt as MouseEvent, target_match as TomItem) ){\n\t\t\t\tpreventDefault(evt,true);\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// retain focus (see control_input mousedown)\n\t\t\tif( control_input.value != '' ){\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tself.onClick();\n\t\t\tpreventDefault(evt,true);\n\t\t});\n\n\n\t\t// keydown on focus_node for arrow_down/arrow_up\n\t\taddEvent(focus_node,'keydown',\t\t(e) => self.onKeyDown(e as KeyboardEvent) );\n\n\t\t// keypress and input/keyup\n\t\taddEvent(control_input,'keypress',\t(e) => self.onKeyPress(e as KeyboardEvent) );\n\t\taddEvent(control_input,'input',\t\t(e) => self.onInput(e as KeyboardEvent) );\n\n\t\taddEvent(focus_node,'resize',\t\t() => self.positionDropdown(), passive_event);\n\t\taddEvent(focus_node,'blur', \t\t(e) => self.onBlur(e as FocusEvent) );\n\t\taddEvent(focus_node,'focus',\t\t(e) => self.onFocus(e as MouseEvent) );\n\t\taddEvent(control_input,'paste',\t\t(e) => self.onPaste(e as MouseEvent) );\n\n\n\t\tconst doc_mousedown = (evt:Event) => {\n\n\t\t\t// blur if target is outside of this instance\n\t\t\t// dropdown is not always inside wrapper\n\t\t\tconst target = evt.composedPath()[0];\n\t\t\tif( !wrapper.contains(target as HTMLElement) && !dropdown.contains(target as HTMLElement) ){\n\t\t\t\tif (self.isFocused) {\n\t\t\t\t\tself.blur();\n\t\t\t\t}\n\t\t\t\tself.inputState();\n\t\t\t\treturn;\n\t\t\t}\n\n\n\t\t\t// retain focus by preventing native handling. if the\n\t\t\t// event target is the input it should not be modified.\n\t\t\t// otherwise, text selection within the input won't work.\n\t\t\t// Fixes bug #212 which is no covered by tests\n\t\t\tif( target == control_input && self.isOpen ){\n\t\t\t\tevt.stopPropagation();\n\n\t\t\t// clicking anywhere in the control should not blur the control_input (which would close the dropdown)\n\t\t\t}else{\n\t\t\t\tpreventDefault(evt,true);\n\t\t\t}\n\n\t\t};\n\n\t\tconst win_scroll = () => {\n\t\t\tif (self.isOpen) {\n\t\t\t\tself.positionDropdown();\n\t\t\t}\n\t\t};\n\n\t\tconst win_hover = () => {\n\t\t\tself.ignoreHover = false;\n\t\t};\n\n\t\taddEvent(document,'mousedown', doc_mousedown);\n\t\taddEvent(window,'scroll', win_scroll, passive_event);\n\t\taddEvent(window,'resize', win_scroll, passive_event);\n\t\taddEvent(window,'mousemove', win_hover, passive_event);\n\n\t\tthis._destroy = () => {\n\t\t\tdocument.removeEventListener('mousedown',doc_mousedown);\n\t\t\twindow.removeEventListener('mousemove',win_hover);\n\t\t\twindow.removeEventListener('scroll',win_scroll);\n\t\t\twindow.removeEventListener('resize',win_scroll);\n\t\t\tif( label ) label.removeEventListener('click',label_click);\n\t\t};\n\n\t\t// store original html and tab index so that they can be\n\t\t// restored when the destroy() method is called.\n\t\tthis.revertSettings = {\n\t\t\tinnerHTML : input.innerHTML,\n\t\t\ttabIndex : input.tabIndex\n\t\t};\n\n\n\t\tinput.tabIndex = -1;\n\t\tinput.insertAdjacentElement('afterend', self.wrapper);\n\n\t\tself.sync(false);\n\t\tsettings.items = [];\n\t\tdelete settings.optgroups;\n\t\tdelete settings.options;\n\n\t\taddEvent(input,'invalid', (e) => {\n\t\t\tif( self.isValid ){\n\t\t\t\tself.isValid = false;\n\t\t\t\tself.isInvalid = true;\n\t\t\t\tself.refreshState();\n\t\t\t}\n\t\t});\n\n\t\tself.updateOriginalInput();\n\t\tself.refreshItems();\n\t\tself.close(false);\n\t\tself.inputState();\n\t\tself.isSetup = true;\n\n\t\tif( input.disabled ){\n\t\t\tself.disable();\n\t\t}else{\n\t\t\tself.enable(); //sets tabIndex\n\t\t}\n\n\t\tself.on('change', this.onChange);\n\n\t\taddClasses(input,'tomselected','ts-hidden-accessible');\n\t\tself.trigger('initialize');\n\n\t\t// preload options\n\t\tif (settings.preload === true) {\n\t\t\tself.preload();\n\t\t}\n\n\t}\n\n\n\t/**\n\t * Register options and optgroups\n\t *\n\t */\n\tsetupOptions(options:TomOption[] = [], optgroups:TomOption[] = []){\n\n\t\t// build options table\n\t\tthis.addOptions(options);\n\n\n\t\t// build optgroup table\n\t\titerate( optgroups, (optgroup) => {\n\t\t\tthis.registerOptionGroup(optgroup);\n\t\t});\n\t}\n\n\t/**\n\t * Sets up default rendering functions.\n\t */\n\tsetupTemplates() {\n\t\tvar self = this;\n\t\tvar field_label = self.settings.labelField;\n\t\tvar field_optgroup = self.settings.optgroupLabelField;\n\n\t\tvar templates = {\n\t\t\t'optgroup': (data:TomOption) => {\n\t\t\t\tlet optgroup = document.createElement('div');\n\t\t\t\toptgroup.className = 'optgroup';\n\t\t\t\toptgroup.appendChild(data.options);\n\t\t\t\treturn optgroup;\n\n\t\t\t},\n\t\t\t'optgroup_header': (data:TomOption, escape:typeof escape_html) => {\n\t\t\t\treturn '<div class=\"optgroup-header\">' + escape(data[field_optgroup]) + '</div>';\n\t\t\t},\n\t\t\t'option': (data:TomOption, escape:typeof escape_html) => {\n\t\t\t\treturn '<div>' + escape(data[field_label]) + '</div>';\n\t\t\t},\n\t\t\t'item': (data:TomOption, escape:typeof escape_html) => {\n\t\t\t\treturn '<div>' + escape(data[field_label]) + '</div>';\n\t\t\t},\n\t\t\t'option_create': (data:TomOption, escape:typeof escape_html) => {\n\t\t\t\treturn '<div class=\"create\">Add <strong>' + escape(data.input) + '</strong>&hellip;</div>';\n\t\t\t},\n\t\t\t'no_results':() => {\n\t\t\t\treturn '<div class=\"no-results\">No results found</div>';\n\t\t\t},\n\t\t\t'loading':() => {\n\t\t\t\treturn '<div class=\"spinner\"></div>';\n\t\t\t},\n\t\t\t'not_loading':() => {},\n\t\t\t'dropdown':() => {\n\t\t\t\treturn '<div></div>';\n\t\t\t}\n\t\t};\n\n\n\t\tself.settings.render = Object.assign({}, templates, self.settings.render);\n\t}\n\n\t/**\n\t * Maps fired events to callbacks provided\n\t * in the settings used when creating the control.\n\t */\n\tsetupCallbacks() {\n\t\tvar key, fn;\n\t\tvar callbacks:{[key:string]:string} = {\n\t\t\t'initialize'      : 'onInitialize',\n\t\t\t'change'          : 'onChange',\n\t\t\t'item_add'        : 'onItemAdd',\n\t\t\t'item_remove'     : 'onItemRemove',\n\t\t\t'item_select'     : 'onItemSelect',\n\t\t\t'clear'           : 'onClear',\n\t\t\t'option_add'      : 'onOptionAdd',\n\t\t\t'option_remove'   : 'onOptionRemove',\n\t\t\t'option_clear'    : 'onOptionClear',\n\t\t\t'optgroup_add'    : 'onOptionGroupAdd',\n\t\t\t'optgroup_remove' : 'onOptionGroupRemove',\n\t\t\t'optgroup_clear'  : 'onOptionGroupClear',\n\t\t\t'dropdown_open'   : 'onDropdownOpen',\n\t\t\t'dropdown_close'  : 'onDropdownClose',\n\t\t\t'type'            : 'onType',\n\t\t\t'load'            : 'onLoad',\n\t\t\t'focus'           : 'onFocus',\n\t\t\t'blur'            : 'onBlur'\n\t\t};\n\n\t\tfor (key in callbacks) {\n\n\t\t\tfn = this.settings[callbacks[key] as (keyof TomSettings)];\n\t\t\tif (fn) this.on(key, fn);\n\n\t\t}\n\t}\n\n\t/**\n\t * Sync the Tom Select instance with the original input or select\n\t *\n\t */\n\tsync(get_settings:boolean=true):void{\n\t\tconst self\t\t= this;\n\t\tconst settings\t= get_settings ? getSettings( self.input, {delimiter:self.settings.delimiter} as TomSettings ) : self.settings;\n\n\t\tself.setupOptions(settings.options,settings.optgroups);\n\n\t\tself.setValue(settings.items||[],true); // silent prevents recursion\n\n\t\tself.lastQuery = null; // so updated options will be displayed in dropdown\n\t}\n\n\t/**\n\t * Triggered when the main control element\n\t * has a click event.\n\t *\n\t */\n\tonClick():void {\n\t\tvar self = this;\n\n\t\tif( self.activeItems.length > 0 ){\n\t\t\tself.clearActiveItems();\n\t\t\tself.focus();\n\t\t\treturn;\n\t\t}\n\n\t\tif( self.isFocused && self.isOpen ){\n\t\t\tself.blur();\n\t\t} else {\n\t\t\tself.focus();\n\t\t}\n\t}\n\n\t/**\n\t * @deprecated v1.7\n\t *\n\t */\n\tonMouseDown():void {}\n\n\t/**\n\t * Triggered when the value of the control has been changed.\n\t * This should propagate the event to the original DOM\n\t * input / select element.\n\t */\n\tonChange() {\n\t\ttriggerEvent(this.input, 'input');\n\t\ttriggerEvent(this.input, 'change');\n\t}\n\n\t/**\n\t * Triggered on <input> paste.\n\t *\n\t */\n\tonPaste(e:MouseEvent|KeyboardEvent):void {\n\t\tvar self = this;\n\n\t\tif( self.isInputHidden || self.isLocked ){\n\t\t\tpreventDefault(e);\n\t\t\treturn;\n\t\t}\n\n\t\t// If a regex or string is included, this will split the pasted\n\t\t// input and create Items for each separate value\n\t\tif( !self.settings.splitOn ){\n\t\t\treturn;\n\t\t}\n\n\t\t// Wait for pasted text to be recognized in value\n\t\tsetTimeout(() => {\n\t\t\tvar pastedText = self.inputValue();\n\t\t\tif( !pastedText.match(self.settings.splitOn)){\n\t\t\t\treturn\n\t\t\t}\n\n\t\t\tvar splitInput = pastedText.trim().split(self.settings.splitOn);\n\t\t\titerate( splitInput, (piece) => {\n\n\t\t\t\tpiece = hash_key(piece);\n\t\t\t\tif( this.options[piece] ){\n\t\t\t\t\tself.addItem(piece);\n\t\t\t\t}else{\n\t\t\t\t\tself.createItem(piece);\n\t\t\t\t}\n\t\t\t});\n\t\t}, 0);\n\n\t}\n\n\t/**\n\t * Triggered on <input> keypress.\n\t *\n\t */\n\tonKeyPress(e:KeyboardEvent):void {\n\t\tvar self = this;\n\t\tif(self.isLocked){\n\t\t\tpreventDefault(e);\n\t\t\treturn;\n\t\t}\n\t\tvar character = String.fromCharCode(e.keyCode || e.which);\n\t\tif (self.settings.create && self.settings.mode === 'multi' && character === self.settings.delimiter) {\n\t\t\tself.createItem();\n\t\t\tpreventDefault(e);\n\t\t\treturn;\n\t\t}\n\t}\n\n\t/**\n\t * Triggered on <input> keydown.\n\t *\n\t */\n\tonKeyDown(e:KeyboardEvent):void {\n\t\tvar self = this;\n\n\t\tself.ignoreHover = true;\n\n\t\tif (self.isLocked) {\n\t\t\tif (e.keyCode !== constants.KEY_TAB) {\n\t\t\t\tpreventDefault(e);\n\t\t\t}\n\t\t\treturn;\n\t\t}\n\n\t\tswitch (e.keyCode) {\n\n\t\t\t// ctrl+A: select all\n\t\t\tcase constants.KEY_A:\n\t\t\t\tif( isKeyDown(constants.KEY_SHORTCUT,e) ){\n\t\t\t\t\tif( self.control_input.value == '' ){\n\t\t\t\t\t\tpreventDefault(e);\n\t\t\t\t\t\tself.selectAll();\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tbreak;\n\n\t\t\t// esc: close dropdown\n\t\t\tcase constants.KEY_ESC:\n\t\t\t\tif (self.isOpen) {\n\t\t\t\t\tpreventDefault(e,true);\n\t\t\t\t\tself.close();\n\t\t\t\t}\n\t\t\t\tself.clearActiveItems();\n\t\t\t\treturn;\n\n\t\t\t// down: open dropdown or move selection down\n\t\t\tcase constants.KEY_DOWN:\n\t\t\t\tif (!self.isOpen && self.hasOptions) {\n\t\t\t\t\tself.open();\n\t\t\t\t} else if (self.activeOption) {\n\t\t\t\t\tlet next = self.getAdjacent(self.activeOption, 1);\n\t\t\t\t\tif (next) self.setActiveOption(next);\n\t\t\t\t}\n\t\t\t\tpreventDefault(e);\n\t\t\t\treturn;\n\n\t\t\t// up: move selection up\n\t\t\tcase constants.KEY_UP:\n\t\t\t\tif (self.activeOption) {\n\t\t\t\t\tlet prev = self.getAdjacent(self.activeOption, -1);\n\t\t\t\t\tif (prev) self.setActiveOption(prev);\n\t\t\t\t}\n\t\t\t\tpreventDefault(e);\n\t\t\t\treturn;\n\n\t\t\t// return: select active option\n\t\t\tcase constants.KEY_RETURN:\n\t\t\t\tif( self.canSelect(self.activeOption) ){\n\t\t\t\t\tself.onOptionSelect(e,self.activeOption!);\n\t\t\t\t\tpreventDefault(e);\n\n\t\t\t\t// if the option_create=null, the dropdown might be closed\n\t\t\t\t}else if (self.settings.create && self.createItem()) {\n\t\t\t\t\tpreventDefault(e);\n\n\t\t\t\t// don't submit form when searching for a value\n\t\t\t\t}else if( document.activeElement == self.control_input && self.isOpen ){\n\t\t\t\t\tpreventDefault(e);\n\t\t\t\t}\n\n\t\t\t\treturn;\n\n\t\t\t// left: modifiy item selection to the left\n\t\t\tcase constants.KEY_LEFT:\n\t\t\t\tself.advanceSelection(-1, e);\n\t\t\t\treturn;\n\n\t\t\t// right: modifiy item selection to the right\n\t\t\tcase constants.KEY_RIGHT:\n\t\t\t\tself.advanceSelection(1, e);\n\t\t\t\treturn;\n\n\t\t\t// tab: select active option and/or create item\n\t\t\tcase constants.KEY_TAB:\n\n\t\t\t\tif( self.settings.selectOnTab ){\n\t\t\t\t\tif( self.canSelect(self.activeOption) ){\n\t\t\t\t\t\tself.onOptionSelect(e,self.activeOption!);\n\n\t\t\t\t\t\t// prevent default [tab] behaviour of jump to the next field\n\t\t\t\t\t\t// if select isFull, then the dropdown won't be open and [tab] will work normally\n\t\t\t\t\t\tpreventDefault(e);\n\t\t\t\t\t}\n\t\t\t\t\tif (self.settings.create && self.createItem()) {\n\t\t\t\t\t\tpreventDefault(e);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn;\n\n\t\t\t// delete|backspace: delete items\n\t\t\tcase constants.KEY_BACKSPACE:\n\t\t\tcase constants.KEY_DELETE:\n\t\t\t\tself.deleteSelection(e);\n\t\t\t\treturn;\n\t\t}\n\n\t\t// don't enter text in the control_input when active items are selected\n\t\tif( self.isInputHidden && !isKeyDown(constants.KEY_SHORTCUT,e) ){\n\t\t\tpreventDefault(e);\n\t\t}\n\t}\n\n\t/**\n\t * Triggered on <input> keyup.\n\t *\n\t */\n\tonInput(e:MouseEvent|KeyboardEvent):void {\n\t\tvar self = this;\n\n\t\tif( self.isLocked ){\n\t\t\treturn;\n\t\t}\n\n\t\tvar value = self.inputValue();\n\t\tif (self.lastValue !== value) {\n\t\t\tself.lastValue = value;\n\n\t\t\tif( self.settings.shouldLoad.call(self,value) ){\n\t\t\t\tself.load(value);\n\t\t\t}\n\n\t\t\tself.refreshOptions();\n\t\t\tself.trigger('type', value);\n\t\t}\n\t}\n\n\t/**\n\t * Triggered when the user rolls over\n\t * an option in the autocomplete dropdown menu.\n\t *\n\t */\n\tonOptionHover( evt:MouseEvent|KeyboardEvent, option:HTMLElement ):void{\n\t\tif( this.ignoreHover ) return;\n\t\tthis.setActiveOption(option, false);\n\t}\n\n\t/**\n\t * Triggered on <input> focus.\n\t *\n\t */\n\tonFocus(e?:MouseEvent|KeyboardEvent):void {\n\t\tvar self = this;\n\t\tvar wasFocused = self.isFocused;\n\n\t\tif (self.isDisabled) {\n\t\t\tself.blur();\n\t\t\tpreventDefault(e);\n\t\t\treturn;\n\t\t}\n\n\t\tif (self.ignoreFocus) return;\n\t\tself.isFocused = true;\n\t\tif( self.settings.preload === 'focus' ) self.preload();\n\n\t\tif (!wasFocused) self.trigger('focus');\n\n\t\tif (!self.activeItems.length) {\n\t\t\tself.showInput();\n\t\t\tself.refreshOptions(!!self.settings.openOnFocus);\n\t\t}\n\n\t\tself.refreshState();\n\t}\n\n\t/**\n\t * Triggered on <input> blur.\n\t *\n\t */\n\tonBlur(e?:FocusEvent):void {\n\n\t\tif( document.hasFocus() === false ) return;\n\n\t\tvar self = this;\n\t\tif (!self.isFocused) return;\n\t\tself.isFocused = false;\n\t\tself.ignoreFocus = false;\n\n\t\tvar deactivate = () => {\n\t\t\tself.close();\n\t\t\tself.setActiveItem();\n\t\t\tself.setCaret(self.items.length);\n\t\t\tself.trigger('blur');\n\t\t};\n\n\t\tif (self.settings.create && self.settings.createOnBlur) {\n\t\t\tself.createItem(null, false, deactivate);\n\t\t} else {\n\t\t\tdeactivate();\n\t\t}\n\t}\n\n\n\t/**\n\t * Triggered when the user clicks on an option\n\t * in the autocomplete dropdown menu.\n\t *\n\t */\n\tonOptionSelect( evt:MouseEvent|KeyboardEvent, option:HTMLElement ){\n\t\tvar value, self = this;\n\n\n\t\t// should not be possible to trigger a option under a disabled optgroup\n\t\tif( option.parentElement && option.parentElement.matches('[data-disabled]') ){\n\t\t\treturn;\n\t\t}\n\n\n\t\tif( option.classList.contains('create') ){\n\t\t\tself.createItem(null, true, () => {\n\t\t\t\tif (self.settings.closeAfterSelect) {\n\t\t\t\t\tself.close();\n\t\t\t\t}\n\t\t\t});\n\t\t} else {\n\t\t\tvalue = option.dataset.value;\n\t\t\tif (typeof value !== 'undefined') {\n\t\t\t\tself.lastQuery = null;\n\t\t\t\tself.addItem(value);\n\t\t\t\tif (self.settings.closeAfterSelect) {\n\t\t\t\t\tself.close();\n\t\t\t\t}\n\n\t\t\t\tif( !self.settings.hideSelected && evt.type && /click/.test(evt.type) ){\n\t\t\t\t\tself.setActiveOption(option);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t * Return true if the given option can be selected\n\t *\n\t */\n\tcanSelect(option:HTMLElement|null):boolean{\n\n\t\tif( this.isOpen && option && this.dropdown_content.contains(option) ) {\n\t\t\treturn true;\n\t\t}\n\t\treturn false;\n\t}\n\n\t/**\n\t * Triggered when the user clicks on an item\n\t * that has been selected.\n\t *\n\t */\n\tonItemSelect( evt?:MouseEvent, item?:TomItem ):boolean{\n\t\tvar self = this;\n\n\t\tif( !self.isLocked && self.settings.mode === 'multi' ){\n\t\t\tpreventDefault(evt);\n\t\t\tself.setActiveItem(item, evt);\n\t\t\treturn true;\n\t\t}\n\t\treturn false;\n\t}\n\n\t/**\n\t * Determines whether or not to invoke\n\t * the user-provided option provider / loader\n\t *\n\t * Note, there is a subtle difference between\n\t * this.canLoad() and this.settings.shouldLoad();\n\t *\n\t *\t- settings.shouldLoad() is a user-input validator.\n\t *\tWhen false is returned, the not_loading template\n\t *\twill be added to the dropdown\n\t *\n\t *\t- canLoad() is lower level validator that checks\n\t * \tthe Tom Select instance. There is no inherent user\n\t *\tfeedback when canLoad returns false\n\t *\n\t */\n\tcanLoad(value:string):boolean{\n\n\t\tif( !this.settings.load ) return false;\n\t\tif( this.loadedSearches.hasOwnProperty(value) ) return false;\n\n\t\treturn true;\n\t}\n\n\t/**\n\t * Invokes the user-provided option provider / loader.\n\t *\n\t */\n\tload(value:string):void {\n\t\tconst self = this;\n\n\t\tif( !self.canLoad(value) ) return;\n\n\t\taddClasses(self.wrapper,self.settings.loadingClass);\n\t\tself.loading++;\n\n\t\tconst callback = self.loadCallback.bind(self);\n\t\tself.settings.load.call(self, value, callback);\n\t}\n\n\t/**\n\t * Invoked by the user-provided option provider\n\t *\n\t */\n\tloadCallback( options:TomOption[], optgroups:TomOption[] ):void{\n\t\tconst self = this;\n\t\tself.loading = Math.max(self.loading - 1, 0);\n\t\tself.lastQuery = null;\n\n\t\tself.clearActiveOption(); // when new results load, focus should be on first option\n\t\tself.setupOptions(options,optgroups);\n\n\t\tself.refreshOptions(self.isFocused && !self.isInputHidden);\n\n\t\tif (!self.loading) {\n\t\t\tremoveClasses(self.wrapper,self.settings.loadingClass);\n\t\t}\n\n\t\tself.trigger('load', options, optgroups);\n\t}\n\n\tpreload():void{\n\t\tvar classList = this.wrapper.classList;\n\t\tif( classList.contains('preloaded') ) return;\n\t\tclassList.add('preloaded');\n\t\tthis.load('');\n\t}\n\n\n\t/**\n\t * Sets the input field of the control to the specified value.\n\t *\n\t */\n\tsetTextboxValue(value:string = '') {\n\t\tvar input = this.control_input;\n\t\tvar changed = input.value !== value;\n\t\tif (changed) {\n\t\t\tinput.value = value;\n\t\t\ttriggerEvent(input,'update');\n\t\t\tthis.lastValue = value;\n\t\t}\n\t}\n\n\t/**\n\t * Returns the value of the control. If multiple items\n\t * can be selected (e.g. <select multiple>), this returns\n\t * an array. If only one item can be selected, this\n\t * returns a string.\n\t *\n\t */\n\tgetValue():string|string[] {\n\n\t\tif( this.is_select_tag && this.input.hasAttribute('multiple')) {\n\t\t\treturn this.items;\n\t\t}\n\n\t\treturn this.items.join(this.settings.delimiter);\n\t}\n\n\t/**\n\t * Resets the selected items to the given value.\n\t *\n\t */\n\tsetValue( value:string|string[], silent?:boolean ):void{\n\t\tvar events = silent ? [] : ['change'];\n\n\t\tdebounce_events(this, events,() => {\n\t\t\tthis.clear(silent);\n\t\t\tthis.addItems(value, silent);\n\t\t});\n\t}\n\n\n\t/**\n\t * Resets the number of max items to the given value\n\t *\n\t */\n\tsetMaxItems(value:null|number){\n\t\tif(value === 0) value = null; //reset to unlimited items.\n\t\tthis.settings.maxItems = value;\n\t\tthis.refreshState();\n\t}\n\n\t/**\n\t * Sets the selected item.\n\t *\n\t */\n\tsetActiveItem( item?:TomItem, e?:MouseEvent|KeyboardEvent ){\n\t\tvar self = this;\n\t\tvar eventName;\n\t\tvar i, begin, end, swap;\n\t\tvar last;\n\n\t\tif (self.settings.mode === 'single') return;\n\n\t\t// clear the active selection\n\t\tif( !item ){\n\t\t\tself.clearActiveItems();\n\t\t\tif (self.isFocused) {\n\t\t\t\tself.showInput();\n\t\t\t}\n\t\t\treturn;\n\t\t}\n\n\t\t// modify selection\n\t\teventName = e && e.type.toLowerCase();\n\n\t\tif (eventName === 'click' && isKeyDown('shiftKey',e) && self.activeItems.length) {\n\t\t\tlast\t= self.getLastActive();\n\t\t\tbegin\t= Array.prototype.indexOf.call(self.control.children, last);\n\t\t\tend\t\t= Array.prototype.indexOf.call(self.control.children, item);\n\n\t\t\tif (begin > end) {\n\t\t\t\tswap  = begin;\n\t\t\t\tbegin = end;\n\t\t\t\tend   = swap;\n\t\t\t}\n\t\t\tfor (i = begin; i <= end; i++) {\n\t\t\t\titem = self.control.children[i] as TomItem;\n\t\t\t\tif (self.activeItems.indexOf(item) === -1) {\n\t\t\t\t\tself.setActiveItemClass(item);\n\t\t\t\t}\n\t\t\t}\n\t\t\tpreventDefault(e);\n\t\t} else if ((eventName === 'click' && isKeyDown(constants.KEY_SHORTCUT,e) ) || (eventName === 'keydown' && isKeyDown('shiftKey',e))) {\n\t\t\tif( item.classList.contains('active') ){\n\t\t\t\tself.removeActiveItem( item );\n\t\t\t} else {\n\t\t\t\tself.setActiveItemClass(item);\n\t\t\t}\n\t\t} else {\n\t\t\tself.clearActiveItems();\n\t\t\tself.setActiveItemClass(item);\n\t\t}\n\n\t\t// ensure control has focus\n\t\tself.hideInput();\n\t\tif (!self.isFocused) {\n\t\t\tself.focus();\n\t\t}\n\t}\n\n\t/**\n\t * Set the active and last-active classes\n\t *\n\t */\n\tsetActiveItemClass( item:TomItem ){\n\t\tconst self = this;\n\t\tconst last_active = self.control.querySelector('.last-active');\n\t\tif( last_active ) removeClasses(last_active as HTMLElement,'last-active');\n\n\t\taddClasses(item,'active last-active');\n\t\tself.trigger('item_select', item);\n\t\tif( self.activeItems.indexOf(item) == -1 ){\n\t\t\tself.activeItems.push( item );\n\t\t}\n\t}\n\n\t/**\n\t * Remove active item\n\t *\n\t */\n\tremoveActiveItem( item:TomItem ){\n\t\tvar idx = this.activeItems.indexOf(item);\n\t\tthis.activeItems.splice(idx, 1);\n\t\tremoveClasses(item,'active');\n\t}\n\n\t/**\n\t * Clears all the active items\n\t *\n\t */\n\tclearActiveItems(){\n\t\tremoveClasses(this.activeItems,'active');\n\t\tthis.activeItems = [];\n\t}\n\n\t/**\n\t * Sets the selected item in the dropdown menu\n\t * of available options.\n\t *\n\t */\n\tsetActiveOption( option:null|HTMLElement,scroll:boolean=true ):void{\n\n\t\tif( option === this.activeOption ){\n\t\t\treturn;\n\t\t}\n\n\t\tthis.clearActiveOption();\n\t\tif( !option ) return;\n\n\t\tthis.activeOption = option;\n\t\tsetAttr(this.focus_node,{'aria-activedescendant':option.getAttribute('id')});\n\t\tsetAttr(option,{'aria-selected':'true'});\n\t\taddClasses(option,'active');\n\t\tif( scroll ) this.scrollToOption(option);\n\t}\n\n\t/**\n\t * Sets the dropdown_content scrollTop to display the option\n\t *\n\t */\n\tscrollToOption( option:null|HTMLElement, behavior?:string ):void{\n\n\t\tif( !option ) return;\n\n\t\tconst content\t\t= this.dropdown_content;\n\t\tconst height_menu\t= content.clientHeight;\n\t\tconst scrollTop\t\t= content.scrollTop || 0;\n\t\tconst height_item\t= option.offsetHeight;\n\t\tconst y\t\t\t\t= option.getBoundingClientRect().top - content.getBoundingClientRect().top + scrollTop;\n\n\t\tif (y + height_item > height_menu + scrollTop) {\n\t\t\tthis.scroll(y - height_menu + height_item, behavior);\n\n\t\t} else if (y < scrollTop) {\n\t\t\tthis.scroll(y, behavior);\n\t\t}\n\t}\n\n\t/**\n\t * Scroll the dropdown to the given position\n\t *\n\t */\n\tscroll( scrollTop:number, behavior?:string ):void{\n\t\tconst content = this.dropdown_content;\n\t\tif( behavior ){\n\t\t\tcontent.style.scrollBehavior = behavior;\n\t\t}\n\t\tcontent.scrollTop = scrollTop;\n\t\tcontent.style.scrollBehavior = '';\n\t}\n\n\t/**\n\t * Clears the active option\n\t *\n\t */\n\tclearActiveOption(){\n\t\tif( this.activeOption ){\n\t\t\tremoveClasses(this.activeOption,'active');\n\t\t\tsetAttr(this.activeOption,{'aria-selected':null});\n\t\t}\n\t\tthis.activeOption = null;\n\t\tsetAttr(this.focus_node,{'aria-activedescendant':null});\n\t}\n\n\n\t/**\n\t * Selects all items (CTRL + A).\n\t */\n\tselectAll() {\n\t\tconst self = this;\n\n\t\tif (self.settings.mode === 'single') return;\n\n\t\tconst activeItems = self.controlChildren();\n\n\t\tif( !activeItems.length ) return;\n\n\t\tself.hideInput();\n\t\tself.close();\n\n\t\tself.activeItems = activeItems;\n\t\titerate( activeItems, (item) => {\n\t\t\tself.setActiveItemClass(item);\n\t\t});\n\n\t}\n\n\t/**\n\t * Determines if the control_input should be in a hidden or visible state\n\t *\n\t */\n\tinputState(){\n\t\tvar self = this;\n\n\t\tif( !self.control.contains(self.control_input) ) return;\n\n\t\tsetAttr(self.control_input,{placeholder:self.settings.placeholder});\n\n\t\tif( self.activeItems.length > 0 || (!self.isFocused && self.settings.hidePlaceholder && self.items.length > 0) ){\n\t\t\tself.setTextboxValue();\n\t\t\tself.isInputHidden = true;\n\n\t\t}else{\n\n\t\t\tif( self.settings.hidePlaceholder && self.items.length > 0 ){\n\t\t\t\tsetAttr(self.control_input,{placeholder:''});\n\t\t\t}\n\t\t\tself.isInputHidden = false;\n\t\t}\n\n\t\tself.wrapper.classList.toggle('input-hidden', self.isInputHidden );\n\t}\n\n\t/**\n\t * Hides the input element out of view, while\n\t * retaining its focus.\n\t * @deprecated 1.3\n\t */\n\thideInput() {\n\t\tthis.inputState();\n\t}\n\n\t/**\n\t * Restores input visibility.\n\t * @deprecated 1.3\n\t */\n\tshowInput() {\n\t\tthis.inputState();\n\t}\n\n\t/**\n\t * Get the input value\n\t */\n\tinputValue(){\n\t\treturn this.control_input.value.trim();\n\t}\n\n\t/**\n\t * Gives the control focus.\n\t */\n\tfocus() {\n\t\tvar self = this;\n\t\tif (self.isDisabled) return;\n\n\t\tself.ignoreFocus = true;\n\n\t\tif( self.control_input.offsetWidth ){\n\t\t\tself.control_input.focus();\n\t\t}else{\n\t\t\tself.focus_node.focus();\n\t\t}\n\n\t\tsetTimeout(() => {\n\t\t\tself.ignoreFocus = false;\n\t\t\tself.onFocus();\n\t\t}, 0);\n\t}\n\n\t/**\n\t * Forces the control out of focus.\n\t *\n\t */\n\tblur():void {\n\t\tthis.focus_node.blur();\n\t\tthis.onBlur();\n\t}\n\n\t/**\n\t * Returns a function that scores an object\n\t * to show how good of a match it is to the\n\t * provided query.\n\t *\n\t * @return {function}\n\t */\n\tgetScoreFunction(query:string) {\n\t\treturn this.sifter.getScoreFunction(query, this.getSearchOptions());\n\t}\n\n\t/**\n\t * Returns search options for sifter (the system\n\t * for scoring and sorting results).\n\t *\n\t * @see https://github.com/orchidjs/sifter.js\n\t * @return {object}\n\t */\n\tgetSearchOptions() {\n\t\tvar settings = this.settings;\n\t\tvar sort = settings.sortField;\n\t\tif (typeof settings.sortField === 'string') {\n\t\t\tsort = [{field: settings.sortField}];\n\t\t}\n\n\t\treturn {\n\t\t\tfields      : settings.searchField,\n\t\t\tconjunction : settings.searchConjunction,\n\t\t\tsort        : sort,\n\t\t\tnesting     : settings.nesting\n\t\t};\n\t}\n\n\t/**\n\t * Searches through available options and returns\n\t * a sorted array of matches.\n\t *\n\t */\n\tsearch(query:string) : ReturnType<Sifter['search']>{\n\t\tvar i, result, calculateScore;\n\t\tvar self     = this;\n\t\tvar options  = this.getSearchOptions();\n\n\t\t// validate user-provided result scoring function\n\t\tif ( self.settings.score ){\n\t\t\tcalculateScore = self.settings.score.call(self,query);\n\t\t\tif (typeof calculateScore !== 'function') {\n\t\t\t\tthrow new Error('Tom Select \"score\" setting must be a function that returns a function');\n\t\t\t}\n\t\t}\n\n\t\t// perform search\n\t\tif (query !== self.lastQuery) {\n\t\t\tself.lastQuery\t\t\t= query;\n\t\t\tresult\t\t\t\t\t= self.sifter.search(query, Object.assign(options, {score: calculateScore}));\n\t\t\tself.currentResults\t\t= result;\n\t\t} else {\n\t\t\tresult\t\t\t\t\t= Object.assign( {}, self.currentResults);\n\t\t}\n\n\t\t// filter out selected items\n\t\tif( self.settings.hideSelected ){\n\t\t\tfor (i = result.items.length - 1; i >= 0; i--) {\n\t\t\t\tlet hashed = hash_key(result.items[i].id);\n\t\t\t\tif( hashed && self.items.indexOf(hashed) !== -1 ){\n\t\t\t\t\tresult.items.splice(i, 1);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn result;\n\t}\n\n\t/**\n\t * Refreshes the list of available options shown\n\t * in the autocomplete dropdown menu.\n\t *\n\t */\n\trefreshOptions( triggerDropdown:boolean = true ){\n\t\tvar i, j, k, n, optgroup, optgroups, html:DocumentFragment, has_create_option, active_value, active_group;\n\t\tvar create;\n\t\tconst groups: {[key:string]:DocumentFragment} = {};\n\n\t\tconst groups_order:string[]\t= [];\n\t\tvar self\t\t\t\t\t= this;\n\t\tvar query\t\t\t\t\t= self.inputValue();\n\t\tvar results\t\t\t\t\t= self.search(query);\n\t\tvar active_option\t\t\t= null; //self.activeOption;\n\t\tvar show_dropdown\t\t\t= self.settings.shouldOpen || false;\n\t\tvar dropdown_content\t\t= self.dropdown_content;\n\n\t\tif( self.activeOption ){\n\t\t\tactive_value = self.activeOption.dataset.value;\n\t\t\tactive_group = self.activeOption.closest('[data-group]') as HTMLElement;\n\t\t}\n\n\t\t// build markup\n\t\tn = results.items.length;\n\t\tif (typeof self.settings.maxOptions === 'number') {\n\t\t\tn = Math.min(n, self.settings.maxOptions);\n\t\t}\n\n\t\tif( n > 0 ){\n\t\t\tshow_dropdown = true;\n\t\t}\n\n\t\t// render and group available options individually\n\t\tfor (i = 0; i < n; i++) {\n\n\t\t\t// get option dom element\n\t\t\tlet opt_value\t\t= results.items[i].id;\n\t\t\tlet option\t\t\t= self.options[opt_value];\n\t\t\tlet option_el\t\t= self.getOption(opt_value,true) as HTMLElement;\n\n\n\t\t\t// toggle 'selected' class\n\t\t\tif( !self.settings.hideSelected ){\n\t\t\t\toption_el.classList.toggle('selected', self.items.includes(opt_value) );\n\t\t\t}\n\n\t\t\toptgroup    = option[self.settings.optgroupField] || '';\n\t\t\toptgroups   = Array.isArray(optgroup) ? optgroup : [optgroup];\n\n\t\t\tfor (j = 0, k = optgroups && optgroups.length; j < k; j++) {\n\t\t\t\toptgroup = optgroups[j];\n\t\t\t\tif (!self.optgroups.hasOwnProperty(optgroup)) {\n\t\t\t\t\toptgroup = '';\n\t\t\t\t}\n\t\t\t\tif (!groups.hasOwnProperty(optgroup)) {\n\t\t\t\t\tgroups[optgroup] = document.createDocumentFragment();\n\t\t\t\t\tgroups_order.push(optgroup);\n\t\t\t\t}\n\n\t\t\t\t// nodes can only have one parent, so if the option is in mutple groups, we need a clone\n\t\t\t\tif( j > 0 ){\n\t\t\t\t\toption_el = option_el.cloneNode(true) as HTMLElement;\n\t\t\t\t\tsetAttr(option_el,{id: option.$id+'-clone-'+j,'aria-selected':null});\n\t\t\t\t\toption_el.classList.add('ts-cloned');\n\t\t\t\t\tremoveClasses(option_el,'active');\n\t\t\t\t}\n\n\t\t\t\t// make sure we keep the activeOption in the same group\n\t\t\t\tif( !active_option && active_value == opt_value ){\n\t\t\t\t\tif( active_group ){\n\t\t\t\t\t\tif( active_group.dataset.group === optgroup ){\n\t\t\t\t\t\t\tactive_option = option_el;\n\t\t\t\t\t\t}\n\t\t\t\t\t}else{\n\t\t\t\t\t\tactive_option = option_el;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tgroups[optgroup].appendChild(option_el);\n\t\t\t}\n\t\t}\n\n\t\t// sort optgroups\n\t\tif (this.settings.lockOptgroupOrder) {\n\t\t\tgroups_order.sort((a, b) => {\n\t\t\t\tvar a_order = self.optgroups[a] && self.optgroups[a].$order || 0;\n\t\t\t\tvar b_order = self.optgroups[b] && self.optgroups[b].$order || 0;\n\t\t\t\treturn a_order - b_order;\n\t\t\t});\n\t\t}\n\n\t\t// render optgroup headers & join groups\n\t\thtml = document.createDocumentFragment();\n\t\titerate( groups_order, (optgroup) => {\n\t\t\tif (self.optgroups.hasOwnProperty(optgroup) && groups[optgroup].children.length) {\n\n\t\t\t\tlet group_options = document.createDocumentFragment();\n\t\t\t\tlet header = self.render('optgroup_header', self.optgroups[optgroup]);\n\t\t\t\tappend( group_options, header );\n\t\t\t\tappend( group_options, groups[optgroup] );\n\n\t\t\t\tlet group_html = self.render('optgroup', {group:self.optgroups[optgroup],options:group_options} );\n\n\t\t\t\tappend( html, group_html );\n\n\t\t\t} else {\n\t\t\t\tappend( html, groups[optgroup] );\n\t\t\t}\n\t\t});\n\n\t\tdropdown_content.innerHTML = '';\n\t\tappend( dropdown_content, html );\n\n\t\t// highlight matching terms inline\n\t\tif (self.settings.highlight) {\n\t\t\tremoveHighlight( dropdown_content );\n\t\t\tif (results.query.length && results.tokens.length) {\n\t\t\t\titerate( results.tokens, (tok) => {\n\t\t\t\t\thighlight( dropdown_content, tok.regex);\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\n\t\t// helper method for adding templates to dropdown\n\t\tvar add_template = (template:TomTemplateNames) => {\n\t\t\tlet content = self.render(template,{input:query});\n\t\t\tif( content ){\n\t\t\t\tshow_dropdown = true;\n\t\t\t\tdropdown_content.insertBefore(content, dropdown_content.firstChild);\n\t\t\t}\n\t\t\treturn content;\n\t\t};\n\n\n\t\t// add loading message\n\t\tif( self.loading ){\n\t\t\tadd_template('loading');\n\n\t\t// invalid query\n\t\t}else if( !self.settings.shouldLoad.call(self,query) ){\n\t\t\tadd_template('not_loading');\n\n\t\t// add no_results message\n\t\t}else if( results.items.length === 0 ){\n\t\t\tadd_template('no_results');\n\n\t\t}\n\n\n\n\t\t// add create option\n\t\thas_create_option = self.canCreate(query);\n\t\tif (has_create_option) {\n\t\t\tcreate = add_template('option_create');\n\t\t}\n\n\n\t\t// activate\n\t\tself.hasOptions = results.items.length > 0 || has_create_option;\n\t\tif( show_dropdown ){\n\n\t\t\tif (results.items.length > 0) {\n\n\t\t\t\tif( !active_option && self.settings.mode === 'single' && self.items.length ){\n\t\t\t\t\tactive_option = self.getOption(self.items[0]);\n\t\t\t\t}\n\n\t\t\t\tif( !dropdown_content.contains(active_option)  ){\n\n\t\t\t\t\tlet active_index = 0;\n\t\t\t\t\tif( create && !self.settings.addPrecedence ){\n\t\t\t\t\t\tactive_index = 1;\n\t\t\t\t\t}\n\t\t\t\t\tactive_option = self.selectable()[active_index] as HTMLElement;\n\t\t\t\t}\n\n\t\t\t}else if( create ){\n\t\t\t\tactive_option = create;\n\t\t\t}\n\n\t\t\tif( triggerDropdown && !self.isOpen ){\n\t\t\t\tself.open();\n\t\t\t\tself.scrollToOption(active_option,'auto');\n\t\t\t}\n\t\t\tself.setActiveOption(active_option);\n\n\t\t}else{\n\t\t\tself.clearActiveOption();\n\t\t\tif( triggerDropdown && self.isOpen ){\n\t\t\t\tself.close(false); // if create_option=null, we want the dropdown to close but not reset the textbox value\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t * Return list of selectable options\n\t *\n\t */\n\tselectable():NodeList{\n\t\treturn this.dropdown_content.querySelectorAll('[data-selectable]');\n\t}\n\n\n\n\t/**\n\t * Adds an available option. If it already exists,\n\t * nothing will happen. Note: this does not refresh\n\t * the options list dropdown (use `refreshOptions`\n\t * for that).\n\t *\n\t * Usage:\n\t *\n\t *   this.addOption(data)\n\t *\n\t */\n\taddOption( data:TomOption, user_created = false ):false|string {\n\t\tconst self = this;\n\n\t\t// @deprecated 1.7.7\n\t\t// use addOptions( array, user_created ) for adding multiple options\n\t\tif( Array.isArray(data) ){\n\t\t\tself.addOptions( data, user_created);\n\t\t\treturn false;\n\t\t}\n\n\t\tconst key = hash_key(data[self.settings.valueField]);\n\t\tif( key === null || self.options.hasOwnProperty(key) ){\n\t\t\treturn false;\n\t\t}\n\n\t\tdata.$order\t\t\t= data.$order || ++self.order;\n\t\tdata.$id\t\t\t= self.inputId + '-opt-' + data.$order;\n\t\tself.options[key]\t= data;\n\t\tself.lastQuery\t\t= null;\n\n\t\tif( user_created ){\n\t\t\tself.userOptions[key] = user_created;\n\t\t\tself.trigger('option_add', key, data);\n\t\t}\n\n\t\treturn key;\n\t}\n\n\t/**\n\t * Add multiple options\n\t *\n\t */\n\taddOptions( data:TomOption[], user_created = false ):void{\n\t\titerate( data, (dat) => {\n\t\t\tthis.addOption(dat, user_created);\n\t\t});\n\t}\n\n\t/**\n\t * @deprecated 1.7.7\n\t */\n\tregisterOption( data:TomOption ):false|string {\n\t\treturn this.addOption(data);\n\t}\n\n\t/**\n\t * Registers an option group to the pool of option groups.\n\t *\n\t * @return {boolean|string}\n\t */\n\tregisterOptionGroup(data:TomOption) {\n\t\tvar key = hash_key(data[this.settings.optgroupValueField]);\n\n\t\tif ( key === null ) return false;\n\n\t\tdata.$order = data.$order || ++this.order;\n\t\tthis.optgroups[key] = data;\n\t\treturn key;\n\t}\n\n\t/**\n\t * Registers a new optgroup for options\n\t * to be bucketed into.\n\t *\n\t */\n\taddOptionGroup(id:string, data:TomOption) {\n\t\tvar hashed_id;\n\t\tdata[this.settings.optgroupValueField] = id;\n\n\t\tif( hashed_id = this.registerOptionGroup(data) ){\n\t\t\tthis.trigger('optgroup_add', hashed_id, data);\n\t\t}\n\t}\n\n\t/**\n\t * Removes an existing option group.\n\t *\n\t */\n\tremoveOptionGroup(id:string) {\n\t\tif (this.optgroups.hasOwnProperty(id)) {\n\t\t\tdelete this.optgroups[id];\n\t\t\tthis.clearCache();\n\t\t\tthis.trigger('optgroup_remove', id);\n\t\t}\n\t}\n\n\t/**\n\t * Clears all existing option groups.\n\t */\n\tclearOptionGroups() {\n\t\tthis.optgroups = {};\n\t\tthis.clearCache();\n\t\tthis.trigger('optgroup_clear');\n\t}\n\n\t/**\n\t * Updates an option available for selection. If\n\t * it is visible in the selected items or options\n\t * dropdown, it will be re-rendered automatically.\n\t *\n\t */\n\tupdateOption(value:string, data:TomOption) {\n\t\tconst self = this;\n\t\tvar item_new;\n\t\tvar index_item;\n\n\t\tconst value_old\t\t= hash_key(value);\n\t\tconst value_new\t\t= hash_key(data[self.settings.valueField]);\n\n\t\t// sanity checks\n\t\tif( value_old === null ) return;\n\t\tif( !self.options.hasOwnProperty(value_old) ) return;\n\t\tif( typeof value_new !== 'string' ) throw new Error('Value must be set in option data');\n\n\n\t\tconst option\t\t= self.getOption(value_old);\n\t\tconst item\t\t\t= self.getItem(value_old);\n\n\n\t\tdata.$order = data.$order || self.options[value_old].$order;\n\t\tdelete self.options[value_old];\n\n\t\t// invalidate render cache\n\t\t// don't remove existing node yet, we'll remove it after replacing it\n\t\tself.uncacheValue(value_new);\n\n\t\tself.options[value_new] = data;\n\n\t\t// update the option if it's in the dropdown\n\t\tif( option ){\n\t\t\tif( self.dropdown_content.contains(option) ){\n\n\t\t\t\tconst option_new\t= self._render('option', data);\n\t\t\t\treplaceNode(option, option_new);\n\n\t\t\t\tif( self.activeOption === option ){\n\t\t\t\t\tself.setActiveOption(option_new);\n\t\t\t\t}\n\t\t\t}\n\t\t\toption.remove();\n\t\t}\n\n\t\t// update the item if we have one\n\t\tif( item ){\n\t\t\tindex_item = self.items.indexOf(value_old);\n\t\t\tif (index_item !== -1) {\n\t\t\t\tself.items.splice(index_item, 1, value_new);\n\t\t\t}\n\n\t\t\titem_new\t= self._render('item', data);\n\n\t\t\tif( item.classList.contains('active') ) addClasses(item_new,'active');\n\n\t\t\treplaceNode( item, item_new);\n\t\t}\n\n\t\t// invalidate last query because we might have updated the sortField\n\t\tself.lastQuery = null;\n\t}\n\n\t/**\n\t * Removes a single option.\n\t *\n\t */\n\tremoveOption(value:string, silent?:boolean):void {\n\t\tconst self = this;\n\t\tvalue = get_hash(value);\n\n\t\tself.uncacheValue(value);\n\n\t\tdelete self.userOptions[value];\n\t\tdelete self.options[value];\n\t\tself.lastQuery = null;\n\t\tself.trigger('option_remove', value);\n\t\tself.removeItem(value, silent);\n\t}\n\n\t/**\n\t * Clears all options.\n\t */\n\tclearOptions(filter?:TomClearFilter ) {\n\n\t\tconst boundFilter = (filter || this.clearFilter).bind(this);\n\n\t\tthis.loadedSearches\t\t= {};\n\t\tthis.userOptions\t\t= {};\n\t\tthis.clearCache();\n\n\t\tconst selected:TomOptions\t= {};\n\t\titerate(this.options,(option,key)=>{\n\t\t\tif( boundFilter(option,key as string) ){\n\t\t\t\tselected[key] = this.options[key];\n\t\t\t}\n\t\t});\n\n\t\tthis.options = this.sifter.items = selected;\n\t\tthis.lastQuery = null;\n\t\tthis.trigger('option_clear');\n\t}\n\n\t/**\n\t * Used by clearOptions() to decide whether or not an option should be removed\n\t * Return true to keep an option, false to remove\n\t *\n\t */\n\tclearFilter(option:TomOption,value:string){\n\t\tif( this.items.indexOf(value) >= 0 ){\n\t\t\treturn true;\n\t\t}\n\t\treturn false;\n\t}\n\n\t/**\n\t * Returns the dom element of the option\n\t * matching the given value.\n\t *\n\t */\n\tgetOption(value:null|string, create:boolean=false):null|HTMLElement {\n\t\tconst hashed = hash_key(value);\n\n\t\tif( hashed !== null && this.options.hasOwnProperty(hashed) ){\n\t\t\tconst option = this.options[hashed];\n\n\t\t\tif( option.$div ){\n\t\t\t\treturn option.$div;\n\t\t\t}\n\n\t\t\tif( create ){\n\t\t\t\treturn this._render('option', option);\n\t\t\t}\n\t\t}\n\n\t\treturn null;\n\t}\n\n\t/**\n\t * Returns the dom element of the next or previous dom element of the same type\n\t * Note: adjacent options may not be adjacent DOM elements (optgroups)\n\t *\n\t */\n\tgetAdjacent( option:null|HTMLElement, direction:number, type:string = 'option' ) : HTMLElement|null{\n\t\tvar self = this, all;\n\n\t\tif( !option ){\n\t\t\treturn null;\n\t\t}\n\n\t\tif( type == 'item' ){\n\t\t\tall\t\t\t= self.controlChildren();\n\t\t}else{\n\t\t\tall\t\t\t= self.dropdown_content.querySelectorAll('[data-selectable]');\n\t\t}\n\n\t\tfor( let i = 0; i < all.length; i++ ){\n\t\t\tif( all[i] != option ){\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tif( direction > 0 ){\n\t\t\t\treturn all[i+1] as HTMLElement;\n\t\t\t}\n\n\t\t\treturn all[i-1] as HTMLElement;\n\t\t}\n\t\treturn null;\n\t}\n\n\n\t/**\n\t * Returns the dom element of the item\n\t * matching the given value.\n\t *\n\t */\n\tgetItem(item:string|TomItem|null):null|TomItem {\n\n\t\tif( typeof item == 'object' ){\n\t\t\treturn item;\n\t\t}\n\n\t\tvar value = hash_key(item);\n\t\treturn value !== null\n\t\t\t? this.control.querySelector(`[data-value=\"${addSlashes(value)}\"]`)\n\t\t\t: null;\n\t}\n\n\t/**\n\t * \"Selects\" multiple items at once. Adds them to the list\n\t * at the current caret position.\n\t *\n\t */\n\taddItems( values:string|string[], silent?:boolean ):void{\n\t\tvar self = this;\n\n\t\tvar items = Array.isArray(values) ? values : [values];\n\t\titems = items.filter(x => self.items.indexOf(x) === -1);\n\t\tfor (let i = 0, n = items.length; i < n; i++) {\n\t\t\tself.isPending = (i < n - 1);\n\t\t\tself.addItem(items[i], silent);\n\t\t}\n\t}\n\n\t/**\n\t * \"Selects\" an item. Adds it to the list\n\t * at the current caret position.\n\t *\n\t */\n\taddItem( value:string, silent?:boolean ):void{\n\t\tvar events = silent ? [] : ['change','dropdown_close'];\n\n\t\tdebounce_events(this, events, () => {\n\t\t\tvar item, wasFull;\n\t\t\tconst self = this;\n\t\t \tconst inputMode = self.settings.mode;\n\t\t\tconst hashed = hash_key(value);\n\n\t\t\tif( hashed && self.items.indexOf(hashed) !== -1 ){\n\n\t\t\t\tif( inputMode === 'single' ){\n\t\t\t\t\tself.close();\n\t\t\t\t}\n\n\t\t\t\tif( inputMode === 'single' || !self.settings.duplicates ){\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (hashed === null || !self.options.hasOwnProperty(hashed)) return;\n\t\t\tif (inputMode === 'single') self.clear(silent);\n\t\t\tif (inputMode === 'multi' && self.isFull()) return;\n\n\t\t\titem = self._render('item', self.options[hashed]);\n\n\t\t\tif( self.control.contains(item) ){ // duplicates\n\t\t\t\titem = item.cloneNode(true) as HTMLElement;\n\t\t\t}\n\n\t\t\twasFull = self.isFull();\n\t\t\tself.items.splice(self.caretPos, 0, hashed);\n\t\t\tself.insertAtCaret(item);\n\n\t\t\tif (self.isSetup) {\n\n\t\t\t\t// update menu / remove the option (if this is not one item being added as part of series)\n\t\t\t\tif( !self.isPending && self.settings.hideSelected ){\n\t\t\t\t\tlet option = self.getOption(hashed);\n\t\t\t\t\tlet next = self.getAdjacent(option, 1);\n\t\t\t\t\tif( next ){\n\t\t\t\t\t\tself.setActiveOption(next);\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// refreshOptions after setActiveOption(),\n\t\t\t\t// otherwise setActiveOption() will be called by refreshOptions() with the wrong value\n\t\t\t\tif( !self.isPending && !self.settings.closeAfterSelect ){\n\t\t\t\t\tself.refreshOptions(self.isFocused && inputMode !== 'single');\n\t\t\t\t}\n\n\t\t\t\t// hide the menu if the maximum number of items have been selected or no options are left\n\t\t\t\tif( self.settings.closeAfterSelect != false && self.isFull() ){\n\t\t\t\t\tself.close();\n\t\t\t\t} else if (!self.isPending) {\n\t\t\t\t\tself.positionDropdown();\n\t\t\t\t}\n\n\t\t\t\tself.trigger('item_add', hashed, item);\n\n\t\t\t\tif (!self.isPending) {\n\t\t\t\t\tself.updateOriginalInput({silent: silent});\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (!self.isPending || (!wasFull && self.isFull())) {\n\t\t\t\tself.inputState();\n\t\t\t\tself.refreshState();\n\t\t\t}\n\n\t\t});\n\t}\n\n\t/**\n\t * Removes the selected item matching\n\t * the provided value.\n\t *\n\t */\n\tremoveItem( item:string|TomItem|null=null, silent?:boolean ){\n\t\tconst self\t\t= this;\n\t\titem\t\t\t= self.getItem(item);\n\n\t\tif( !item ) return;\n\n\t\tvar i,idx;\n\t\tconst value\t= item.dataset.value;\n\t\ti = nodeIndex(item);\n\n\t\titem.remove();\n\t\tif( item.classList.contains('active') ){\n\t\t\tidx = self.activeItems.indexOf(item);\n\t\t\tself.activeItems.splice(idx, 1);\n\t\t\tremoveClasses(item,'active');\n\t\t}\n\n\t\tself.items.splice(i, 1);\n\t\tself.lastQuery = null;\n\t\tif (!self.settings.persist && self.userOptions.hasOwnProperty(value)) {\n\t\t\tself.removeOption(value, silent);\n\t\t}\n\n\t\tif (i < self.caretPos) {\n\t\t\tself.setCaret(self.caretPos - 1);\n\t\t}\n\n\t\tself.updateOriginalInput({silent: silent});\n\t\tself.refreshState();\n\t\tself.positionDropdown();\n\t\tself.trigger('item_remove', value, item);\n\n\t}\n\n\t/**\n\t * Invokes the `create` method provided in the\n\t * TomSelect options that should provide the data\n\t * for the new item, given the user input.\n\t *\n\t * Once this completes, it will be added\n\t * to the item list.\n\t *\n\t */\n\tcreateItem( input:null|string=null, triggerDropdown:boolean=true, callback:TomCreateCallback = ()=>{} ):boolean{\n\t\tvar self  = this;\n\t\tvar caret = self.caretPos;\n\t\tvar output;\n\t\tinput = input || self.inputValue();\n\n\t\tif (!self.canCreate(input)) {\n\t\t\tcallback();\n\t\t\treturn false;\n\t\t}\n\n\t\tself.lock();\n\n\t\tvar created = false;\n\t\tvar create = (data?:boolean|TomOption) => {\n\t\t\tself.unlock();\n\n\t\t\tif (!data || typeof data !== 'object') return callback();\n\t\t\tvar value = hash_key(data[self.settings.valueField]);\n\t\t\tif( typeof value !== 'string' ){\n\t\t\t\treturn callback();\n\t\t\t}\n\n\t\t\tself.setTextboxValue();\n\t\t\tself.addOption(data,true);\n\t\t\tself.setCaret(caret);\n\t\t\tself.addItem(value);\n\t\t\tcallback(data);\n\t\t\tcreated = true;\n\t\t};\n\n\t\tif( typeof self.settings.create === 'function' ){\n\t\t\toutput = self.settings.create.call(this, input, create);\n\t\t}else{\n\t\t\toutput = {\n\t\t\t\t[self.settings.labelField]: input,\n\t\t\t\t[self.settings.valueField]: input,\n\t\t\t};\n\t\t}\n\n\t\tif( !created ){\n\t\t\tcreate(output);\n\t\t}\n\n\t\treturn true;\n\t}\n\n\t/**\n\t * Re-renders the selected item lists.\n\t */\n\trefreshItems() {\n\t\tvar self = this;\n\t\tself.lastQuery = null;\n\n\t\tif (self.isSetup) {\n\t\t\tself.addItems(self.items);\n\t\t}\n\n\t\tself.updateOriginalInput();\n\t\tself.refreshState();\n\t}\n\n\t/**\n\t * Updates all state-dependent attributes\n\t * and CSS classes.\n\t */\n\trefreshState() {\n\t\tconst self     = this;\n\n\t\tself.refreshValidityState();\n\n\t\tconst isFull\t= self.isFull();\n\t\tconst isLocked\t= self.isLocked;\n\n\t\tself.wrapper.classList.toggle('rtl',self.rtl);\n\n\n\t\tconst wrap_classList = self.wrapper.classList;\n\n\t\twrap_classList.toggle('focus', self.isFocused)\n\t\twrap_classList.toggle('disabled', self.isDisabled)\n\t\twrap_classList.toggle('required', self.isRequired)\n\t\twrap_classList.toggle('invalid', !self.isValid)\n\t\twrap_classList.toggle('locked', isLocked)\n\t\twrap_classList.toggle('full', isFull)\n\t\twrap_classList.toggle('input-active', self.isFocused && !self.isInputHidden)\n\t\twrap_classList.toggle('dropdown-active', self.isOpen)\n\t\twrap_classList.toggle('has-options', isEmptyObject(self.options) )\n\t\twrap_classList.toggle('has-items', self.items.length > 0);\n\n\t}\n\n\n\t/**\n\t * Update the `required` attribute of both input and control input.\n\t *\n\t * The `required` property needs to be activated on the control input\n\t * for the error to be displayed at the right place. `required` also\n\t * needs to be temporarily deactivated on the input since the input is\n\t * hidden and can't show errors.\n\t */\n\trefreshValidityState() {\n\t\tvar self = this;\n\n\t\tif( !self.input.validity ){\n\t\t\treturn;\n\t\t}\n\n\t\tself.isValid = self.input.validity.valid;\n\t\tself.isInvalid = !self.isValid;\n\t}\n\n\t/**\n\t * Determines whether or not more items can be added\n\t * to the control without exceeding the user-defined maximum.\n\t *\n\t * @returns {boolean}\n\t */\n\tisFull() {\n\t\treturn this.settings.maxItems !== null && this.items.length >= this.settings.maxItems;\n\t}\n\n\t/**\n\t * Refreshes the original <select> or <input>\n\t * element to reflect the current state.\n\t *\n\t */\n\tupdateOriginalInput( opts:TomArgObject = {} ){\n\t\tconst self = this;\n\t\tvar option, label;\n\n\t\tconst empty_option = self.input.querySelector('option[value=\"\"]') as HTMLOptionElement;\n\n\t\tif( self.is_select_tag ){\n\n\t\t\tconst selected:HTMLOptionElement[]\t\t= [];\n\t\t\tconst has_selected:number\t\t\t\t= self.input.querySelectorAll('option:checked').length;\n\n\t\t\tfunction AddSelected(option_el:HTMLOptionElement|null, value:string, label:string):HTMLOptionElement{\n\n\t\t\t\tif( !option_el ){\n\t\t\t\t\toption_el = getDom('<option value=\"' + escape_html(value) + '\">' + escape_html(label) + '</option>') as HTMLOptionElement;\n\t\t\t\t}\n\n\t\t\t\t// don't move empty option from top of list\n\t\t\t\t// fixes bug in firefox https://bugzilla.mozilla.org/show_bug.cgi?id=1725293\n\t\t\t\tif( option_el != empty_option ){\n\t\t\t\t\tself.input.append(option_el);\n\t\t\t\t}\n\n\t\t\t\tselected.push(option_el);\n\n\t\t\t\t// marking empty option as selected can break validation\n\t\t\t\t// fixes https://github.com/orchidjs/tom-select/issues/303\n\t\t\t\tif( option_el != empty_option || has_selected > 0 ){\n\t\t\t\t\toption_el.selected = true;\n\t\t\t\t}\n\n\t\t\t\treturn option_el;\n\t\t\t}\n\n\t\t\t// unselect all selected options\n\t\t\tself.input.querySelectorAll('option:checked').forEach((option_el:Element) => {\n\t\t\t\t(<HTMLOptionElement>option_el).selected = false;\n\t\t\t});\n\n\n\t\t\t// nothing selected?\n\t\t\tif( self.items.length == 0 && self.settings.mode == 'single' ){\n\n\t\t\t\tAddSelected(empty_option, \"\", \"\");\n\n\t\t\t// order selected <option> tags for values in self.items\n\t\t\t}else{\n\n\t\t\t\tself.items.forEach((value)=>{\n\t\t\t\t\toption\t\t\t= self.options[value];\n\t\t\t\t\tlabel\t\t\t= option[self.settings.labelField] || '';\n\n\t\t\t\t\tif( selected.includes(option.$option) ){\n\t\t\t\t\t\tconst reuse_opt = self.input.querySelector(`option[value=\"${addSlashes(value)}\"]:not(:checked)`) as HTMLOptionElement;\n\t\t\t\t\t\tAddSelected(reuse_opt, value, label);\n\t\t\t\t\t}else{\n\t\t\t\t\t\toption.$option\t= AddSelected(option.$option, value, label);\n\t\t\t\t\t}\n\t\t\t\t});\n\n\t\t\t}\n\n\t\t} else {\n\t\t\tself.input.value = self.getValue() as string;\n\t\t}\n\n\t\tif (self.isSetup) {\n\t\t\tif (!opts.silent) {\n\t\t\t\tself.trigger('change', self.getValue() );\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t * Shows the autocomplete dropdown containing\n\t * the available options.\n\t */\n\topen() {\n\t\tvar self = this;\n\n\t\tif (self.isLocked || self.isOpen || (self.settings.mode === 'multi' && self.isFull())) return;\n\t\tself.isOpen = true;\n\t\tsetAttr(self.focus_node,{'aria-expanded': 'true'});\n\t\tself.refreshState();\n\t\tapplyCSS(self.dropdown,{visibility: 'hidden', display: 'block'});\n\t\tself.positionDropdown();\n\t\tapplyCSS(self.dropdown,{visibility: 'visible', display: 'block'});\n\t\tself.focus();\n\t\tself.trigger('dropdown_open', self.dropdown);\n\t}\n\n\t/**\n\t * Closes the autocomplete dropdown menu.\n\t */\n\tclose(setTextboxValue=true) {\n\t\tvar self = this;\n\t\tvar trigger = self.isOpen;\n\n\t\tif( setTextboxValue ){\n\n\t\t\t// before blur() to prevent form onchange event\n\t\t\tself.setTextboxValue();\n\n\t\t\tif (self.settings.mode === 'single' && self.items.length) {\n\t\t\t\tself.hideInput();\n\t\t\t}\n\t\t}\n\n\t\tself.isOpen = false;\n\t\tsetAttr(self.focus_node,{'aria-expanded': 'false'});\n\t\tapplyCSS(self.dropdown,{display: 'none'});\n\t\tif( self.settings.hideSelected ){\n\t\t\tself.clearActiveOption();\n\t\t}\n\t\tself.refreshState();\n\n\t\tif (trigger) self.trigger('dropdown_close', self.dropdown);\n\t}\n\n\t/**\n\t * Calculates and applies the appropriate\n\t * position of the dropdown if dropdownParent = 'body'.\n\t * Otherwise, position is determined by css\n\t */\n\tpositionDropdown(){\n\n\t\tif( this.settings.dropdownParent !== 'body' ){\n\t\t\treturn;\n\t\t}\n\n\t\tvar context\t\t\t= this.control;\n\t\tvar rect\t\t\t= context.getBoundingClientRect();\n\t\tvar top\t\t\t\t= context.offsetHeight + rect.top  + window.scrollY;\n\t\tvar left\t\t\t= rect.left + window.scrollX;\n\n\n\t\tapplyCSS(this.dropdown,{\n\t\t\twidth : rect.width + 'px',\n\t\t\ttop   : top + 'px',\n\t\t\tleft  : left + 'px'\n\t\t});\n\n\t}\n\n\t/**\n\t * Resets / clears all selected items\n\t * from the control.\n\t *\n\t */\n\tclear(silent?:boolean) {\n\t\tvar self = this;\n\n\t\tif (!self.items.length) return;\n\n\t\tvar items = self.controlChildren();\n\t\titerate(items,(item)=>{\n\t\t\tself.removeItem(item,true);\n\t\t});\n\n\t\tself.showInput();\n\t\tif( !silent ) self.updateOriginalInput();\n\t\tself.trigger('clear');\n\t}\n\n\t/**\n\t * A helper method for inserting an element\n\t * at the current caret position.\n\t *\n\t */\n\tinsertAtCaret(el:HTMLElement) {\n\t\tconst self\t\t= this;\n\t\tconst caret\t\t= self.caretPos;\n\t\tconst target\t= self.control;\n\n\t\ttarget.insertBefore(el, target.children[caret]);\n\n\t\tself.setCaret(caret + 1);\n\t}\n\n\t/**\n\t * Removes the current selected item(s).\n\t *\n\t */\n\tdeleteSelection(e:KeyboardEvent):boolean {\n\t\tvar direction, selection, caret, tail;\n\t\tvar self = this;\n\n\t\tdirection = (e && e.keyCode === constants.KEY_BACKSPACE) ? -1 : 1;\n\t\tselection = getSelection(self.control_input);\n\n\n\t\t// determine items that will be removed\n\t\tconst rm_items:TomItem[]\t= [];\n\n\t\tif (self.activeItems.length) {\n\n\t\t\ttail = getTail(self.activeItems, direction);\n\t\t\tcaret = nodeIndex(tail);\n\n\t\t\tif (direction > 0) { caret++; }\n\n\t\t\titerate(self.activeItems, (item) => rm_items.push(item) );\n\n\t\t} else if ((self.isFocused || self.settings.mode === 'single') && self.items.length) {\n\t\t\tconst items = self.controlChildren();\n\t\t\tif (direction < 0 && selection.start === 0 && selection.length === 0) {\n\t\t\t\trm_items.push( items[self.caretPos - 1]);\n\n\t\t\t} else if (direction > 0 && selection.start === self.inputValue().length) {\n\t\t\t\trm_items.push(items[self.caretPos]);\n\t\t\t}\n\t\t}\n\n\t\tif( !self.shouldDelete(rm_items,e) ){\n\t\t\treturn false;\n\t\t}\n\n\t\tpreventDefault(e,true);\n\n\t\t// perform removal\n\t\tif (typeof caret !== 'undefined') {\n\t\t\tself.setCaret(caret);\n\t\t}\n\n\t\twhile( rm_items.length ){\n\t\t\tself.removeItem(rm_items.pop());\n\t\t}\n\n\t\tself.showInput();\n\t\tself.positionDropdown();\n\t\tself.refreshOptions(false);\n\n\t\treturn true;\n\t}\n\n\t/**\n\t * Return true if the items should be deleted\n\t */\n\tshouldDelete(items:TomItem[],evt:MouseEvent|KeyboardEvent){\n\n\t\tconst values = items.map(item => item.dataset.value);\n\n\t\t// allow the callback to abort\n\t\tif( !values.length || (typeof this.settings.onDelete === 'function' && this.settings.onDelete(values,evt) === false) ){\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t}\n\n\t/**\n\t * Selects the previous / next item (depending on the `direction` argument).\n\t *\n\t * > 0 - right\n\t * < 0 - left\n\t *\n\t */\n\tadvanceSelection(direction:number, e?:MouseEvent|KeyboardEvent) {\n\t\tvar last_active, adjacent, self = this;\n\n\t\tif (self.rtl) direction *= -1;\n\t\tif( self.inputValue().length ) return;\n\n\n\t\t// add or remove to active items\n\t\tif( isKeyDown(constants.KEY_SHORTCUT,e) || isKeyDown('shiftKey',e) ){\n\n\t\t\tlast_active\t\t\t= self.getLastActive(direction);\n\t\t\tif( last_active ){\n\n\t\t\t\tif( !last_active.classList.contains('active') ){\n\t\t\t\t\tadjacent\t\t\t= last_active;\n\t\t\t\t}else{\n\t\t\t\t\tadjacent\t\t\t= self.getAdjacent(last_active,direction,'item');\n\t\t\t\t}\n\n\t\t\t// if no active item, get items adjacent to the control input\n\t\t\t}else if( direction > 0 ){\n\t\t\t\tadjacent\t\t\t= self.control_input.nextElementSibling;\n\t\t\t}else{\n\t\t\t\tadjacent\t\t\t= self.control_input.previousElementSibling;\n\t\t\t}\n\n\n\t\t\tif( adjacent ){\n\t\t\t\tif( adjacent.classList.contains('active') ){\n\t\t\t\t\tself.removeActiveItem(last_active);\n\t\t\t\t}\n\t\t\t\tself.setActiveItemClass(adjacent); // mark as last_active !! after removeActiveItem() on last_active\n\t\t\t}\n\n\t\t// move caret to the left or right\n\t\t}else{\n\t\t\tself.moveCaret(direction);\n\t\t}\n\t}\n\n\tmoveCaret(direction:number){}\n\n\t/**\n\t * Get the last active item\n\t *\n\t */\n\tgetLastActive(direction?:number){\n\n\t\tlet last_active = this.control.querySelector('.last-active');\n\t\tif( last_active ){\n\t\t\treturn last_active;\n\t\t}\n\n\n\t\tvar result = this.control.querySelectorAll('.active');\n\t\tif( result ){\n\t\t\treturn getTail(result,direction);\n\t\t}\n\t}\n\n\n\t/**\n\t * Moves the caret to the specified index.\n\t *\n\t * The input must be moved by leaving it in place and moving the\n\t * siblings, due to the fact that focus cannot be restored once lost\n\t * on mobile webkit devices\n\t *\n\t */\n\tsetCaret(new_pos:number) {\n\t\tthis.caretPos = this.items.length;\n\t}\n\n\t/**\n\t * Return list of item dom elements\n\t *\n\t */\n\tcontrolChildren():TomItem[]{\n\t\treturn Array.from( this.control.querySelectorAll('[data-ts-item]') ) as TomItem[];\n\t}\n\n\t/**\n\t * Disables user input on the control. Used while\n\t * items are being asynchronously created.\n\t */\n\tlock() {\n\t\tthis.isLocked = true;\n\t\tthis.refreshState();\n\t}\n\n\t/**\n\t * Re-enables user input on the control.\n\t */\n\tunlock() {\n\t\tthis.isLocked = false;\n\t\tthis.refreshState();\n\t}\n\n\t/**\n\t * Disables user input on the control completely.\n\t * While disabled, it cannot receive focus.\n\t */\n\tdisable() {\n\t\tvar self = this;\n\t\tself.input.disabled\t\t\t\t= true;\n\t\tself.control_input.disabled\t\t= true;\n\t\tself.focus_node.tabIndex\t\t= -1;\n\t\tself.isDisabled\t\t\t\t\t= true;\n\t\tthis.close();\n\t\tself.lock();\n\t}\n\n\t/**\n\t * Enables the control so that it can respond\n\t * to focus and user input.\n\t */\n\tenable() {\n\t\tvar self = this;\n\t\tself.input.disabled\t\t\t\t= false;\n\t\tself.control_input.disabled\t\t= false;\n\t\tself.focus_node.tabIndex\t\t= self.tabIndex;\n\t\tself.isDisabled\t\t\t\t\t= false;\n\t\tself.unlock();\n\t}\n\n\t/**\n\t * Completely destroys the control and\n\t * unbinds all event listeners so that it can\n\t * be garbage collected.\n\t */\n\tdestroy() {\n\t\tvar self = this;\n\t\tvar revertSettings = self.revertSettings;\n\n\t\tself.trigger('destroy');\n\t\tself.off();\n\t\tself.wrapper.remove();\n\t\tself.dropdown.remove();\n\n\t\tself.input.innerHTML = revertSettings.innerHTML;\n\t\tself.input.tabIndex = revertSettings.tabIndex;\n\n\t\tremoveClasses(self.input,'tomselected','ts-hidden-accessible');\n\n\t\tself._destroy();\n\n\t\tdelete self.input.tomselect;\n\t}\n\n\t/**\n\t * A helper method for rendering \"item\" and\n\t * \"option\" templates, given the data.\n\t *\n\t */\n\trender( templateName:TomTemplateNames, data?:any ):null|HTMLElement{\n\n\t\tif( typeof this.settings.render[templateName] !== 'function' ){\n\t\t\treturn null;\n\t\t}\n\n\t\treturn this._render(templateName, data);\n\t}\n\n\t/**\n\t * _render() can be called directly when we know we don't want to hit the cache\n\t * return type could be null for some templates, we need https://github.com/microsoft/TypeScript/issues/33014\n\t */\n\t_render( templateName:TomTemplateNames, data?:any ):HTMLElement{\n\t\tvar value = '', id, html;\n\t\tconst self = this;\n\n\t\tif( templateName === 'option' || templateName == 'item' ){\n\t\t\tvalue\t= get_hash(data[self.settings.valueField]);\n\t\t}\n\n\t\t// render markup\n\t\thtml = self.settings.render[templateName].call(this, data, escape_html);\n\n\t\tif( html == null ){\n\t\t\treturn html;\n\t\t}\n\n\t\thtml = getDom( html );\n\n\t\t// add mandatory attributes\n\t\tif (templateName === 'option' || templateName === 'option_create') {\n\n\t\t\tif( data[self.settings.disabledField] ){\n\t\t\t\tsetAttr(html,{'aria-disabled':'true'});\n\t\t\t}else{\n\t\t\t\tsetAttr(html,{'data-selectable': ''});\n\t\t\t}\n\n\t\t}else if (templateName === 'optgroup') {\n\t\t\tid = data.group[self.settings.optgroupValueField];\n\t\t\tsetAttr(html,{'data-group': id});\n\t\t\tif(data.group[self.settings.disabledField]) {\n\t\t\t\tsetAttr(html,{'data-disabled': ''});\n\t\t\t}\n\t\t}\n\n\t\tif (templateName === 'option' || templateName === 'item') {\n\t\t\tsetAttr(html,{'data-value': value });\n\n\n\t\t\t// make sure we have some classes if a template is overwritten\n\t\t\tif( templateName === 'item' ){\n\t\t\t\taddClasses(html,self.settings.itemClass);\n\t\t\t\tsetAttr(html,{'data-ts-item':''});\n\t\t\t}else{\n\t\t\t\taddClasses(html,self.settings.optionClass);\n\t\t\t\tsetAttr(html,{\n\t\t\t\t\trole:'option',\n\t\t\t\t\tid:data.$id\n\t\t\t\t});\n\n\t\t\t\t// update cache\n\t\t\t\tself.options[value].$div = html;\n\t\t\t}\n\n\n\t\t}\n\n\t\treturn html;\n\t}\n\n\n\t/**\n\t * Clears the render cache for a template. If\n\t * no template is given, clears all render\n\t * caches.\n\t *\n\t */\n\tclearCache():void{\n\n\t\titerate(this.options, (option, value)=>{\n\t\t\tif( option.$div ){\n\t\t\t\toption.$div.remove();\n\t\t\t\tdelete option.$div;\n\t\t\t}\n\t\t});\n\n\t}\n\n\t/**\n\t * Removes a value from item and option caches\n\t *\n\t */\n\tuncacheValue(value:string){\n\n\t\tconst option_el\t\t\t= this.getOption(value);\n\t\tif( option_el ) option_el.remove();\n\n\t}\n\n\t/**\n\t * Determines whether or not to display the\n\t * create item prompt, given a user input.\n\t *\n\t */\n\tcanCreate( input:string ):boolean {\n\t\treturn this.settings.create && (input.length > 0) && (this.settings.createFilter as TomCreateFilter ).call(this, input);\n\t}\n\n\n\t/**\n\t * Wraps this.`method` so that `new_fn` can be invoked 'before', 'after', or 'instead' of the original method\n\t *\n\t * this.hook('instead','onKeyDown',function( arg1, arg2 ...){\n\t *\n\t * });\n\t */\n\thook( when:string, method:string, new_fn:any ){\n\t\tvar self = this;\n\t\tvar orig_method = self[method];\n\n\n\t\tself[method] = function(){\n\t\t\tvar result, result_new;\n\n\t\t\tif( when === 'after' ){\n\t\t\t\tresult = orig_method.apply(self, arguments);\n\t\t\t}\n\n\t\t\tresult_new = new_fn.apply(self, arguments );\n\n\t\t\tif( when === 'instead' ){\n\t\t\t\treturn result_new;\n\t\t\t}\n\n\t\t\tif( when === 'before' ){\n\t\t\t\tresult = orig_method.apply(self, arguments);\n\t\t\t}\n\n\t\t\treturn result;\n\t\t};\n\n\t}\n\n};\n"],"names":["forEvents","events","callback","split","forEach","event","MicroEvent","constructor","_events","on","fct","push","off","n","arguments","length","splice","indexOf","trigger","args","self","apply","MicroPlugin","Interface","plugins","names","settings","requested","loaded","define","name","fn","initializePlugins","key","queue","Array","isArray","plugin","options","hasOwnProperty","shift","require","loadPlugin","Error","latin_pat","accent_pat","accent_reg","RegExp","diacritic_patterns","latin_convert","convert_pat","Object","keys","join","code_points","asciifold","str","normalize","replace","toLowerCase","foreignletter","arrayToPattern","chars","glue","longest","a","Math","max","escapeToPattern","escaped","map","diacritic","escape_regex","allSubstrings","input","result","substring","subresult","tmp","slice","charAt","unshift","generateDiacritics","diacritics","code_range","i","String","fromCharCode","latin","patt","match","latin_chars","sort","b","substrings","pattern","sub_pat","l","diacriticRegexPoints","regex","undefined","decomposed","part","no_accent","getAttr","obj","getAttrNesting","scoreValue","value","token","weight","score","pos","search","string","propToArray","iterate","object","cmp","Sifter","items","tokenize","query","respect_word_boundaries","weights","tokens","words","field_regex","word","field_match","field","getScoreFunction","prepareSearch","_getScoreFunction","token_count","fields","field_count","getAttrFn","scoreObject","data","sum","conjunction","getSortFunction","_getSortFunction","implicit_score","sort_empty","sort_flds","multipliers","bind","get_field","id","direction","sort_flds_count","sort_fld","multiplier","optsUser","assign","trim","total","nesting","fn_score","item","filter","_","fn_sort","limit","getDom","jquery","HTMLElement","isHtmlString","div","document","createElement","innerHTML","firstChild","querySelector","arg","escapeQuery","triggerEvent","dom_el","event_name","createEvent","initEvent","dispatchEvent","applyCSS","css","style","addClasses","elmts","classes","norm_classes","classesArray","castAsArray","el","cls","classList","add","removeClasses","remove","_classes","concat","Boolean","parentMatch","target","selector","wrapper","contains","matches","parentNode","getTail","list","isEmptyObject","nodeIndex","amongst","nodeName","previousElementSibling","setAttr","attrs","val","attr","removeAttribute","setAttribute","replaceNode","existing","replacement","replaceChild","highlight","element","highlightText","node","spannode","className","middlebit","splitText","index","middleclone","cloneNode","appendChild","highlightChildren","nodeType","childNodes","test","tagName","highlightRecursive","removeHighlight","elements","querySelectorAll","prototype","call","parent","KEY_A","KEY_RETURN","KEY_ESC","KEY_LEFT","KEY_UP","KEY_RIGHT","KEY_DOWN","KEY_BACKSPACE","KEY_DELETE","KEY_TAB","IS_MAC","navigator","userAgent","KEY_SHORTCUT","optgroups","delimiter","splitOn","persist","create","createOnBlur","createFilter","openOnFocus","shouldOpen","maxOptions","maxItems","hideSelected","duplicates","addPrecedence","selectOnTab","preload","allowEmptyOption","loadThrottle","loadingClass","dataAttr","optgroupField","valueField","labelField","disabledField","optgroupLabelField","optgroupValueField","lockOptgroupOrder","sortField","searchField","searchConjunction","mode","wrapperClass","controlClass","dropdownClass","dropdownContentClass","itemClass","optionClass","dropdownParent","controlInput","copyClassesToDropdown","placeholder","hidePlaceholder","shouldLoad","render","hash_key","get_hash","escape_html","loadDebounce","delay","timeout","loading","clearTimeout","setTimeout","loadedSearches","debounce_events","types","type","event_args","getSelection","start","selectionStart","selectionEnd","preventDefault","evt","stop","stopPropagation","addEvent","addEventListener","isKeyDown","key_name","count","altKey","ctrlKey","shiftKey","metaKey","getId","existing_id","getAttribute","addSlashes","append","getSettings","settings_user","defaults","attr_data","field_label","field_value","field_disabled","field_optgroup","field_optgroup_label","field_optgroup_value","tag_name","option","textContent","settings_element","init_select","optionsMap","group_count","readData","dataset","json","JSON","parse","addOption","group","arr","option_data","disabled","$option","selected","addGroup","optgroup","optgroup_data","children","hasAttribute","child","init_textbox","data_raw","values","opt","instance_i","TomSelect","input_arg","user_settings","control_input","dropdown","control","dropdown_content","focus_node","order","tabIndex","is_select_tag","rtl","inputId","_destroy","sifter","isOpen","isDisabled","isRequired","isInvalid","isValid","isLocked","isFocused","isInputHidden","isSetup","ignoreFocus","ignoreHover","hasOptions","currentResults","lastValue","caretPos","activeOption","activeItems","userOptions","dir","tomselect","computedStyle","window","getComputedStyle","getPropertyValue","required","setupCallbacks","setupTemplates","_render","inputMode","setup","passive_event","passive","listboxId","role","control_id","label","label_click","focus","for","label_id","width","classes_plugins","multiple","load","e","target_match","onOptionHover","capture","onOptionSelect","onItemSelect","onClick","onKeyDown","onKeyPress","onInput","positionDropdown","onBlur","onFocus","onPaste","doc_mousedown","composedPath","blur","inputState","win_scroll","win_hover","removeEventListener","revertSettings","insertAdjacentElement","sync","refreshState","updateOriginalInput","refreshItems","close","disable","enable","onChange","setupOptions","addOptions","registerOptionGroup","templates","escape","callbacks","get_settings","setValue","lastQuery","clearActiveItems","onMouseDown","pastedText","inputValue","splitInput","piece","addItem","createItem","character","keyCode","which","constants","selectAll","open","next","getAdjacent","setActiveOption","prev","canSelect","activeElement","advanceSelection","deleteSelection","refreshOptions","wasFocused","showInput","hasFocus","deactivate","setActiveItem","setCaret","parentElement","closeAfterSelect","canLoad","loadCallback","clearActiveOption","setTextboxValue","changed","getValue","silent","clear","addItems","setMaxItems","eventName","begin","end","swap","last","getLastActive","setActiveItemClass","removeActiveItem","hideInput","last_active","idx","scroll","scrollToOption","behavior","content","height_menu","clientHeight","scrollTop","height_item","offsetHeight","y","getBoundingClientRect","top","scrollBehavior","controlChildren","toggle","offsetWidth","getSearchOptions","calculateScore","hashed","triggerDropdown","j","k","html","has_create_option","active_value","active_group","groups","groups_order","results","active_option","show_dropdown","closest","min","opt_value","option_el","getOption","includes","createDocumentFragment","$id","a_order","$order","b_order","group_options","header","group_html","tok","add_template","template","insertBefore","canCreate","active_index","selectable","user_created","dat","registerOption","addOptionGroup","hashed_id","removeOptionGroup","clearCache","clearOptionGroups","updateOption","item_new","index_item","value_old","value_new","getItem","uncacheValue","option_new","removeOption","removeItem","clearOptions","boundFilter","clearFilter","$div","all","x","isPending","wasFull","isFull","insertAtCaret","caret","output","lock","created","unlock","refreshValidityState","wrap_classList","validity","valid","opts","empty_option","has_selected","AddSelected","reuse_opt","visibility","display","context","rect","scrollY","left","scrollX","selection","tail","rm_items","shouldDelete","pop","onDelete","adjacent","nextElementSibling","moveCaret","new_pos","from","destroy","templateName","hook","when","method","new_fn","orig_method","result_new"],"mappings":"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"}