select2.js 90 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858
  1. window.$ = window.$ || {};(function() { if ($ && $.fn && $.fn.select2 && $.fn.select2.amd) { define = $.fn.select2.amd.define; require = $.fn.select2.amd.require; }/**
  2. * @license almond 0.2.9 Copyright (c) 2011-2014, The Dojo Foundation All Rights Reserved.
  3. * Available via the MIT or new BSD license.
  4. * see: http://github.com/jrburke/almond for details
  5. */
  6. //Going sloppy to avoid 'use strict' string cost, but strict practices should
  7. //be followed.
  8. /*jslint sloppy: true */
  9. /*global setTimeout: false */
  10. var requirejs, require, define;
  11. (function (undef) {
  12. var main, req, makeMap, handlers,
  13. defined = {},
  14. waiting = {},
  15. config = {},
  16. defining = {},
  17. hasOwn = Object.prototype.hasOwnProperty,
  18. aps = [].slice,
  19. jsSuffixRegExp = /\.js$/;
  20. function hasProp(obj, prop) {
  21. return hasOwn.call(obj, prop);
  22. }
  23. /**
  24. * Given a relative module name, like ./something, normalize it to
  25. * a real name that can be mapped to a path.
  26. * @param {String} name the relative name
  27. * @param {String} baseName a real name that the name arg is relative
  28. * to.
  29. * @returns {String} normalized name
  30. */
  31. function normalize(name, baseName) {
  32. var nameParts, nameSegment, mapValue, foundMap, lastIndex,
  33. foundI, foundStarMap, starI, i, j, part,
  34. baseParts = baseName && baseName.split("/"),
  35. map = config.map,
  36. starMap = (map && map['*']) || {};
  37. //Adjust any relative paths.
  38. if (name && name.charAt(0) === ".") {
  39. //If have a base name, try to normalize against it,
  40. //otherwise, assume it is a top-level require that will
  41. //be relative to baseUrl in the end.
  42. if (baseName) {
  43. //Convert baseName to array, and lop off the last part,
  44. //so that . matches that "directory" and not name of the baseName's
  45. //module. For instance, baseName of "one/two/three", maps to
  46. //"one/two/three.js", but we want the directory, "one/two" for
  47. //this normalization.
  48. baseParts = baseParts.slice(0, baseParts.length - 1);
  49. name = name.split('/');
  50. lastIndex = name.length - 1;
  51. // Node .js allowance:
  52. if (config.nodeIdCompat && jsSuffixRegExp.test(name[lastIndex])) {
  53. name[lastIndex] = name[lastIndex].replace(jsSuffixRegExp, '');
  54. }
  55. name = baseParts.concat(name);
  56. //start trimDots
  57. for (i = 0; i < name.length; i += 1) {
  58. part = name[i];
  59. if (part === ".") {
  60. name.splice(i, 1);
  61. i -= 1;
  62. } else if (part === "..") {
  63. if (i === 1 && (name[2] === '..' || name[0] === '..')) {
  64. //End of the line. Keep at least one non-dot
  65. //path segment at the front so it can be mapped
  66. //correctly to disk. Otherwise, there is likely
  67. //no path mapping for a path starting with '..'.
  68. //This can still fail, but catches the most reasonable
  69. //uses of ..
  70. break;
  71. } else if (i > 0) {
  72. name.splice(i - 1, 2);
  73. i -= 2;
  74. }
  75. }
  76. }
  77. //end trimDots
  78. name = name.join("/");
  79. } else if (name.indexOf('./') === 0) {
  80. // No baseName, so this is ID is resolved relative
  81. // to baseUrl, pull off the leading dot.
  82. name = name.substring(2);
  83. }
  84. }
  85. //Apply map config if available.
  86. if ((baseParts || starMap) && map) {
  87. nameParts = name.split('/');
  88. for (i = nameParts.length; i > 0; i -= 1) {
  89. nameSegment = nameParts.slice(0, i).join("/");
  90. if (baseParts) {
  91. //Find the longest baseName segment match in the config.
  92. //So, do joins on the biggest to smallest lengths of baseParts.
  93. for (j = baseParts.length; j > 0; j -= 1) {
  94. mapValue = map[baseParts.slice(0, j).join('/')];
  95. //baseName segment has config, find if it has one for
  96. //this name.
  97. if (mapValue) {
  98. mapValue = mapValue[nameSegment];
  99. if (mapValue) {
  100. //Match, update name to the new value.
  101. foundMap = mapValue;
  102. foundI = i;
  103. break;
  104. }
  105. }
  106. }
  107. }
  108. if (foundMap) {
  109. break;
  110. }
  111. //Check for a star map match, but just hold on to it,
  112. //if there is a shorter segment match later in a matching
  113. //config, then favor over this star map.
  114. if (!foundStarMap && starMap && starMap[nameSegment]) {
  115. foundStarMap = starMap[nameSegment];
  116. starI = i;
  117. }
  118. }
  119. if (!foundMap && foundStarMap) {
  120. foundMap = foundStarMap;
  121. foundI = starI;
  122. }
  123. if (foundMap) {
  124. nameParts.splice(0, foundI, foundMap);
  125. name = nameParts.join('/');
  126. }
  127. }
  128. return name;
  129. }
  130. function makeRequire(relName, forceSync) {
  131. return function () {
  132. //A version of a require function that passes a moduleName
  133. //value for items that may need to
  134. //look up paths relative to the moduleName
  135. return req.apply(undef, aps.call(arguments, 0).concat([relName, forceSync]));
  136. };
  137. }
  138. function makeNormalize(relName) {
  139. return function (name) {
  140. return normalize(name, relName);
  141. };
  142. }
  143. function makeLoad(depName) {
  144. return function (value) {
  145. defined[depName] = value;
  146. };
  147. }
  148. function callDep(name) {
  149. if (hasProp(waiting, name)) {
  150. var args = waiting[name];
  151. delete waiting[name];
  152. defining[name] = true;
  153. main.apply(undef, args);
  154. }
  155. if (!hasProp(defined, name) && !hasProp(defining, name)) {
  156. throw new Error('No ' + name);
  157. }
  158. return defined[name];
  159. }
  160. //Turns a plugin!resource to [plugin, resource]
  161. //with the plugin being undefined if the name
  162. //did not have a plugin prefix.
  163. function splitPrefix(name) {
  164. var prefix,
  165. index = name ? name.indexOf('!') : -1;
  166. if (index > -1) {
  167. prefix = name.substring(0, index);
  168. name = name.substring(index + 1, name.length);
  169. }
  170. return [prefix, name];
  171. }
  172. /**
  173. * Makes a name map, normalizing the name, and using a plugin
  174. * for normalization if necessary. Grabs a ref to plugin
  175. * too, as an optimization.
  176. */
  177. makeMap = function (name, relName) {
  178. var plugin,
  179. parts = splitPrefix(name),
  180. prefix = parts[0];
  181. name = parts[1];
  182. if (prefix) {
  183. prefix = normalize(prefix, relName);
  184. plugin = callDep(prefix);
  185. }
  186. //Normalize according
  187. if (prefix) {
  188. if (plugin && plugin.normalize) {
  189. name = plugin.normalize(name, makeNormalize(relName));
  190. } else {
  191. name = normalize(name, relName);
  192. }
  193. } else {
  194. name = normalize(name, relName);
  195. parts = splitPrefix(name);
  196. prefix = parts[0];
  197. name = parts[1];
  198. if (prefix) {
  199. plugin = callDep(prefix);
  200. }
  201. }
  202. //Using ridiculous property names for space reasons
  203. return {
  204. f: prefix ? prefix + '!' + name : name, //fullName
  205. n: name,
  206. pr: prefix,
  207. p: plugin
  208. };
  209. };
  210. function makeConfig(name) {
  211. return function () {
  212. return (config && config.config && config.config[name]) || {};
  213. };
  214. }
  215. handlers = {
  216. require: function (name) {
  217. return makeRequire(name);
  218. },
  219. exports: function (name) {
  220. var e = defined[name];
  221. if (typeof e !== 'undefined') {
  222. return e;
  223. } else {
  224. return (defined[name] = {});
  225. }
  226. },
  227. module: function (name) {
  228. return {
  229. id: name,
  230. uri: '',
  231. exports: defined[name],
  232. config: makeConfig(name)
  233. };
  234. }
  235. };
  236. main = function (name, deps, callback, relName) {
  237. var cjsModule, depName, ret, map, i,
  238. args = [],
  239. callbackType = typeof callback,
  240. usingExports;
  241. //Use name if no relName
  242. relName = relName || name;
  243. //Call the callback to define the module, if necessary.
  244. if (callbackType === 'undefined' || callbackType === 'function') {
  245. //Pull out the defined dependencies and pass the ordered
  246. //values to the callback.
  247. //Default to [require, exports, module] if no deps
  248. deps = !deps.length && callback.length ? ['require', 'exports', 'module'] : deps;
  249. for (i = 0; i < deps.length; i += 1) {
  250. map = makeMap(deps[i], relName);
  251. depName = map.f;
  252. //Fast path CommonJS standard dependencies.
  253. if (depName === "require") {
  254. args[i] = handlers.require(name);
  255. } else if (depName === "exports") {
  256. //CommonJS module spec 1.1
  257. args[i] = handlers.exports(name);
  258. usingExports = true;
  259. } else if (depName === "module") {
  260. //CommonJS module spec 1.1
  261. cjsModule = args[i] = handlers.module(name);
  262. } else if (hasProp(defined, depName) ||
  263. hasProp(waiting, depName) ||
  264. hasProp(defining, depName)) {
  265. args[i] = callDep(depName);
  266. } else if (map.p) {
  267. map.p.load(map.n, makeRequire(relName, true), makeLoad(depName), {});
  268. args[i] = defined[depName];
  269. } else {
  270. throw new Error(name + ' missing ' + depName);
  271. }
  272. }
  273. ret = callback ? callback.apply(defined[name], args) : undefined;
  274. if (name) {
  275. //If setting exports via "module" is in play,
  276. //favor that over return value and exports. After that,
  277. //favor a non-undefined return value over exports use.
  278. if (cjsModule && cjsModule.exports !== undef &&
  279. cjsModule.exports !== defined[name]) {
  280. defined[name] = cjsModule.exports;
  281. } else if (ret !== undef || !usingExports) {
  282. //Use the return value from the function.
  283. defined[name] = ret;
  284. }
  285. }
  286. } else if (name) {
  287. //May just be an object definition for the module. Only
  288. //worry about defining if have a module name.
  289. defined[name] = callback;
  290. }
  291. };
  292. requirejs = require = req = function (deps, callback, relName, forceSync, alt) {
  293. if (typeof deps === "string") {
  294. if (handlers[deps]) {
  295. //callback in this case is really relName
  296. return handlers[deps](callback);
  297. }
  298. //Just return the module wanted. In this scenario, the
  299. //deps arg is the module name, and second arg (if passed)
  300. //is just the relName.
  301. //Normalize module name, if it contains . or ..
  302. return callDep(makeMap(deps, callback).f);
  303. } else if (!deps.splice) {
  304. //deps is a config object, not an array.
  305. config = deps;
  306. if (config.deps) {
  307. req(config.deps, config.callback);
  308. }
  309. if (!callback) {
  310. return;
  311. }
  312. if (callback.splice) {
  313. //callback is an array, which means it is a dependency list.
  314. //Adjust args if there are dependencies
  315. deps = callback;
  316. callback = relName;
  317. relName = null;
  318. } else {
  319. deps = undef;
  320. }
  321. }
  322. //Support require(['a'])
  323. callback = callback || function () {};
  324. //If relName is a function, it is an errback handler,
  325. //so remove it.
  326. if (typeof relName === 'function') {
  327. relName = forceSync;
  328. forceSync = alt;
  329. }
  330. //Simulate async callback;
  331. if (forceSync) {
  332. main(undef, deps, callback, relName);
  333. } else {
  334. //Using a non-zero value because of concern for what old browsers
  335. //do, and latest browsers "upgrade" to 4 if lower value is used:
  336. //http://www.whatwg.org/specs/web-apps/current-work/multipage/timers.html#dom-windowtimers-settimeout:
  337. //If want a value immediately, use require('id') instead -- something
  338. //that works in almond on the global level, but not guaranteed and
  339. //unlikely to work in other AMD implementations.
  340. setTimeout(function () {
  341. main(undef, deps, callback, relName);
  342. }, 4);
  343. }
  344. return req;
  345. };
  346. /**
  347. * Just drops the config on the floor, but returns req in case
  348. * the config return value is used.
  349. */
  350. req.config = function (cfg) {
  351. return req(cfg);
  352. };
  353. /**
  354. * Expose module registry for debugging and tooling
  355. */
  356. requirejs._defined = defined;
  357. define = function (name, deps, callback) {
  358. //This module may not have dependencies
  359. if (!deps.splice) {
  360. //deps is not an array, so probably means
  361. //an object literal or factory function for
  362. //the value. Adjust args.
  363. callback = deps;
  364. deps = [];
  365. }
  366. if (!hasProp(defined, name) && !hasProp(waiting, name)) {
  367. waiting[name] = [name, deps, callback];
  368. }
  369. };
  370. define.amd = {
  371. jQuery: true
  372. };
  373. }());
  374. define("almond", function(){});
  375. define('jquery',[],function () {
  376. return jQuery;
  377. });
  378. define('select2/utils',[], function () {
  379. var Utils = {};
  380. Utils.Extend = function (ChildClass, SuperClass) {
  381. var __hasProp = {}.hasOwnProperty;
  382. function BaseConstructor () {
  383. this.constructor = ChildClass;
  384. }
  385. for (var key in SuperClass) {
  386. if (__hasProp.call(SuperClass, key)) {
  387. ChildClass[key] = SuperClass[key];
  388. }
  389. }
  390. BaseConstructor.prototype = SuperClass.prototype;
  391. ChildClass.prototype = new BaseConstructor();
  392. ChildClass.__super__ = SuperClass.prototype;
  393. return ChildClass;
  394. };
  395. function getMethods (theClass) {
  396. var proto = theClass.prototype;
  397. var methods = [];
  398. for (var methodName in proto) {
  399. var m = proto[methodName];
  400. if (typeof m !== 'function') {
  401. continue;
  402. }
  403. if (methodName === 'constructor') {
  404. continue;
  405. }
  406. methods.push(methodName);
  407. }
  408. return methods;
  409. }
  410. Utils.Decorate = function (SuperClass, DecoratorClass) {
  411. var decoratedMethods = getMethods(DecoratorClass);
  412. var superMethods = getMethods(SuperClass);
  413. function DecoratedClass () {
  414. var unshift = Array.prototype.unshift;
  415. var argCount = DecoratorClass.prototype.constructor.length;
  416. var calledConstructor = SuperClass.prototype.constructor;
  417. if (argCount > 0) {
  418. unshift.call(arguments, SuperClass.prototype.constructor);
  419. calledConstructor = DecoratorClass.prototype.constructor;
  420. }
  421. calledConstructor.apply(this, arguments);
  422. }
  423. DecoratorClass.displayName = SuperClass.displayName;
  424. function ctr () {
  425. this.constructor = DecoratedClass;
  426. }
  427. DecoratedClass.prototype = new ctr();
  428. for (var m = 0; m < superMethods.length; m++) {
  429. var superMethod = superMethods[m];
  430. DecoratedClass.prototype[superMethod] =
  431. SuperClass.prototype[superMethod];
  432. }
  433. var calledMethod = function (methodName) {
  434. // Stub out the original method if it's not decorating an actual method
  435. var originalMethod = function () {};
  436. if (methodName in DecoratedClass.prototype) {
  437. originalMethod = DecoratedClass.prototype[methodName];
  438. }
  439. var decoratedMethod = DecoratorClass.prototype[methodName];
  440. return function () {
  441. var unshift = Array.prototype.unshift;
  442. unshift.call(arguments, originalMethod);
  443. return decoratedMethod.apply(this, arguments);
  444. };
  445. };
  446. for (var d = 0; d < decoratedMethods.length; d++) {
  447. var decoratedMethod = decoratedMethods[d];
  448. DecoratedClass.prototype[decoratedMethod] = calledMethod(decoratedMethod);
  449. }
  450. return DecoratedClass;
  451. };
  452. var Observable = function () {
  453. this.listeners = {};
  454. };
  455. Observable.prototype.on = function (event, callback) {
  456. this.listeners = this.listeners || {};
  457. if (event in this.listeners) {
  458. this.listeners[event].push(callback);
  459. } else {
  460. this.listeners[event] = [callback];
  461. }
  462. };
  463. Observable.prototype.trigger = function (event) {
  464. var slice = Array.prototype.slice;
  465. this.listeners = this.listeners || {};
  466. if (event in this.listeners) {
  467. this.invoke(this.listeners[event], slice.call(arguments, 1));
  468. }
  469. if ('*' in this.listeners) {
  470. this.invoke(this.listeners['*'], arguments);
  471. }
  472. };
  473. Observable.prototype.invoke = function (listeners, params) {
  474. for (var i = 0, len = listeners.length; i < len; i++) {
  475. listeners[i].apply(this, params);
  476. }
  477. };
  478. Utils.Observable = Observable;
  479. Utils.generateChars = function (length) {
  480. var chars = '';
  481. for (var i = 0; i < length; i++) {
  482. var randomChar = Math.floor(Math.random() * 36);
  483. chars += randomChar.toString(36);
  484. }
  485. return chars;
  486. };
  487. return Utils;
  488. });
  489. define('select2/results',[
  490. './utils'
  491. ], function (Utils) {
  492. function Results ($element, options, dataAdapter) {
  493. this.$element = $element;
  494. this.data = dataAdapter;
  495. this.options = options;
  496. Results.__super__.constructor.call(this);
  497. }
  498. Utils.Extend(Results, Utils.Observable);
  499. Results.prototype.render = function () {
  500. var $results = $(
  501. '<ul class="select2-results__options" role="tree"></ul>'
  502. );
  503. if (this.options.get('multiple')) {
  504. $results.attr('aria-multiselectable', 'true');
  505. }
  506. this.$results = $results;
  507. return $results;
  508. };
  509. Results.prototype.clear = function () {
  510. this.$results.empty();
  511. };
  512. Results.prototype.displayMessage = function (params) {
  513. this.clear();
  514. this.hideLoading();
  515. var $message = $(
  516. '<li role="treeitem" class="select2-results__option"></li>'
  517. );
  518. var message = this.options.get('translations').get(params.message);
  519. $message.text(message(params.args));
  520. this.$results.append($message);
  521. };
  522. Results.prototype.append = function (data) {
  523. this.hideLoading();
  524. var $options = [];
  525. if (data.length === 0) {
  526. if (this.$results.children().length === 0) {
  527. this.trigger('results:message', {
  528. message: 'noResults'
  529. });
  530. }
  531. return;
  532. }
  533. data = this.sort(data);
  534. for (var d = 0; d < data.length; d++) {
  535. var item = data[d];
  536. var $option = this.option(item);
  537. $options.push($option);
  538. }
  539. this.$results.append($options);
  540. };
  541. Results.prototype.sort = function (data) {
  542. return data;
  543. };
  544. Results.prototype.setClasses = function () {
  545. var self = this;
  546. this.data.current(function (selected) {
  547. var selectedIds = $.map(selected, function (s) {
  548. return s.id.toString();
  549. });
  550. var $options = self.$results
  551. .find('.select2-results__option[aria-selected]');
  552. $options.each(function () {
  553. var $option = $(this);
  554. var item = $.data(this, 'data');
  555. if (item.id != null && selectedIds.indexOf(item.id.toString()) > -1) {
  556. $option.attr('aria-selected', 'true');
  557. } else {
  558. $option.attr('aria-selected', 'false');
  559. }
  560. });
  561. var $selected = $options.filter('[aria-selected=true]');
  562. // Check if there are any selected options
  563. if ($selected.length > 0) {
  564. // If there are selected options, highlight the first
  565. $selected.first().trigger('mouseenter');
  566. } else {
  567. // If there are no selected options, highlight the first option
  568. // in the dropdown
  569. $options.first().trigger('mouseenter');
  570. }
  571. });
  572. };
  573. Results.prototype.showLoading = function (params) {
  574. this.hideLoading();
  575. var loadingMore = this.options.get('translations').get('searching');
  576. var loading = {
  577. disabled: true,
  578. loading: true,
  579. text: loadingMore(params)
  580. };
  581. var $loading = this.option(loading);
  582. $loading.className += ' loading-results';
  583. this.$results.prepend($loading);
  584. };
  585. Results.prototype.hideLoading = function () {
  586. this.$results.find('.loading-results').remove();
  587. };
  588. Results.prototype.option = function (data) {
  589. var option = document.createElement('li');
  590. option.className = 'select2-results__option';
  591. var attrs = {
  592. 'role': 'treeitem',
  593. 'aria-selected': 'false'
  594. };
  595. if (data.disabled) {
  596. delete attrs['aria-selected'];
  597. attrs['aria-disabled'] = 'true';
  598. }
  599. if (data.id == null) {
  600. delete attrs['aria-selected'];
  601. }
  602. if (data._resultId != null) {
  603. option.id = data._resultId;
  604. }
  605. if (data.children) {
  606. attrs.role = 'group';
  607. attrs['aria-label'] = data.text;
  608. delete attrs['aria-selected'];
  609. }
  610. for (var attr in attrs) {
  611. var val = attrs[attr];
  612. option.setAttribute(attr, val);
  613. }
  614. if (data.children) {
  615. var $option = $(option);
  616. var label = document.createElement('strong');
  617. label.className = 'select2-results__group';
  618. var $label = $(label);
  619. this.template(data, label);
  620. var $children = [];
  621. for (var c = 0; c < data.children.length; c++) {
  622. var child = data.children[c];
  623. var $child = this.option(child);
  624. $children.push($child);
  625. }
  626. var $childrenContainer = $('<ul></ul>', {
  627. 'class': 'select2-results__options select2-results__options--nested'
  628. });
  629. $childrenContainer.append($children);
  630. $option.append(label);
  631. $option.append($childrenContainer);
  632. } else {
  633. this.template(data, option);
  634. }
  635. $.data(option, 'data', data);
  636. return option;
  637. };
  638. Results.prototype.bind = function (container, $container) {
  639. var self = this;
  640. var id = container.id + '-results';
  641. this.$results.attr('id', id);
  642. container.on('results:all', function (params) {
  643. self.clear();
  644. self.append(params.data);
  645. if (container.isOpen()) {
  646. self.setClasses();
  647. }
  648. });
  649. container.on('results:append', function (params) {
  650. self.append(params.data);
  651. if (container.isOpen()) {
  652. self.setClasses();
  653. }
  654. });
  655. container.on('query', function (params) {
  656. self.showLoading(params);
  657. });
  658. container.on('select', function () {
  659. if (!container.isOpen()) {
  660. return;
  661. }
  662. self.setClasses();
  663. });
  664. container.on('unselect', function () {
  665. if (!container.isOpen()) {
  666. return;
  667. }
  668. self.setClasses();
  669. });
  670. container.on('open', function () {
  671. // When the dropdown is open, aria-expended="true"
  672. self.$results.attr('aria-expanded', 'true');
  673. self.$results.attr('aria-hidden', 'false');
  674. self.setClasses();
  675. self.ensureHighlightVisible();
  676. });
  677. container.on('close', function () {
  678. // When the dropdown is closed, aria-expended="false"
  679. self.$results.attr('aria-expanded', 'false');
  680. self.$results.attr('aria-hidden', 'true');
  681. self.$results.removeAttr('aria-activedescendant');
  682. });
  683. container.on('results:select', function () {
  684. var $highlighted = self.getHighlightedResults();
  685. if ($highlighted.length === 0) {
  686. return;
  687. }
  688. var data = $highlighted.data('data');
  689. if ($highlighted.attr('aria-selected') == 'true') {
  690. self.trigger('unselected', {
  691. data: data
  692. });
  693. } else {
  694. self.trigger('selected', {
  695. data: data
  696. });
  697. }
  698. });
  699. container.on('results:previous', function () {
  700. var $highlighted = self.getHighlightedResults();
  701. var $options = self.$results.find('[aria-selected]');
  702. var currentIndex = $options.index($highlighted);
  703. // If we are already at te top, don't move further
  704. if (currentIndex === 0) {
  705. return;
  706. }
  707. var nextIndex = currentIndex - 1;
  708. // If none are highlighted, highlight the first
  709. if ($highlighted.length === 0) {
  710. nextIndex = 0;
  711. }
  712. var $next = $options.eq(nextIndex);
  713. $next.trigger('mouseenter');
  714. var currentOffset = self.$results.offset().top;
  715. var nextTop = $next.offset().top;
  716. var nextOffset = self.$results.scrollTop() + (nextTop - currentOffset);
  717. if (nextIndex === 0) {
  718. self.$results.scrollTop(0);
  719. } else if (nextTop - currentOffset < 0) {
  720. self.$results.scrollTop(nextOffset);
  721. }
  722. });
  723. container.on('results:next', function () {
  724. var $highlighted = self.getHighlightedResults();
  725. var $options = self.$results.find('[aria-selected]');
  726. var currentIndex = $options.index($highlighted);
  727. var nextIndex = currentIndex + 1;
  728. // If we are at the last option, stay there
  729. if (nextIndex >= $options.length) {
  730. return;
  731. }
  732. var $next = $options.eq(nextIndex);
  733. $next.trigger('mouseenter');
  734. var currentOffset = self.$results.offset().top +
  735. self.$results.outerHeight(false);
  736. var nextBottom = $next.offset().top + $next.outerHeight(false);
  737. var nextOffset = self.$results.scrollTop() + nextBottom - currentOffset;
  738. if (nextIndex === 0) {
  739. self.$results.scrollTop(0);
  740. } else if (nextBottom > currentOffset) {
  741. self.$results.scrollTop(nextOffset);
  742. }
  743. });
  744. container.on('results:focus', function (params) {
  745. params.element.addClass('select2-results__option--highlighted');
  746. });
  747. container.on('results:message', function (params) {
  748. self.trigger('results:message', params);
  749. });
  750. this.on('results:message', function (params) {
  751. self.displayMessage(params);
  752. });
  753. this.$results.on('mouseup', '.select2-results__option[aria-selected]',
  754. function (evt) {
  755. var $this = $(this);
  756. var data = $this.data('data');
  757. if ($this.attr('aria-selected') === 'true') {
  758. self.trigger('unselected', {
  759. originalEvent: evt,
  760. data: data
  761. });
  762. return;
  763. }
  764. self.trigger('selected', {
  765. originalEvent: evt,
  766. data: data
  767. });
  768. });
  769. this.$results.on('mouseenter', '.select2-results__option[aria-selected]',
  770. function (evt) {
  771. var data = $(this).data('data');
  772. self.getHighlightedResults()
  773. .removeClass('select2-results__option--highlighted');
  774. self.trigger('results:focus', {
  775. data: data,
  776. element: $(this)
  777. });
  778. });
  779. };
  780. Results.prototype.getHighlightedResults = function () {
  781. var $highlighted = this.$results
  782. .find('.select2-results__option--highlighted');
  783. return $highlighted;
  784. };
  785. Results.prototype.destroy = function () {
  786. this.$results.remove();
  787. };
  788. Results.prototype.ensureHighlightVisible = function () {
  789. var $highlighted = this.getHighlightedResults();
  790. if ($highlighted.length === 0) {
  791. return;
  792. }
  793. var $options = this.$results.find('[aria-selected]');
  794. var currentIndex = $options.index($highlighted);
  795. var currentOffset = this.$results.offset().top;
  796. var nextTop = $highlighted.offset().top;
  797. var nextOffset = this.$results.scrollTop() + (nextTop - currentOffset);
  798. var offsetDelta = nextTop - currentOffset;
  799. nextOffset -= $highlighted.outerHeight(false) * 2;
  800. if (currentIndex <= 2) {
  801. this.$results.scrollTop(0);
  802. } else if (offsetDelta > this.$results.outerHeight() || offsetDelta < 0) {
  803. this.$results.scrollTop(nextOffset);
  804. }
  805. };
  806. Results.prototype.template = function (result, container) {
  807. var template = this.options.get('templateResult');
  808. container.innerHTML = template(result);
  809. };
  810. return Results;
  811. });
  812. define('select2/keys',[
  813. ], function () {
  814. var KEYS = {
  815. BACKSPACE: 8,
  816. TAB: 9,
  817. ENTER: 13,
  818. SHIFT: 16,
  819. CTRL: 17,
  820. ALT: 18,
  821. ESC: 27,
  822. SPACE: 32,
  823. PAGE_UP: 33,
  824. PAGE_DOWN: 34,
  825. END: 35,
  826. HOME: 36,
  827. LEFT: 37,
  828. UP: 38,
  829. RIGHT: 39,
  830. DOWN: 40,
  831. DELETE: 46,
  832. isArrow: function (k) {
  833. k = k.which ? k.which : k;
  834. switch (k) {
  835. case KEY.LEFT:
  836. case KEY.RIGHT:
  837. case KEY.UP:
  838. case KEY.DOWN:
  839. return true;
  840. }
  841. return false;
  842. }
  843. };
  844. return KEYS;
  845. });
  846. define('select2/selection/base',[
  847. '../utils',
  848. '../keys'
  849. ], function (Utils, KEYS) {
  850. function BaseSelection ($element, options) {
  851. this.$element = $element;
  852. this.options = options;
  853. BaseSelection.__super__.constructor.call(this);
  854. }
  855. Utils.Extend(BaseSelection, Utils.Observable);
  856. BaseSelection.prototype.render = function () {
  857. throw new Error('The `render` method must be defined in child classes.');
  858. };
  859. BaseSelection.prototype.bind = function (container, $container) {
  860. var self = this;
  861. var id = container.id + '-container';
  862. var resultsId = container.id + '-results';
  863. this.$selection.attr('aria-owns', resultsId);
  864. this.$selection.on('keydown', function (evt) {
  865. self.trigger('keypress', evt);
  866. if (evt.which === KEYS.SPACE) {
  867. evt.preventDefault();
  868. }
  869. });
  870. container.on('results:focus', function (params) {
  871. self.$selection.attr('aria-activedescendant', params.data._resultId);
  872. });
  873. container.on('selection:update', function (params) {
  874. self.update(params.data);
  875. });
  876. container.on('open', function () {
  877. // When the dropdown is open, aria-expanded="true"
  878. self.$selection.attr('aria-expanded', 'true');
  879. $(document.body).on('mousedown.select2.' + container.id, function (e) {
  880. var $target = $(e.target);
  881. var $select = $target.closest('.select2');
  882. var $all = $('.select2.select2-container--open');
  883. $all.each(function () {
  884. var $this = $(this);
  885. if (this == $select[0]) {
  886. return;
  887. }
  888. var $element = $this.data('element');
  889. $element.select2('close');
  890. });
  891. });
  892. });
  893. container.on('close', function () {
  894. // When the dropdown is closed, aria-expanded="false"
  895. self.$selection.attr('aria-expanded', 'false');
  896. self.$selection.removeAttr('aria-activedescendant');
  897. self.$selection.focus();
  898. $(document.body).off('mousedown.select2.' + container.id);
  899. });
  900. };
  901. BaseSelection.prototype.destroy = function () {
  902. // Unbind the dropdown click handler if it exists
  903. $(document.body).off('.select2.' + container.id);
  904. };
  905. BaseSelection.prototype.update = function (data) {
  906. throw new Error('The `update` method must be defined in child classes.');
  907. };
  908. return BaseSelection;
  909. });
  910. define('select2/selection/single',[
  911. './base',
  912. '../utils',
  913. '../keys'
  914. ], function (BaseSelection, Utils, KEYS) {
  915. function SingleSelection () {
  916. SingleSelection.__super__.constructor.apply(this, arguments);
  917. }
  918. Utils.Extend(SingleSelection, BaseSelection);
  919. SingleSelection.prototype.render = function () {
  920. var $selection = $(
  921. '<span class="select2-selection select2-selection--single" tabindex="0"' +
  922. ' role="combobox" aria-autocomplete="list" aria-haspopup="true"' +
  923. ' aria-expanded="false">' +
  924. '<span class="select2-selection__rendered"></span>' +
  925. '</span>'
  926. );
  927. $selection.attr('title', this.$element.attr('title'));
  928. this.$selection = $selection;
  929. return $selection;
  930. };
  931. SingleSelection.prototype.bind = function (container, $container) {
  932. var self = this;
  933. SingleSelection.__super__.bind.apply(this, arguments);
  934. var id = container.id + '-container';
  935. this.$selection.find('.select2-selection__rendered').attr('id', id);
  936. this.$selection.attr('aria-labelledby', id);
  937. this.$selection.on('mousedown', function (evt) {
  938. // Only respond to left clicks
  939. if (evt.which !== 1) {
  940. return;
  941. }
  942. self.trigger('toggle', {
  943. originalEvent: evt
  944. });
  945. });
  946. this.$selection.on('focus', function (evt) {
  947. // User focuses on the container
  948. });
  949. this.$selection.on('blur', function (evt) {
  950. // User exits the container
  951. });
  952. container.on('selection:update', function (params) {
  953. self.update(params.data);
  954. });
  955. };
  956. SingleSelection.prototype.clear = function () {
  957. this.$selection.find('.select2-selection__rendered').empty();
  958. };
  959. SingleSelection.prototype.display = function (data) {
  960. var template = this.options.get('templateSelection');
  961. return template(data);
  962. };
  963. SingleSelection.prototype.selectionContainer = function () {
  964. return $('<span></span>');
  965. };
  966. SingleSelection.prototype.update = function (data) {
  967. if (data.length === 0) {
  968. this.clear();
  969. return;
  970. }
  971. var selection = data[0];
  972. var formatted = this.display(selection);
  973. this.$selection.find('.select2-selection__rendered').html(formatted);
  974. };
  975. return SingleSelection;
  976. });
  977. define('select2/selection/multiple',[
  978. './base',
  979. '../utils'
  980. ], function (BaseSelection, Utils) {
  981. function MultipleSelection ($element, options) {
  982. MultipleSelection.__super__.constructor.apply(this, arguments);
  983. }
  984. Utils.Extend(MultipleSelection, BaseSelection);
  985. MultipleSelection.prototype.render = function () {
  986. var $selection = $(
  987. '<span class="select2-selection select2-selection--multiple"' +
  988. ' tabindex="0" role="combobox" aria-autocomplete="list"' +
  989. ' aria-haspopup="true" aria-expanded="false">' +
  990. '<ul class="select2-selection__rendered"></ul>' +
  991. '</span>'
  992. );
  993. $selection.attr('title', this.$element.attr('title'));
  994. this.$selection = $selection;
  995. return $selection;
  996. };
  997. MultipleSelection.prototype.bind = function (container, $container) {
  998. var self = this;
  999. MultipleSelection.__super__.bind.apply(this, arguments);
  1000. this.$selection.on('click', function (evt) {
  1001. self.trigger('toggle', {
  1002. originalEvent: evt
  1003. });
  1004. });
  1005. this.$selection.on('click', '.select2-selection__choice__remove',
  1006. function (evt) {
  1007. var $remove = $(this);
  1008. var $selection = $remove.parent();
  1009. var data = $selection.data('data');
  1010. self.trigger('unselected', {
  1011. originalEvent: evt,
  1012. data: data
  1013. });
  1014. });
  1015. };
  1016. MultipleSelection.prototype.clear = function () {
  1017. this.$selection.find('.select2-selection__rendered').empty();
  1018. };
  1019. MultipleSelection.prototype.display = function (data) {
  1020. var template = this.options.get('templateSelection');
  1021. return template(data);
  1022. };
  1023. MultipleSelection.prototype.selectionContainer = function () {
  1024. var $container = $(
  1025. '<li class="select2-selection__choice">' +
  1026. '<span class="select2-selection__choice__remove" role="presentation">' +
  1027. '&times;' +
  1028. '</span>' +
  1029. '</li>'
  1030. );
  1031. return $container;
  1032. };
  1033. MultipleSelection.prototype.update = function (data) {
  1034. this.clear();
  1035. if (data.length === 0) {
  1036. return;
  1037. }
  1038. var $selections = [];
  1039. for (var d = 0; d < data.length; d++) {
  1040. var selection = data[d];
  1041. var formatted = this.display(selection);
  1042. var $selection = this.selectionContainer();
  1043. $selection.append(formatted);
  1044. $selection.data('data', selection);
  1045. $selections.push($selection);
  1046. }
  1047. this.$selection.find('.select2-selection__rendered').append($selections);
  1048. };
  1049. return MultipleSelection;
  1050. });
  1051. define('select2/selection/placeholder',[
  1052. '../utils'
  1053. ], function (Utils) {
  1054. function Placeholder (decorated, $element, options) {
  1055. this.placeholder = this.normalizePlaceholder(options.get('placeholder'));
  1056. decorated.call(this, $element, options);
  1057. }
  1058. Placeholder.prototype.normalizePlaceholder = function (_, placeholder) {
  1059. if (typeof placeholder === 'string') {
  1060. placeholder = {
  1061. id: '',
  1062. text: placeholder
  1063. };
  1064. }
  1065. return placeholder;
  1066. };
  1067. Placeholder.prototype.createPlaceholder = function (decorated, placeholder) {
  1068. var $placeholder = this.selectionContainer();
  1069. $placeholder.html(this.display(placeholder));
  1070. $placeholder.addClass('select2-selection__placeholder')
  1071. .removeClass('select2-selection__choice');
  1072. return $placeholder;
  1073. };
  1074. Placeholder.prototype.update = function (decorated, data) {
  1075. var singlePlaceholder = (
  1076. data.length == 1 && data[0].id != this.placeholder.id
  1077. );
  1078. var multipleSelections = data.length > 1;
  1079. if (multipleSelections || singlePlaceholder) {
  1080. return decorated.call(this, data);
  1081. }
  1082. this.clear();
  1083. var $placeholder = this.createPlaceholder(this.placeholder);
  1084. this.$selection.find('.select2-selection__rendered').append($placeholder);
  1085. };
  1086. return Placeholder;
  1087. });
  1088. define('select2/selection/search',[
  1089. '../utils'
  1090. ], function (Utils) {
  1091. function Search (decorated, $element, options) {
  1092. decorated.call(this, $element, options);
  1093. }
  1094. Search.prototype.render = function (decorated) {
  1095. var $search = $(
  1096. '<li class="select2-search select2-search--inline">' +
  1097. '<input class="select2-search__field" type="search" tabindex="-1"' +
  1098. ' role="textbox" />' +
  1099. '</li>'
  1100. );
  1101. this.$searchContainer = $search;
  1102. this.$search = $search.find('input');
  1103. var $rendered = decorated.call(this);
  1104. return $rendered;
  1105. };
  1106. Search.prototype.bind = function (decorated, container, $container) {
  1107. var self = this;
  1108. decorated.call(this, container, $container);
  1109. container.on('open', function () {
  1110. self.$search.attr('tabindex', 0);
  1111. self.$search.focus();
  1112. });
  1113. container.on('close', function () {
  1114. self.$search.attr('tabindex', -1);
  1115. self.$search.val('');
  1116. });
  1117. this.$selection.on('keydown', '.select2-search--inline', function (evt) {
  1118. evt.stopPropagation();
  1119. self.trigger('keypress', evt);
  1120. self._keyUpPrevented = evt.isDefaultPrevented();
  1121. });
  1122. this.$selection.on('keyup', '.select2-search--inline', function (evt) {
  1123. self.handleSearch(evt);
  1124. });
  1125. };
  1126. Search.prototype.createPlaceholder = function (decorated, placeholder) {
  1127. this.$search.attr('placeholder', placeholder.text);
  1128. };
  1129. Search.prototype.update = function (decorated, data) {
  1130. this.$search.attr('placeholder', '');
  1131. decorated.call(this, data);
  1132. this.$selection.find('.select2-selection__rendered')
  1133. .append(this.$searchContainer);
  1134. this.resizeSearch();
  1135. };
  1136. Search.prototype.handleSearch = function (evt) {
  1137. this.resizeSearch();
  1138. if (!this._keyUpPrevented) {
  1139. var input = this.$search.val();
  1140. this.trigger('query', {
  1141. term: input
  1142. });
  1143. }
  1144. this._keyUpPrevented = false;
  1145. };
  1146. Search.prototype.resizeSearch = function () {
  1147. this.$search.css('width', '25px');
  1148. var width = '';
  1149. if (this.$search.attr('placeholder') !== '') {
  1150. width = this.$selection.innerWidth();
  1151. width -= this.$selection.find('.select2-selection__rendered')
  1152. .innerWidth();
  1153. width = width + 'px';
  1154. } else {
  1155. var minimumWidth = this.$search.val().length + 1;
  1156. width = (minimumWidth * 0.75) + 'em';
  1157. }
  1158. this.$search.css('width', width);
  1159. };
  1160. Search.prototype.showSearch = function (_, params) {
  1161. return true;
  1162. };
  1163. return Search;
  1164. });
  1165. define('select2/translation',[
  1166. ], function () {
  1167. function Translation (dict) {
  1168. this.dict = dict || {};
  1169. }
  1170. Translation.prototype.all = function () {
  1171. return this.dict;
  1172. };
  1173. Translation.prototype.get = function (key) {
  1174. return this.dict[key];
  1175. };
  1176. Translation.prototype.extend = function (translation) {
  1177. this.dict = $.extend({}, translation.all(), this.dict);
  1178. };
  1179. // Static functions
  1180. Translation._cache = {};
  1181. Translation.loadPath = function (path) {
  1182. if (!(path in Translation._cache)) {
  1183. var translations = require(path);
  1184. Translation._cache[path] = translations;
  1185. }
  1186. return new Translation(Translation._cache[path]);
  1187. };
  1188. return Translation;
  1189. });
  1190. define('select2/diacritics',[
  1191. ], function () {
  1192. var diacritics = {
  1193. '\u24B6': 'A',
  1194. '\uFF21': 'A',
  1195. '\u00C0': 'A',
  1196. '\u00C1': 'A',
  1197. '\u00C2': 'A',
  1198. '\u1EA6': 'A',
  1199. '\u1EA4': 'A',
  1200. '\u1EAA': 'A',
  1201. '\u1EA8': 'A',
  1202. '\u00C3': 'A',
  1203. '\u0100': 'A',
  1204. '\u0102': 'A',
  1205. '\u1EB0': 'A',
  1206. '\u1EAE': 'A',
  1207. '\u1EB4': 'A',
  1208. '\u1EB2': 'A',
  1209. '\u0226': 'A',
  1210. '\u01E0': 'A',
  1211. '\u00C4': 'A',
  1212. '\u01DE': 'A',
  1213. '\u1EA2': 'A',
  1214. '\u00C5': 'A',
  1215. '\u01FA': 'A',
  1216. '\u01CD': 'A',
  1217. '\u0200': 'A',
  1218. '\u0202': 'A',
  1219. '\u1EA0': 'A',
  1220. '\u1EAC': 'A',
  1221. '\u1EB6': 'A',
  1222. '\u1E00': 'A',
  1223. '\u0104': 'A',
  1224. '\u023A': 'A',
  1225. '\u2C6F': 'A',
  1226. '\uA732': 'AA',
  1227. '\u00C6': 'AE',
  1228. '\u01FC': 'AE',
  1229. '\u01E2': 'AE',
  1230. '\uA734': 'AO',
  1231. '\uA736': 'AU',
  1232. '\uA738': 'AV',
  1233. '\uA73A': 'AV',
  1234. '\uA73C': 'AY',
  1235. '\u24B7': 'B',
  1236. '\uFF22': 'B',
  1237. '\u1E02': 'B',
  1238. '\u1E04': 'B',
  1239. '\u1E06': 'B',
  1240. '\u0243': 'B',
  1241. '\u0182': 'B',
  1242. '\u0181': 'B',
  1243. '\u24B8': 'C',
  1244. '\uFF23': 'C',
  1245. '\u0106': 'C',
  1246. '\u0108': 'C',
  1247. '\u010A': 'C',
  1248. '\u010C': 'C',
  1249. '\u00C7': 'C',
  1250. '\u1E08': 'C',
  1251. '\u0187': 'C',
  1252. '\u023B': 'C',
  1253. '\uA73E': 'C',
  1254. '\u24B9': 'D',
  1255. '\uFF24': 'D',
  1256. '\u1E0A': 'D',
  1257. '\u010E': 'D',
  1258. '\u1E0C': 'D',
  1259. '\u1E10': 'D',
  1260. '\u1E12': 'D',
  1261. '\u1E0E': 'D',
  1262. '\u0110': 'D',
  1263. '\u018B': 'D',
  1264. '\u018A': 'D',
  1265. '\u0189': 'D',
  1266. '\uA779': 'D',
  1267. '\u01F1': 'DZ',
  1268. '\u01C4': 'DZ',
  1269. '\u01F2': 'Dz',
  1270. '\u01C5': 'Dz',
  1271. '\u24BA': 'E',
  1272. '\uFF25': 'E',
  1273. '\u00C8': 'E',
  1274. '\u00C9': 'E',
  1275. '\u00CA': 'E',
  1276. '\u1EC0': 'E',
  1277. '\u1EBE': 'E',
  1278. '\u1EC4': 'E',
  1279. '\u1EC2': 'E',
  1280. '\u1EBC': 'E',
  1281. '\u0112': 'E',
  1282. '\u1E14': 'E',
  1283. '\u1E16': 'E',
  1284. '\u0114': 'E',
  1285. '\u0116': 'E',
  1286. '\u00CB': 'E',
  1287. '\u1EBA': 'E',
  1288. '\u011A': 'E',
  1289. '\u0204': 'E',
  1290. '\u0206': 'E',
  1291. '\u1EB8': 'E',
  1292. '\u1EC6': 'E',
  1293. '\u0228': 'E',
  1294. '\u1E1C': 'E',
  1295. '\u0118': 'E',
  1296. '\u1E18': 'E',
  1297. '\u1E1A': 'E',
  1298. '\u0190': 'E',
  1299. '\u018E': 'E',
  1300. '\u24BB': 'F',
  1301. '\uFF26': 'F',
  1302. '\u1E1E': 'F',
  1303. '\u0191': 'F',
  1304. '\uA77B': 'F',
  1305. '\u24BC': 'G',
  1306. '\uFF27': 'G',
  1307. '\u01F4': 'G',
  1308. '\u011C': 'G',
  1309. '\u1E20': 'G',
  1310. '\u011E': 'G',
  1311. '\u0120': 'G',
  1312. '\u01E6': 'G',
  1313. '\u0122': 'G',
  1314. '\u01E4': 'G',
  1315. '\u0193': 'G',
  1316. '\uA7A0': 'G',
  1317. '\uA77D': 'G',
  1318. '\uA77E': 'G',
  1319. '\u24BD': 'H',
  1320. '\uFF28': 'H',
  1321. '\u0124': 'H',
  1322. '\u1E22': 'H',
  1323. '\u1E26': 'H',
  1324. '\u021E': 'H',
  1325. '\u1E24': 'H',
  1326. '\u1E28': 'H',
  1327. '\u1E2A': 'H',
  1328. '\u0126': 'H',
  1329. '\u2C67': 'H',
  1330. '\u2C75': 'H',
  1331. '\uA78D': 'H',
  1332. '\u24BE': 'I',
  1333. '\uFF29': 'I',
  1334. '\u00CC': 'I',
  1335. '\u00CD': 'I',
  1336. '\u00CE': 'I',
  1337. '\u0128': 'I',
  1338. '\u012A': 'I',
  1339. '\u012C': 'I',
  1340. '\u0130': 'I',
  1341. '\u00CF': 'I',
  1342. '\u1E2E': 'I',
  1343. '\u1EC8': 'I',
  1344. '\u01CF': 'I',
  1345. '\u0208': 'I',
  1346. '\u020A': 'I',
  1347. '\u1ECA': 'I',
  1348. '\u012E': 'I',
  1349. '\u1E2C': 'I',
  1350. '\u0197': 'I',
  1351. '\u24BF': 'J',
  1352. '\uFF2A': 'J',
  1353. '\u0134': 'J',
  1354. '\u0248': 'J',
  1355. '\u24C0': 'K',
  1356. '\uFF2B': 'K',
  1357. '\u1E30': 'K',
  1358. '\u01E8': 'K',
  1359. '\u1E32': 'K',
  1360. '\u0136': 'K',
  1361. '\u1E34': 'K',
  1362. '\u0198': 'K',
  1363. '\u2C69': 'K',
  1364. '\uA740': 'K',
  1365. '\uA742': 'K',
  1366. '\uA744': 'K',
  1367. '\uA7A2': 'K',
  1368. '\u24C1': 'L',
  1369. '\uFF2C': 'L',
  1370. '\u013F': 'L',
  1371. '\u0139': 'L',
  1372. '\u013D': 'L',
  1373. '\u1E36': 'L',
  1374. '\u1E38': 'L',
  1375. '\u013B': 'L',
  1376. '\u1E3C': 'L',
  1377. '\u1E3A': 'L',
  1378. '\u0141': 'L',
  1379. '\u023D': 'L',
  1380. '\u2C62': 'L',
  1381. '\u2C60': 'L',
  1382. '\uA748': 'L',
  1383. '\uA746': 'L',
  1384. '\uA780': 'L',
  1385. '\u01C7': 'LJ',
  1386. '\u01C8': 'Lj',
  1387. '\u24C2': 'M',
  1388. '\uFF2D': 'M',
  1389. '\u1E3E': 'M',
  1390. '\u1E40': 'M',
  1391. '\u1E42': 'M',
  1392. '\u2C6E': 'M',
  1393. '\u019C': 'M',
  1394. '\u24C3': 'N',
  1395. '\uFF2E': 'N',
  1396. '\u01F8': 'N',
  1397. '\u0143': 'N',
  1398. '\u00D1': 'N',
  1399. '\u1E44': 'N',
  1400. '\u0147': 'N',
  1401. '\u1E46': 'N',
  1402. '\u0145': 'N',
  1403. '\u1E4A': 'N',
  1404. '\u1E48': 'N',
  1405. '\u0220': 'N',
  1406. '\u019D': 'N',
  1407. '\uA790': 'N',
  1408. '\uA7A4': 'N',
  1409. '\u01CA': 'NJ',
  1410. '\u01CB': 'Nj',
  1411. '\u24C4': 'O',
  1412. '\uFF2F': 'O',
  1413. '\u00D2': 'O',
  1414. '\u00D3': 'O',
  1415. '\u00D4': 'O',
  1416. '\u1ED2': 'O',
  1417. '\u1ED0': 'O',
  1418. '\u1ED6': 'O',
  1419. '\u1ED4': 'O',
  1420. '\u00D5': 'O',
  1421. '\u1E4C': 'O',
  1422. '\u022C': 'O',
  1423. '\u1E4E': 'O',
  1424. '\u014C': 'O',
  1425. '\u1E50': 'O',
  1426. '\u1E52': 'O',
  1427. '\u014E': 'O',
  1428. '\u022E': 'O',
  1429. '\u0230': 'O',
  1430. '\u00D6': 'O',
  1431. '\u022A': 'O',
  1432. '\u1ECE': 'O',
  1433. '\u0150': 'O',
  1434. '\u01D1': 'O',
  1435. '\u020C': 'O',
  1436. '\u020E': 'O',
  1437. '\u01A0': 'O',
  1438. '\u1EDC': 'O',
  1439. '\u1EDA': 'O',
  1440. '\u1EE0': 'O',
  1441. '\u1EDE': 'O',
  1442. '\u1EE2': 'O',
  1443. '\u1ECC': 'O',
  1444. '\u1ED8': 'O',
  1445. '\u01EA': 'O',
  1446. '\u01EC': 'O',
  1447. '\u00D8': 'O',
  1448. '\u01FE': 'O',
  1449. '\u0186': 'O',
  1450. '\u019F': 'O',
  1451. '\uA74A': 'O',
  1452. '\uA74C': 'O',
  1453. '\u01A2': 'OI',
  1454. '\uA74E': 'OO',
  1455. '\u0222': 'OU',
  1456. '\u24C5': 'P',
  1457. '\uFF30': 'P',
  1458. '\u1E54': 'P',
  1459. '\u1E56': 'P',
  1460. '\u01A4': 'P',
  1461. '\u2C63': 'P',
  1462. '\uA750': 'P',
  1463. '\uA752': 'P',
  1464. '\uA754': 'P',
  1465. '\u24C6': 'Q',
  1466. '\uFF31': 'Q',
  1467. '\uA756': 'Q',
  1468. '\uA758': 'Q',
  1469. '\u024A': 'Q',
  1470. '\u24C7': 'R',
  1471. '\uFF32': 'R',
  1472. '\u0154': 'R',
  1473. '\u1E58': 'R',
  1474. '\u0158': 'R',
  1475. '\u0210': 'R',
  1476. '\u0212': 'R',
  1477. '\u1E5A': 'R',
  1478. '\u1E5C': 'R',
  1479. '\u0156': 'R',
  1480. '\u1E5E': 'R',
  1481. '\u024C': 'R',
  1482. '\u2C64': 'R',
  1483. '\uA75A': 'R',
  1484. '\uA7A6': 'R',
  1485. '\uA782': 'R',
  1486. '\u24C8': 'S',
  1487. '\uFF33': 'S',
  1488. '\u1E9E': 'S',
  1489. '\u015A': 'S',
  1490. '\u1E64': 'S',
  1491. '\u015C': 'S',
  1492. '\u1E60': 'S',
  1493. '\u0160': 'S',
  1494. '\u1E66': 'S',
  1495. '\u1E62': 'S',
  1496. '\u1E68': 'S',
  1497. '\u0218': 'S',
  1498. '\u015E': 'S',
  1499. '\u2C7E': 'S',
  1500. '\uA7A8': 'S',
  1501. '\uA784': 'S',
  1502. '\u24C9': 'T',
  1503. '\uFF34': 'T',
  1504. '\u1E6A': 'T',
  1505. '\u0164': 'T',
  1506. '\u1E6C': 'T',
  1507. '\u021A': 'T',
  1508. '\u0162': 'T',
  1509. '\u1E70': 'T',
  1510. '\u1E6E': 'T',
  1511. '\u0166': 'T',
  1512. '\u01AC': 'T',
  1513. '\u01AE': 'T',
  1514. '\u023E': 'T',
  1515. '\uA786': 'T',
  1516. '\uA728': 'TZ',
  1517. '\u24CA': 'U',
  1518. '\uFF35': 'U',
  1519. '\u00D9': 'U',
  1520. '\u00DA': 'U',
  1521. '\u00DB': 'U',
  1522. '\u0168': 'U',
  1523. '\u1E78': 'U',
  1524. '\u016A': 'U',
  1525. '\u1E7A': 'U',
  1526. '\u016C': 'U',
  1527. '\u00DC': 'U',
  1528. '\u01DB': 'U',
  1529. '\u01D7': 'U',
  1530. '\u01D5': 'U',
  1531. '\u01D9': 'U',
  1532. '\u1EE6': 'U',
  1533. '\u016E': 'U',
  1534. '\u0170': 'U',
  1535. '\u01D3': 'U',
  1536. '\u0214': 'U',
  1537. '\u0216': 'U',
  1538. '\u01AF': 'U',
  1539. '\u1EEA': 'U',
  1540. '\u1EE8': 'U',
  1541. '\u1EEE': 'U',
  1542. '\u1EEC': 'U',
  1543. '\u1EF0': 'U',
  1544. '\u1EE4': 'U',
  1545. '\u1E72': 'U',
  1546. '\u0172': 'U',
  1547. '\u1E76': 'U',
  1548. '\u1E74': 'U',
  1549. '\u0244': 'U',
  1550. '\u24CB': 'V',
  1551. '\uFF36': 'V',
  1552. '\u1E7C': 'V',
  1553. '\u1E7E': 'V',
  1554. '\u01B2': 'V',
  1555. '\uA75E': 'V',
  1556. '\u0245': 'V',
  1557. '\uA760': 'VY',
  1558. '\u24CC': 'W',
  1559. '\uFF37': 'W',
  1560. '\u1E80': 'W',
  1561. '\u1E82': 'W',
  1562. '\u0174': 'W',
  1563. '\u1E86': 'W',
  1564. '\u1E84': 'W',
  1565. '\u1E88': 'W',
  1566. '\u2C72': 'W',
  1567. '\u24CD': 'X',
  1568. '\uFF38': 'X',
  1569. '\u1E8A': 'X',
  1570. '\u1E8C': 'X',
  1571. '\u24CE': 'Y',
  1572. '\uFF39': 'Y',
  1573. '\u1EF2': 'Y',
  1574. '\u00DD': 'Y',
  1575. '\u0176': 'Y',
  1576. '\u1EF8': 'Y',
  1577. '\u0232': 'Y',
  1578. '\u1E8E': 'Y',
  1579. '\u0178': 'Y',
  1580. '\u1EF6': 'Y',
  1581. '\u1EF4': 'Y',
  1582. '\u01B3': 'Y',
  1583. '\u024E': 'Y',
  1584. '\u1EFE': 'Y',
  1585. '\u24CF': 'Z',
  1586. '\uFF3A': 'Z',
  1587. '\u0179': 'Z',
  1588. '\u1E90': 'Z',
  1589. '\u017B': 'Z',
  1590. '\u017D': 'Z',
  1591. '\u1E92': 'Z',
  1592. '\u1E94': 'Z',
  1593. '\u01B5': 'Z',
  1594. '\u0224': 'Z',
  1595. '\u2C7F': 'Z',
  1596. '\u2C6B': 'Z',
  1597. '\uA762': 'Z',
  1598. '\u24D0': 'a',
  1599. '\uFF41': 'a',
  1600. '\u1E9A': 'a',
  1601. '\u00E0': 'a',
  1602. '\u00E1': 'a',
  1603. '\u00E2': 'a',
  1604. '\u1EA7': 'a',
  1605. '\u1EA5': 'a',
  1606. '\u1EAB': 'a',
  1607. '\u1EA9': 'a',
  1608. '\u00E3': 'a',
  1609. '\u0101': 'a',
  1610. '\u0103': 'a',
  1611. '\u1EB1': 'a',
  1612. '\u1EAF': 'a',
  1613. '\u1EB5': 'a',
  1614. '\u1EB3': 'a',
  1615. '\u0227': 'a',
  1616. '\u01E1': 'a',
  1617. '\u00E4': 'a',
  1618. '\u01DF': 'a',
  1619. '\u1EA3': 'a',
  1620. '\u00E5': 'a',
  1621. '\u01FB': 'a',
  1622. '\u01CE': 'a',
  1623. '\u0201': 'a',
  1624. '\u0203': 'a',
  1625. '\u1EA1': 'a',
  1626. '\u1EAD': 'a',
  1627. '\u1EB7': 'a',
  1628. '\u1E01': 'a',
  1629. '\u0105': 'a',
  1630. '\u2C65': 'a',
  1631. '\u0250': 'a',
  1632. '\uA733': 'aa',
  1633. '\u00E6': 'ae',
  1634. '\u01FD': 'ae',
  1635. '\u01E3': 'ae',
  1636. '\uA735': 'ao',
  1637. '\uA737': 'au',
  1638. '\uA739': 'av',
  1639. '\uA73B': 'av',
  1640. '\uA73D': 'ay',
  1641. '\u24D1': 'b',
  1642. '\uFF42': 'b',
  1643. '\u1E03': 'b',
  1644. '\u1E05': 'b',
  1645. '\u1E07': 'b',
  1646. '\u0180': 'b',
  1647. '\u0183': 'b',
  1648. '\u0253': 'b',
  1649. '\u24D2': 'c',
  1650. '\uFF43': 'c',
  1651. '\u0107': 'c',
  1652. '\u0109': 'c',
  1653. '\u010B': 'c',
  1654. '\u010D': 'c',
  1655. '\u00E7': 'c',
  1656. '\u1E09': 'c',
  1657. '\u0188': 'c',
  1658. '\u023C': 'c',
  1659. '\uA73F': 'c',
  1660. '\u2184': 'c',
  1661. '\u24D3': 'd',
  1662. '\uFF44': 'd',
  1663. '\u1E0B': 'd',
  1664. '\u010F': 'd',
  1665. '\u1E0D': 'd',
  1666. '\u1E11': 'd',
  1667. '\u1E13': 'd',
  1668. '\u1E0F': 'd',
  1669. '\u0111': 'd',
  1670. '\u018C': 'd',
  1671. '\u0256': 'd',
  1672. '\u0257': 'd',
  1673. '\uA77A': 'd',
  1674. '\u01F3': 'dz',
  1675. '\u01C6': 'dz',
  1676. '\u24D4': 'e',
  1677. '\uFF45': 'e',
  1678. '\u00E8': 'e',
  1679. '\u00E9': 'e',
  1680. '\u00EA': 'e',
  1681. '\u1EC1': 'e',
  1682. '\u1EBF': 'e',
  1683. '\u1EC5': 'e',
  1684. '\u1EC3': 'e',
  1685. '\u1EBD': 'e',
  1686. '\u0113': 'e',
  1687. '\u1E15': 'e',
  1688. '\u1E17': 'e',
  1689. '\u0115': 'e',
  1690. '\u0117': 'e',
  1691. '\u00EB': 'e',
  1692. '\u1EBB': 'e',
  1693. '\u011B': 'e',
  1694. '\u0205': 'e',
  1695. '\u0207': 'e',
  1696. '\u1EB9': 'e',
  1697. '\u1EC7': 'e',
  1698. '\u0229': 'e',
  1699. '\u1E1D': 'e',
  1700. '\u0119': 'e',
  1701. '\u1E19': 'e',
  1702. '\u1E1B': 'e',
  1703. '\u0247': 'e',
  1704. '\u025B': 'e',
  1705. '\u01DD': 'e',
  1706. '\u24D5': 'f',
  1707. '\uFF46': 'f',
  1708. '\u1E1F': 'f',
  1709. '\u0192': 'f',
  1710. '\uA77C': 'f',
  1711. '\u24D6': 'g',
  1712. '\uFF47': 'g',
  1713. '\u01F5': 'g',
  1714. '\u011D': 'g',
  1715. '\u1E21': 'g',
  1716. '\u011F': 'g',
  1717. '\u0121': 'g',
  1718. '\u01E7': 'g',
  1719. '\u0123': 'g',
  1720. '\u01E5': 'g',
  1721. '\u0260': 'g',
  1722. '\uA7A1': 'g',
  1723. '\u1D79': 'g',
  1724. '\uA77F': 'g',
  1725. '\u24D7': 'h',
  1726. '\uFF48': 'h',
  1727. '\u0125': 'h',
  1728. '\u1E23': 'h',
  1729. '\u1E27': 'h',
  1730. '\u021F': 'h',
  1731. '\u1E25': 'h',
  1732. '\u1E29': 'h',
  1733. '\u1E2B': 'h',
  1734. '\u1E96': 'h',
  1735. '\u0127': 'h',
  1736. '\u2C68': 'h',
  1737. '\u2C76': 'h',
  1738. '\u0265': 'h',
  1739. '\u0195': 'hv',
  1740. '\u24D8': 'i',
  1741. '\uFF49': 'i',
  1742. '\u00EC': 'i',
  1743. '\u00ED': 'i',
  1744. '\u00EE': 'i',
  1745. '\u0129': 'i',
  1746. '\u012B': 'i',
  1747. '\u012D': 'i',
  1748. '\u00EF': 'i',
  1749. '\u1E2F': 'i',
  1750. '\u1EC9': 'i',
  1751. '\u01D0': 'i',
  1752. '\u0209': 'i',
  1753. '\u020B': 'i',
  1754. '\u1ECB': 'i',
  1755. '\u012F': 'i',
  1756. '\u1E2D': 'i',
  1757. '\u0268': 'i',
  1758. '\u0131': 'i',
  1759. '\u24D9': 'j',
  1760. '\uFF4A': 'j',
  1761. '\u0135': 'j',
  1762. '\u01F0': 'j',
  1763. '\u0249': 'j',
  1764. '\u24DA': 'k',
  1765. '\uFF4B': 'k',
  1766. '\u1E31': 'k',
  1767. '\u01E9': 'k',
  1768. '\u1E33': 'k',
  1769. '\u0137': 'k',
  1770. '\u1E35': 'k',
  1771. '\u0199': 'k',
  1772. '\u2C6A': 'k',
  1773. '\uA741': 'k',
  1774. '\uA743': 'k',
  1775. '\uA745': 'k',
  1776. '\uA7A3': 'k',
  1777. '\u24DB': 'l',
  1778. '\uFF4C': 'l',
  1779. '\u0140': 'l',
  1780. '\u013A': 'l',
  1781. '\u013E': 'l',
  1782. '\u1E37': 'l',
  1783. '\u1E39': 'l',
  1784. '\u013C': 'l',
  1785. '\u1E3D': 'l',
  1786. '\u1E3B': 'l',
  1787. '\u017F': 'l',
  1788. '\u0142': 'l',
  1789. '\u019A': 'l',
  1790. '\u026B': 'l',
  1791. '\u2C61': 'l',
  1792. '\uA749': 'l',
  1793. '\uA781': 'l',
  1794. '\uA747': 'l',
  1795. '\u01C9': 'lj',
  1796. '\u24DC': 'm',
  1797. '\uFF4D': 'm',
  1798. '\u1E3F': 'm',
  1799. '\u1E41': 'm',
  1800. '\u1E43': 'm',
  1801. '\u0271': 'm',
  1802. '\u026F': 'm',
  1803. '\u24DD': 'n',
  1804. '\uFF4E': 'n',
  1805. '\u01F9': 'n',
  1806. '\u0144': 'n',
  1807. '\u00F1': 'n',
  1808. '\u1E45': 'n',
  1809. '\u0148': 'n',
  1810. '\u1E47': 'n',
  1811. '\u0146': 'n',
  1812. '\u1E4B': 'n',
  1813. '\u1E49': 'n',
  1814. '\u019E': 'n',
  1815. '\u0272': 'n',
  1816. '\u0149': 'n',
  1817. '\uA791': 'n',
  1818. '\uA7A5': 'n',
  1819. '\u01CC': 'nj',
  1820. '\u24DE': 'o',
  1821. '\uFF4F': 'o',
  1822. '\u00F2': 'o',
  1823. '\u00F3': 'o',
  1824. '\u00F4': 'o',
  1825. '\u1ED3': 'o',
  1826. '\u1ED1': 'o',
  1827. '\u1ED7': 'o',
  1828. '\u1ED5': 'o',
  1829. '\u00F5': 'o',
  1830. '\u1E4D': 'o',
  1831. '\u022D': 'o',
  1832. '\u1E4F': 'o',
  1833. '\u014D': 'o',
  1834. '\u1E51': 'o',
  1835. '\u1E53': 'o',
  1836. '\u014F': 'o',
  1837. '\u022F': 'o',
  1838. '\u0231': 'o',
  1839. '\u00F6': 'o',
  1840. '\u022B': 'o',
  1841. '\u1ECF': 'o',
  1842. '\u0151': 'o',
  1843. '\u01D2': 'o',
  1844. '\u020D': 'o',
  1845. '\u020F': 'o',
  1846. '\u01A1': 'o',
  1847. '\u1EDD': 'o',
  1848. '\u1EDB': 'o',
  1849. '\u1EE1': 'o',
  1850. '\u1EDF': 'o',
  1851. '\u1EE3': 'o',
  1852. '\u1ECD': 'o',
  1853. '\u1ED9': 'o',
  1854. '\u01EB': 'o',
  1855. '\u01ED': 'o',
  1856. '\u00F8': 'o',
  1857. '\u01FF': 'o',
  1858. '\u0254': 'o',
  1859. '\uA74B': 'o',
  1860. '\uA74D': 'o',
  1861. '\u0275': 'o',
  1862. '\u01A3': 'oi',
  1863. '\u0223': 'ou',
  1864. '\uA74F': 'oo',
  1865. '\u24DF': 'p',
  1866. '\uFF50': 'p',
  1867. '\u1E55': 'p',
  1868. '\u1E57': 'p',
  1869. '\u01A5': 'p',
  1870. '\u1D7D': 'p',
  1871. '\uA751': 'p',
  1872. '\uA753': 'p',
  1873. '\uA755': 'p',
  1874. '\u24E0': 'q',
  1875. '\uFF51': 'q',
  1876. '\u024B': 'q',
  1877. '\uA757': 'q',
  1878. '\uA759': 'q',
  1879. '\u24E1': 'r',
  1880. '\uFF52': 'r',
  1881. '\u0155': 'r',
  1882. '\u1E59': 'r',
  1883. '\u0159': 'r',
  1884. '\u0211': 'r',
  1885. '\u0213': 'r',
  1886. '\u1E5B': 'r',
  1887. '\u1E5D': 'r',
  1888. '\u0157': 'r',
  1889. '\u1E5F': 'r',
  1890. '\u024D': 'r',
  1891. '\u027D': 'r',
  1892. '\uA75B': 'r',
  1893. '\uA7A7': 'r',
  1894. '\uA783': 'r',
  1895. '\u24E2': 's',
  1896. '\uFF53': 's',
  1897. '\u00DF': 's',
  1898. '\u015B': 's',
  1899. '\u1E65': 's',
  1900. '\u015D': 's',
  1901. '\u1E61': 's',
  1902. '\u0161': 's',
  1903. '\u1E67': 's',
  1904. '\u1E63': 's',
  1905. '\u1E69': 's',
  1906. '\u0219': 's',
  1907. '\u015F': 's',
  1908. '\u023F': 's',
  1909. '\uA7A9': 's',
  1910. '\uA785': 's',
  1911. '\u1E9B': 's',
  1912. '\u24E3': 't',
  1913. '\uFF54': 't',
  1914. '\u1E6B': 't',
  1915. '\u1E97': 't',
  1916. '\u0165': 't',
  1917. '\u1E6D': 't',
  1918. '\u021B': 't',
  1919. '\u0163': 't',
  1920. '\u1E71': 't',
  1921. '\u1E6F': 't',
  1922. '\u0167': 't',
  1923. '\u01AD': 't',
  1924. '\u0288': 't',
  1925. '\u2C66': 't',
  1926. '\uA787': 't',
  1927. '\uA729': 'tz',
  1928. '\u24E4': 'u',
  1929. '\uFF55': 'u',
  1930. '\u00F9': 'u',
  1931. '\u00FA': 'u',
  1932. '\u00FB': 'u',
  1933. '\u0169': 'u',
  1934. '\u1E79': 'u',
  1935. '\u016B': 'u',
  1936. '\u1E7B': 'u',
  1937. '\u016D': 'u',
  1938. '\u00FC': 'u',
  1939. '\u01DC': 'u',
  1940. '\u01D8': 'u',
  1941. '\u01D6': 'u',
  1942. '\u01DA': 'u',
  1943. '\u1EE7': 'u',
  1944. '\u016F': 'u',
  1945. '\u0171': 'u',
  1946. '\u01D4': 'u',
  1947. '\u0215': 'u',
  1948. '\u0217': 'u',
  1949. '\u01B0': 'u',
  1950. '\u1EEB': 'u',
  1951. '\u1EE9': 'u',
  1952. '\u1EEF': 'u',
  1953. '\u1EED': 'u',
  1954. '\u1EF1': 'u',
  1955. '\u1EE5': 'u',
  1956. '\u1E73': 'u',
  1957. '\u0173': 'u',
  1958. '\u1E77': 'u',
  1959. '\u1E75': 'u',
  1960. '\u0289': 'u',
  1961. '\u24E5': 'v',
  1962. '\uFF56': 'v',
  1963. '\u1E7D': 'v',
  1964. '\u1E7F': 'v',
  1965. '\u028B': 'v',
  1966. '\uA75F': 'v',
  1967. '\u028C': 'v',
  1968. '\uA761': 'vy',
  1969. '\u24E6': 'w',
  1970. '\uFF57': 'w',
  1971. '\u1E81': 'w',
  1972. '\u1E83': 'w',
  1973. '\u0175': 'w',
  1974. '\u1E87': 'w',
  1975. '\u1E85': 'w',
  1976. '\u1E98': 'w',
  1977. '\u1E89': 'w',
  1978. '\u2C73': 'w',
  1979. '\u24E7': 'x',
  1980. '\uFF58': 'x',
  1981. '\u1E8B': 'x',
  1982. '\u1E8D': 'x',
  1983. '\u24E8': 'y',
  1984. '\uFF59': 'y',
  1985. '\u1EF3': 'y',
  1986. '\u00FD': 'y',
  1987. '\u0177': 'y',
  1988. '\u1EF9': 'y',
  1989. '\u0233': 'y',
  1990. '\u1E8F': 'y',
  1991. '\u00FF': 'y',
  1992. '\u1EF7': 'y',
  1993. '\u1E99': 'y',
  1994. '\u1EF5': 'y',
  1995. '\u01B4': 'y',
  1996. '\u024F': 'y',
  1997. '\u1EFF': 'y',
  1998. '\u24E9': 'z',
  1999. '\uFF5A': 'z',
  2000. '\u017A': 'z',
  2001. '\u1E91': 'z',
  2002. '\u017C': 'z',
  2003. '\u017E': 'z',
  2004. '\u1E93': 'z',
  2005. '\u1E95': 'z',
  2006. '\u01B6': 'z',
  2007. '\u0225': 'z',
  2008. '\u0240': 'z',
  2009. '\u2C6C': 'z',
  2010. '\uA763': 'z',
  2011. '\u0386': '\u0391',
  2012. '\u0388': '\u0395',
  2013. '\u0389': '\u0397',
  2014. '\u038A': '\u0399',
  2015. '\u03AA': '\u0399',
  2016. '\u038C': '\u039F',
  2017. '\u038E': '\u03A5',
  2018. '\u03AB': '\u03A5',
  2019. '\u038F': '\u03A9',
  2020. '\u03AC': '\u03B1',
  2021. '\u03AD': '\u03B5',
  2022. '\u03AE': '\u03B7',
  2023. '\u03AF': '\u03B9',
  2024. '\u03CA': '\u03B9',
  2025. '\u0390': '\u03B9',
  2026. '\u03CC': '\u03BF',
  2027. '\u03CD': '\u03C5',
  2028. '\u03CB': '\u03C5',
  2029. '\u03B0': '\u03C5',
  2030. '\u03C9': '\u03C9',
  2031. '\u03C2': '\u03C3'
  2032. };
  2033. return diacritics;
  2034. });
  2035. define('select2/data/base',[
  2036. '../utils'
  2037. ], function (Utils) {
  2038. function BaseAdapter ($element, options) {
  2039. BaseAdapter.__super__.constructor.call(this);
  2040. }
  2041. Utils.Extend(BaseAdapter, Utils.Observable);
  2042. BaseAdapter.prototype.current = function (callback) {
  2043. throw new Error('The `current` method must be defined in child classes.');
  2044. };
  2045. BaseAdapter.prototype.query = function (params, callback) {
  2046. throw new Error('The `query` method must be defined in child classes.');
  2047. };
  2048. BaseAdapter.prototype.bind = function (container, $container) {
  2049. // Can be implemented in subclasses
  2050. };
  2051. BaseAdapter.prototype.destroy = function () {
  2052. // Can be implemented in subclasses
  2053. };
  2054. BaseAdapter.prototype.generateResultId = function (container, data) {
  2055. var id = container.id + '-result-';
  2056. id += Utils.generateChars(4);
  2057. if (data.id != null) {
  2058. id += '-' + data.id.toString();
  2059. } else {
  2060. id += '-' + Utils.generateChars(4);
  2061. }
  2062. return id;
  2063. };
  2064. return BaseAdapter;
  2065. });
  2066. define('select2/data/select',[
  2067. './base',
  2068. '../utils',
  2069. 'jquery'
  2070. ], function (BaseAdapter, Utils, $) {
  2071. function SelectAdapter ($element, options) {
  2072. this.$element = $element;
  2073. this.options = options;
  2074. SelectAdapter.__super__.constructor.call(this);
  2075. }
  2076. Utils.Extend(SelectAdapter, BaseAdapter);
  2077. SelectAdapter.prototype.current = function (callback) {
  2078. var data = [];
  2079. var self = this;
  2080. this.$element.find(':selected').each(function () {
  2081. var $option = $(this);
  2082. var option = self.item($option);
  2083. data.push(option);
  2084. });
  2085. callback(data);
  2086. };
  2087. SelectAdapter.prototype.select = function (data) {
  2088. var self = this;
  2089. if (this.$element.prop('multiple')) {
  2090. this.current(function (currentData) {
  2091. var val = [];
  2092. data = [data];
  2093. data.push.apply(data, currentData);
  2094. for (var d = 0; d < data.length; d++) {
  2095. id = data[d].id;
  2096. if (val.indexOf(id) === -1) {
  2097. val.push(id);
  2098. }
  2099. }
  2100. self.$element.val(val);
  2101. self.$element.trigger('change');
  2102. });
  2103. } else {
  2104. var val = data.id;
  2105. this.$element.val(val);
  2106. this.$element.trigger('change');
  2107. }
  2108. };
  2109. SelectAdapter.prototype.unselect = function (data) {
  2110. var self = this;
  2111. if (!this.$element.prop('multiple')) {
  2112. return;
  2113. }
  2114. this.current(function (currentData) {
  2115. var val = [];
  2116. for (var d = 0; d < currentData.length; d++) {
  2117. id = currentData[d].id;
  2118. if (id !== data.id && val.indexOf(id) === -1) {
  2119. val.push(id);
  2120. }
  2121. }
  2122. self.$element.val(val);
  2123. self.$element.trigger('change');
  2124. });
  2125. };
  2126. SelectAdapter.prototype.bind = function (container, $container) {
  2127. var self = this;
  2128. this.container = container;
  2129. container.on('select', function (params) {
  2130. self.select(params.data);
  2131. });
  2132. container.on('unselect', function (params) {
  2133. self.unselect(params.data);
  2134. });
  2135. };
  2136. SelectAdapter.prototype.destroy = function () {
  2137. // Remove anything added to child elements
  2138. this.$element.find('*').each(function () {
  2139. // Remove any custom data set by Select2
  2140. $.removeData(this, 'data');
  2141. });
  2142. };
  2143. SelectAdapter.prototype.query = function (params, callback) {
  2144. var data = [];
  2145. var self = this;
  2146. var $options = this.$element.children();
  2147. $options.each(function () {
  2148. var $option = $(this);
  2149. if (!$option.is('option') && !$option.is('optgroup')) {
  2150. return;
  2151. }
  2152. var option = self.item($option);
  2153. var matches = self.matches(params, option);
  2154. if (matches !== null) {
  2155. data.push(matches);
  2156. }
  2157. });
  2158. callback(data);
  2159. };
  2160. SelectAdapter.prototype.option = function (data) {
  2161. var option = document.createElement('option');
  2162. option.value = data.id;
  2163. if (data.disabled) {
  2164. option.disabled = true;
  2165. }
  2166. if (data.selected) {
  2167. option.selected = true;
  2168. }
  2169. option.innerText = data.text;
  2170. var $option = $(option);
  2171. var normalizedData = this._normalizeItem(data);
  2172. // Override the option's data with the combined data
  2173. $.data(option, 'data', normalizedData);
  2174. return $option;
  2175. };
  2176. SelectAdapter.prototype.item = function ($option) {
  2177. var data = {};
  2178. data = $.data($option[0], 'data');
  2179. if (data != null) {
  2180. return data;
  2181. }
  2182. if ($option.is('option')) {
  2183. data = {
  2184. id: $option.val(),
  2185. text: $option.html(),
  2186. disabled: $option.prop('disabled'),
  2187. selected: $option.prop('selected')
  2188. };
  2189. } else if ($option.is('optgroup')) {
  2190. data = {
  2191. text: $option.attr('label'),
  2192. children: []
  2193. };
  2194. var $children = $option.children('option');
  2195. var children = [];
  2196. for (var c = 0; c < $children.length; c++) {
  2197. var $child = $($children[c]);
  2198. var child = this.item($child);
  2199. children.push(child);
  2200. }
  2201. data.children = children;
  2202. }
  2203. data = this._normalizeItem(data);
  2204. $.data($option[0], 'data', data);
  2205. return data;
  2206. };
  2207. SelectAdapter.prototype._normalizeItem = function (item) {
  2208. if (item.text == null) {
  2209. item = {
  2210. id: item,
  2211. text: item
  2212. };
  2213. }
  2214. var defaults = {
  2215. selected: false,
  2216. disabled: false
  2217. };
  2218. if (item.id != null) {
  2219. item.id = item.id.toString();
  2220. }
  2221. if (item.text != null) {
  2222. item.text = item.text.toString();
  2223. }
  2224. if (item._resultId == null && item.id && this.container != null) {
  2225. item._resultId = this.generateResultId(this.container, item);
  2226. }
  2227. return $.extend({}, defaults, item);
  2228. };
  2229. SelectAdapter.prototype.matches = function (params, data) {
  2230. var matcher = this.options.get('matcher');
  2231. return matcher(params, data);
  2232. };
  2233. return SelectAdapter;
  2234. });
  2235. define('select2/data/array',[
  2236. './select',
  2237. '../utils',
  2238. 'jquery'
  2239. ], function (SelectAdapter, Utils, $) {
  2240. function ArrayAdapter ($element, options) {
  2241. var data = options.get('data');
  2242. ArrayAdapter.__super__.constructor.call(this, $element, options);
  2243. this.convertToOptions(data);
  2244. }
  2245. Utils.Extend(ArrayAdapter, SelectAdapter);
  2246. ArrayAdapter.prototype.select = function (data) {
  2247. var $option = this.$element.find('option[value="' + data.id + '"]');
  2248. if ($option.length === 0) {
  2249. $option = this.option(data);
  2250. this.$element.append($option);
  2251. }
  2252. ArrayAdapter.__super__.select.call(this, data);
  2253. };
  2254. ArrayAdapter.prototype.convertToOptions = function (data) {
  2255. var self = this;
  2256. var $existing = this.$element.find('option');
  2257. var existingIds = $existing.map(function () {
  2258. return self.item($(this)).id;
  2259. }).get();
  2260. // Filter out all items except for the one passed in the argument
  2261. function onlyItem (item) {
  2262. return function () {
  2263. return $(this).val() == item.id;
  2264. };
  2265. }
  2266. for (var d = 0; d < data.length; d++) {
  2267. var item = data[d];
  2268. item.id = item.id.toString();
  2269. // Skip items which were pre-loaded, only merge the data
  2270. if (existingIds.indexOf(item.id) >= 0) {
  2271. var $existingOption = $existing.filter(onlyItem(item));
  2272. var existingData = this.item($existingOption);
  2273. var newData = $.extend(true, {}, existingData, item);
  2274. var $newOption = this.option(existingData);
  2275. $existingOption.replaceWith($newOption);
  2276. continue;
  2277. }
  2278. var $option = this.option(item);
  2279. this.$element.append($option);
  2280. }
  2281. };
  2282. return ArrayAdapter;
  2283. });
  2284. define('select2/data/ajax',[
  2285. './array',
  2286. '../utils',
  2287. 'jquery'
  2288. ], function (ArrayAdapter, Utils, $) {
  2289. function AjaxAdapter ($element, options) {
  2290. this.ajaxOptions = options.get('ajax');
  2291. if (this.ajaxOptions.processResults != null) {
  2292. this.processResults = this.ajaxOptions.processResults;
  2293. }
  2294. ArrayAdapter.__super__.constructor.call(this, $element, options);
  2295. }
  2296. Utils.Extend(AjaxAdapter, ArrayAdapter);
  2297. AjaxAdapter.prototype.processResults = function (results) {
  2298. return results;
  2299. };
  2300. AjaxAdapter.prototype.query = function (params, callback) {
  2301. var matches = [];
  2302. var self = this;
  2303. if (this._request) {
  2304. this._request.abort();
  2305. this._request = null;
  2306. }
  2307. var options = $.extend({
  2308. type: 'GET'
  2309. }, this.ajaxOptions);
  2310. if (typeof options.url === 'function') {
  2311. options.url = options.url(params);
  2312. }
  2313. if (typeof options.data === 'function') {
  2314. options.data = options.data(params);
  2315. }
  2316. function request () {
  2317. var $request = $.ajax(options);
  2318. $request.success(function (data) {
  2319. var results = self.processResults(data);
  2320. callback(results);
  2321. });
  2322. self._request = $request;
  2323. }
  2324. if (this.ajaxOptions.delay && params.term !== '') {
  2325. if (this._queryTimeout) {
  2326. window.clearTimeout(this._queryTimeout);
  2327. }
  2328. this._queryTimeout = window.setTimeout(request, this.ajaxOptions.delay);
  2329. } else {
  2330. request();
  2331. }
  2332. };
  2333. return AjaxAdapter;
  2334. });
  2335. define('select2/data/tags',[
  2336. ], function () {
  2337. function Tags (decorated, $element, options) {
  2338. var tags = options.get('tags');
  2339. decorated.call(this, $element, options);
  2340. if ($.isArray(tags)) {
  2341. for (var t = 0; t < tags.length; t++) {
  2342. var tag = tags[t];
  2343. var item = this._normalizeItem(tag);
  2344. var $option = this.option(item);
  2345. this.$element.append($option);
  2346. }
  2347. }
  2348. }
  2349. Tags.prototype.query = function (decorated, params, callback) {
  2350. var self = this;
  2351. this._removeOldTags();
  2352. if (params.term == null || params.term === '' || params.page != null) {
  2353. decorated.call(this, params, callback);
  2354. return;
  2355. }
  2356. function wrapper (data, child) {
  2357. for (var i = 0; i < data.length; i++) {
  2358. var option = data[i];
  2359. var checkChildren = (
  2360. option.children != null && !wrapper(option.children, true)
  2361. );
  2362. var checkText = option.text === params.term;
  2363. if (checkText || checkChildren) {
  2364. if (child) {
  2365. return false;
  2366. }
  2367. callback(data);
  2368. return;
  2369. }
  2370. }
  2371. if (child) {
  2372. return true;
  2373. }
  2374. var tag = self.createTag(params);
  2375. var $option = self.option(tag);
  2376. $option.attr('data-select2-tag', true);
  2377. self.$element.append($option);
  2378. self.insertTag(data, tag);
  2379. callback(data);
  2380. }
  2381. decorated.call(this, params, wrapper);
  2382. };
  2383. Tags.prototype.createTag = function (decorated, params) {
  2384. return {
  2385. id: params.term,
  2386. text: params.term
  2387. };
  2388. };
  2389. Tags.prototype.insertTag = function (_, data, tag) {
  2390. data.unshift(tag);
  2391. };
  2392. Tags.prototype._removeOldTags = function (_) {
  2393. var tag = this._lastTag;
  2394. var $options = this.$element.find('option[data-select2-tag]');
  2395. $options.each(function () {
  2396. if (this.selected) {
  2397. return;
  2398. }
  2399. $(this).remove();
  2400. });
  2401. };
  2402. return Tags;
  2403. });
  2404. define('select2/data/minimumInputLength',[
  2405. ], function () {
  2406. function MinimumInputLength (decorated, $e, options) {
  2407. this.minimumInputLength = options.get('minimumInputLength');
  2408. decorated.call(this, $e, options);
  2409. }
  2410. MinimumInputLength.prototype.query = function (decorated, params, callback) {
  2411. params.term = params.term || '';
  2412. if (params.term.length < this.minimumInputLength) {
  2413. this.trigger('results:message', {
  2414. message: 'inputTooShort',
  2415. args: {
  2416. minimum: this.minimumInputLength,
  2417. input: params.term,
  2418. params: params
  2419. }
  2420. });
  2421. return;
  2422. }
  2423. decorated.call(this, params, callback);
  2424. };
  2425. return MinimumInputLength;
  2426. });
  2427. define('select2/dropdown',[
  2428. './utils'
  2429. ], function (Utils) {
  2430. function Dropdown ($element, options) {
  2431. this.$element = $element;
  2432. }
  2433. Utils.Extend(Dropdown, Utils.Observable);
  2434. Dropdown.prototype.render = function () {
  2435. var $dropdown = $(
  2436. '<span class="select2-dropdown">' +
  2437. '<span class="select2-results"></span>' +
  2438. '</span>'
  2439. );
  2440. this.$dropdown = $dropdown;
  2441. return $dropdown;
  2442. };
  2443. Dropdown.prototype.destroy = function () {
  2444. // Remove the dropdown from the DOM
  2445. this.$dropdown.remove();
  2446. };
  2447. Dropdown.prototype.bind = function (container, $container) {
  2448. // Can be implemented in subclasses
  2449. };
  2450. return Dropdown;
  2451. });
  2452. define('select2/dropdown/search',[
  2453. '../utils'
  2454. ], function (Utils) {
  2455. function Search () { }
  2456. Search.prototype.render = function (decorated) {
  2457. var $rendered = decorated.call(this);
  2458. var $search = $(
  2459. '<span class="select2-search select2-search--dropdown">' +
  2460. '<input class="select2-search__field" type="search" tabindex="-1"' +
  2461. ' role="textbox" />' +
  2462. '</span>'
  2463. );
  2464. this.$searchContainer = $search;
  2465. this.$search = $search.find('input');
  2466. $rendered.prepend($search);
  2467. return $rendered;
  2468. };
  2469. Search.prototype.bind = function (decorated, container, $container) {
  2470. var self = this;
  2471. decorated.call(this, container, $container);
  2472. this.$search.on('keydown', function (evt) {
  2473. self.trigger('keypress', evt);
  2474. self._keyUpPrevented = evt.isDefaultPrevented();
  2475. });
  2476. this.$search.on('keyup', function (evt) {
  2477. self.handleSearch(evt);
  2478. });
  2479. container.on('open', function () {
  2480. self.$search.attr('tabindex', 0);
  2481. self.$search.focus();
  2482. });
  2483. container.on('close', function () {
  2484. self.$search.attr('tabindex', -1);
  2485. self.$search.val('');
  2486. });
  2487. container.on('results:all', function (params) {
  2488. if (params.query.term == null || params.query.term === '') {
  2489. var showSearch = self.showSearch(params);
  2490. if (showSearch) {
  2491. self.$searchContainer.show();
  2492. } else {
  2493. self.$searchContainer.hide();
  2494. }
  2495. }
  2496. });
  2497. };
  2498. Search.prototype.handleSearch = function (evt) {
  2499. if (!this._keyUpPrevented) {
  2500. var input = this.$search.val();
  2501. this.trigger('query', {
  2502. term: input
  2503. });
  2504. }
  2505. this._keyUpPrevented = false;
  2506. };
  2507. Search.prototype.showSearch = function (_, params) {
  2508. return true;
  2509. };
  2510. return Search;
  2511. });
  2512. define('select2/dropdown/hidePlaceholder',[
  2513. ], function () {
  2514. function HidePlaceholder (decorated, $element, options, dataAdapter) {
  2515. this.placeholder = this.normalizePlaceholder(options.get('placeholder'));
  2516. decorated.call(this, $element, options, dataAdapter);
  2517. }
  2518. HidePlaceholder.prototype.append = function (decorated, data) {
  2519. data = this.removePlaceholder(data);
  2520. decorated.call(this, data);
  2521. };
  2522. HidePlaceholder.prototype.normalizePlaceholder = function (_, placeholder) {
  2523. if (typeof placeholder === 'string') {
  2524. placeholder = {
  2525. id: '',
  2526. text: placeholder
  2527. };
  2528. }
  2529. return placeholder;
  2530. };
  2531. HidePlaceholder.prototype.removePlaceholder = function (_, data) {
  2532. var modifiedData = data.slice(0);
  2533. for (var d = data.length - 1; d >= 0; d--) {
  2534. var item = data[d];
  2535. if (this.placeholder.id === item.id) {
  2536. modifiedData.splice(d, 1);
  2537. }
  2538. }
  2539. return modifiedData;
  2540. };
  2541. return HidePlaceholder;
  2542. });
  2543. define('select2/dropdown/infiniteScroll',[
  2544. 'jquery'
  2545. ], function ($) {
  2546. function InfiniteScroll (decorated, $element, options, dataAdapter) {
  2547. this.lastParams = {};
  2548. decorated.call(this, $element, options, dataAdapter);
  2549. this.$loadingMore = this.createLoadingMore();
  2550. this.loading = false;
  2551. }
  2552. InfiniteScroll.prototype.append = function (decorated, data) {
  2553. this.$loadingMore.remove();
  2554. decorated.call(this, data);
  2555. if (data.length > 0) {
  2556. this.$results.append(this.$loadingMore);
  2557. }
  2558. this.loading = false;
  2559. };
  2560. InfiniteScroll.prototype.bind = function (decorated, container, $container) {
  2561. var self = this;
  2562. decorated.call(this, container, $container);
  2563. container.on('query', function (params) {
  2564. self.lastParams = params;
  2565. self.loading = true;
  2566. });
  2567. container.on('query:append', function (params) {
  2568. self.lastParams = params;
  2569. self.loading = true;
  2570. });
  2571. this.$results.on('scroll', function () {
  2572. var loadMoreVisible = $.contains(
  2573. document.documentElement,
  2574. self.$loadingMore[0]
  2575. );
  2576. if (self.loading || !loadMoreVisible) {
  2577. return;
  2578. }
  2579. var currentOffset = self.$results.offset().top +
  2580. self.$results.outerHeight(false);
  2581. var loadingMoreOffset = self.$loadingMore.offset().top +
  2582. self.$loadingMore.outerHeight(false);
  2583. if (currentOffset + 50 >= loadingMoreOffset) {
  2584. self.loadMore();
  2585. }
  2586. });
  2587. };
  2588. InfiniteScroll.prototype.loadMore = function () {
  2589. this.loading = true;
  2590. var params = $.extend({}, {page: 1}, this.lastParams);
  2591. params.page++;
  2592. this.trigger('query:append', params);
  2593. };
  2594. InfiniteScroll.prototype.createLoadingMore = function () {
  2595. var $option = $(
  2596. '<li class="option load-more" role="treeitem"></li>'
  2597. );
  2598. var message = this.options.get('translations').get('loadingMore');
  2599. $option.html(message(this.lastParams));
  2600. return $option;
  2601. };
  2602. return InfiniteScroll;
  2603. });
  2604. define('select2/i18n/en',[],function () {
  2605. return {
  2606. errorLoading: function () {
  2607. return 'The results could not be loaded.';
  2608. },
  2609. inputTooLong: function (args) {
  2610. var overChars = args.input.length - args.maximum;
  2611. var message = 'Please delete ' + overChars + ' character';
  2612. if (overChars != 1) {
  2613. message += 's';
  2614. }
  2615. return message;
  2616. },
  2617. inputTooShort: function (args) {
  2618. var remainingChars = args.minimum - args.input.length;
  2619. var message = 'Please enter ' + remainingChars + ' or more character';
  2620. if (remainingChars != 1) {
  2621. message += 's';
  2622. }
  2623. return message;
  2624. },
  2625. searching: function () {
  2626. return 'Searching…';
  2627. },
  2628. loadingMore: function () {
  2629. return 'Loading more results…';
  2630. },
  2631. maximumSelected: function (args) {
  2632. var message = 'You can only select' + args.maximum + ' item';
  2633. if (args.maximum != 1) {
  2634. message += 's';
  2635. }
  2636. return message;
  2637. },
  2638. noResults: function () {
  2639. return 'No results found';
  2640. }
  2641. };
  2642. });
  2643. define('select2/defaults',[
  2644. 'jquery',
  2645. './results',
  2646. './selection/single',
  2647. './selection/multiple',
  2648. './selection/placeholder',
  2649. './selection/search',
  2650. './utils',
  2651. './translation',
  2652. './diacritics',
  2653. './data/select',
  2654. './data/array',
  2655. './data/ajax',
  2656. './data/tags',
  2657. './data/minimumInputLength',
  2658. './dropdown',
  2659. './dropdown/search',
  2660. './dropdown/hidePlaceholder',
  2661. './dropdown/infiniteScroll',
  2662. './i18n/en'
  2663. ], function ($, ResultsList,
  2664. SingleSelection, MultipleSelection, Placeholder, SelectionSearch,
  2665. Utils, Translation, DIACRITICS,
  2666. SelectData, ArrayData, AjaxData, Tags, MinimumInputLength,
  2667. Dropdown, DropdownSearch, HidePlaceholder, InfiniteScroll,
  2668. EnglishTranslation) {
  2669. function Defaults () {
  2670. this.reset();
  2671. }
  2672. Defaults.prototype.apply = function (options) {
  2673. options = $.extend({}, this.defaults, options);
  2674. if (options.dataAdapter == null) {
  2675. if (options.ajax != null) {
  2676. options.dataAdapter = AjaxData;
  2677. } else if (options.data != null) {
  2678. options.dataAdapter = ArrayData;
  2679. } else {
  2680. options.dataAdapter = SelectData;
  2681. }
  2682. }
  2683. if (options.minimumInputLength > 0) {
  2684. options.dataAdapter = Utils.Decorate(
  2685. options.dataAdapter,
  2686. MinimumInputLength
  2687. );
  2688. }
  2689. if (options.tags != null) {
  2690. options.dataAdapter = Utils.Decorate(options.dataAdapter, Tags);
  2691. }
  2692. if (options.resultsAdapter == null) {
  2693. options.resultsAdapter = ResultsList;
  2694. if (options.ajax != null) {
  2695. options.resultsAdapter = Utils.Decorate(
  2696. options.resultsAdapter,
  2697. InfiniteScroll
  2698. );
  2699. }
  2700. if (options.placeholder != null) {
  2701. options.resultsAdapter = Utils.Decorate(
  2702. options.resultsAdapter,
  2703. HidePlaceholder
  2704. );
  2705. }
  2706. }
  2707. if (options.dropdownAdapter == null) {
  2708. if (options.multiple) {
  2709. options.dropdownAdapter = Dropdown;
  2710. } else {
  2711. var SearchableDropdown = Utils.Decorate(Dropdown, DropdownSearch);
  2712. options.dropdownAdapter = SearchableDropdown;
  2713. }
  2714. }
  2715. if (options.selectionAdapter == null) {
  2716. if (options.multiple) {
  2717. options.selectionAdapter = MultipleSelection;
  2718. } else {
  2719. options.selectionAdapter = SingleSelection;
  2720. }
  2721. // Add the placeholder mixin if a placeholder was specified
  2722. if (options.placeholder != null) {
  2723. options.selectionAdapter = Utils.Decorate(
  2724. options.selectionAdapter,
  2725. Placeholder
  2726. );
  2727. }
  2728. if (options.multiple) {
  2729. options.selectionAdapter = Utils.Decorate(
  2730. options.selectionAdapter,
  2731. SelectionSearch
  2732. );
  2733. }
  2734. }
  2735. if (typeof options.language === 'string') {
  2736. options.language = [options.language];
  2737. }
  2738. if ($.isArray(options.language)) {
  2739. var languages = new Translation();
  2740. var languageNames = options.language.concat(this.defaults.language);
  2741. for (var l = 0; l < languageNames.length; l++) {
  2742. var name = languageNames[l];
  2743. var language = {};
  2744. try {
  2745. // Try to load it with the original name
  2746. language = Translation.loadPath(name);
  2747. } catch (e) {
  2748. // If we couldn't load it, check if it wasn't the full path
  2749. name = 'select2/i18n/' + name;
  2750. language = Translation.loadPath(name);
  2751. }
  2752. languages.extend(language);
  2753. }
  2754. options.translations = languages;
  2755. } else {
  2756. options.translations = new Translations(options.language);
  2757. }
  2758. return options;
  2759. };
  2760. Defaults.prototype.reset = function () {
  2761. function stripDiacritics (text) {
  2762. // Used 'uni range + named function' from http://jsperf.com/diacritics/18
  2763. function match(a) {
  2764. return DIACRITICS[a] || a;
  2765. }
  2766. return text.replace(/[^\u0000-\u007E]/g, match);
  2767. }
  2768. function matcher (params, data) {
  2769. // Always return the object if there is nothing to compare
  2770. if ($.trim(params.term) === '') {
  2771. return data;
  2772. }
  2773. // Do a recursive check for options with children
  2774. if (data.children && data.children.length > 0) {
  2775. // Clone the data object if there are children
  2776. // This is required as we modify the object to remove any non-matches
  2777. var match = $.extend(true, {}, data);
  2778. // Check each child of the option
  2779. for (var c = data.children.length - 1; c >= 0; c--) {
  2780. var child = data.children[c];
  2781. var matches = matcher(params, child);
  2782. // If there wasn't a match, remove the object in the array
  2783. if (matches == null) {
  2784. match.children.splice(c, 1);
  2785. }
  2786. }
  2787. // If any children matched, return the new object
  2788. if (match.children.length > 0) {
  2789. return match;
  2790. }
  2791. // If there were no matching children, check just the plain object
  2792. return matcher(params, match);
  2793. }
  2794. var original = stripDiacritics(data.text).toUpperCase();
  2795. var term = stripDiacritics(params.term).toUpperCase();
  2796. // Check if the text contains the term
  2797. if (original.indexOf(term) > -1) {
  2798. return data;
  2799. }
  2800. // If it doesn't contain the term, don't return anything
  2801. return null;
  2802. }
  2803. this.defaults = {
  2804. language: ['select2/i18n/en'],
  2805. matcher: matcher,
  2806. minimumInputLength: 0,
  2807. theme: 'default',
  2808. templateResult: function (result) {
  2809. return result.text;
  2810. },
  2811. templateSelection: function (selection) {
  2812. return selection.text;
  2813. }
  2814. };
  2815. };
  2816. var defaults = new Defaults();
  2817. return defaults;
  2818. });
  2819. define('select2/options',[
  2820. './defaults'
  2821. ], function (Defaults) {
  2822. function Options (options, $element) {
  2823. this.options = options;
  2824. if ($element != null) {
  2825. this.fromElement($element);
  2826. }
  2827. this.options = Defaults.apply(this.options);
  2828. }
  2829. Options.prototype.fromElement = function ($e) {
  2830. if (this.options.multiple == null) {
  2831. this.options.multiple = $e.prop('multiple');
  2832. }
  2833. return this;
  2834. };
  2835. Options.prototype.get = function (key) {
  2836. return this.options[key];
  2837. };
  2838. Options.prototype.set = function (key, val) {
  2839. this.options[key] = val;
  2840. };
  2841. return Options;
  2842. });
  2843. define('select2/core',[
  2844. 'jquery',
  2845. './options',
  2846. './utils',
  2847. './keys'
  2848. ], function ($, Options, Utils, KEYS) {
  2849. var Select2 = function ($element, options) {
  2850. if ($element.data('select2') != null) {
  2851. return;
  2852. }
  2853. this.$element = $element;
  2854. this.id = this._generateId($element);
  2855. options = options || {};
  2856. this.options = new Options(options, $element);
  2857. Select2.__super__.constructor.call(this);
  2858. // Set up containers and adapters
  2859. var DataAdapter = this.options.get('dataAdapter');
  2860. this.data = new DataAdapter($element, this.options);
  2861. var $container = this.render();
  2862. this._placeContainer($container);
  2863. var SelectionAdapter = this.options.get('selectionAdapter');
  2864. this.selection = new SelectionAdapter($element, this.options);
  2865. var $selection = this.selection.render();
  2866. this._placeSelection($selection);
  2867. var DropdownAdapter = this.options.get('dropdownAdapter');
  2868. this.dropdown = new DropdownAdapter($element, this.options);
  2869. var $dropdown = this.dropdown.render();
  2870. this._placeDropdown($dropdown);
  2871. var ResultsAdapter = this.options.get('resultsAdapter');
  2872. this.results = new ResultsAdapter($element, this.options, this.data);
  2873. var $results = this.results.render();
  2874. this._placeResults($results);
  2875. // Bind events
  2876. var self = this;
  2877. // Bind the container to all of the adapters
  2878. this._bindAdapters();
  2879. // Register any DOM event handlers
  2880. this._registerDomEvents();
  2881. // Register any internal event handlers
  2882. this._registerDataEvents();
  2883. this._registerSelectionEvents();
  2884. this._registerDropdownEvents();
  2885. this._registerResultsEvents();
  2886. this._registerEvents();
  2887. // Set the initial state
  2888. this.data.current(function (initialData) {
  2889. self.trigger('selection:update', {
  2890. data: initialData
  2891. });
  2892. });
  2893. // Hide the original select
  2894. $element.hide();
  2895. this._tabindex = $element.attr('tabindex') || 0;
  2896. $element.attr('tabindex', '-1');
  2897. $element.data('select2', this);
  2898. };
  2899. Utils.Extend(Select2, Utils.Observable);
  2900. Select2.prototype._generateId = function ($element) {
  2901. var id = '';
  2902. if ($element.attr('id') != null) {
  2903. id = $element.attr('id');
  2904. } else if ($element.attr('name') != null) {
  2905. id = $element.attr('name') + '-' + Utils.generateChars(2);
  2906. } else {
  2907. id = Utils.generateChars(4);
  2908. }
  2909. id = 'select2-' + id;
  2910. return id;
  2911. };
  2912. Select2.prototype._placeContainer = function ($container) {
  2913. $container.insertAfter(this.$element);
  2914. $container.width(this.$element.outerWidth(false));
  2915. };
  2916. Select2.prototype._placeSelection = function ($selection) {
  2917. var $selectionContainer = this.$container.find('.selection');
  2918. $selectionContainer.append($selection);
  2919. };
  2920. Select2.prototype._placeDropdown = function ($dropdown) {
  2921. this.$dropdown = $dropdown;
  2922. var $dropdownContainer = this.$container.find('.dropdown-wrapper');
  2923. $dropdownContainer.append($dropdown);
  2924. };
  2925. Select2.prototype._placeResults = function ($results) {
  2926. var $resultsContainer = this.$dropdown.find('.select2-results');
  2927. $resultsContainer.append($results);
  2928. };
  2929. Select2.prototype._bindAdapters = function () {
  2930. this.data.bind(this, this.$container);
  2931. this.selection.bind(this, this.$container);
  2932. this.dropdown.bind(this, this.$container);
  2933. this.results.bind(this, this.$container);
  2934. };
  2935. Select2.prototype._registerDomEvents = function () {
  2936. var self = this;
  2937. this.$element.on('change.select2', function () {
  2938. self.data.current(function (data) {
  2939. self.trigger('selection:update', {
  2940. data: data
  2941. });
  2942. });
  2943. });
  2944. };
  2945. Select2.prototype._registerDataEvents = function () {
  2946. var self = this;
  2947. this.data.on('results:message', function (params) {
  2948. self.trigger('results:message', params);
  2949. });
  2950. };
  2951. Select2.prototype._registerSelectionEvents = function () {
  2952. var self = this;
  2953. this.selection.on('open', function () {
  2954. self.open();
  2955. });
  2956. this.selection.on('close', function () {
  2957. self.close();
  2958. });
  2959. this.selection.on('toggle', function () {
  2960. self.toggleDropdown();
  2961. });
  2962. this.selection.on('results:select', function () {
  2963. self.trigger('results:select');
  2964. });
  2965. this.selection.on('results:previous', function () {
  2966. self.trigger('results:previous');
  2967. });
  2968. this.selection.on('results:next', function () {
  2969. self.trigger('results:next');
  2970. });
  2971. this.selection.on('unselected', function (params) {
  2972. self.trigger('unselect', params);
  2973. self.close();
  2974. });
  2975. this.selection.on('query', function (params) {
  2976. self.trigger('query', params);
  2977. });
  2978. this.selection.on('keypress', function (e) {
  2979. self.trigger('keypress', e);
  2980. });
  2981. };
  2982. Select2.prototype._registerDropdownEvents = function () {
  2983. var self = this;
  2984. this.dropdown.on('query', function (params) {
  2985. self.trigger('query', params);
  2986. });
  2987. this.dropdown.on('keypress', function (e) {
  2988. self.trigger('keypress', e);
  2989. });
  2990. };
  2991. Select2.prototype._registerResultsEvents = function () {
  2992. var self = this;
  2993. this.results.on('query:append', function (params) {
  2994. self.trigger('query:append', params);
  2995. });
  2996. this.results.on('selected', function (params) {
  2997. self.trigger('select', params);
  2998. self.close();
  2999. });
  3000. this.results.on('unselected', function (params) {
  3001. self.trigger('unselect', params);
  3002. self.close();
  3003. });
  3004. this.results.on('results:focus', function (params) {
  3005. self.trigger('results:focus', params);
  3006. });
  3007. };
  3008. Select2.prototype._registerEvents = function () {
  3009. var self = this;
  3010. this.on('open', function () {
  3011. self.$container.addClass('select2-container--open');
  3012. });
  3013. this.on('close', function () {
  3014. self.$container.removeClass('select2-container--open');
  3015. });
  3016. this.on('query', function (params) {
  3017. this.data.query(params, function (data) {
  3018. self.trigger('results:all', {
  3019. data: data,
  3020. query: params
  3021. });
  3022. });
  3023. });
  3024. this.on('query:append', function (params) {
  3025. this.data.query(params, function (data) {
  3026. self.trigger('results:append', {
  3027. data: data,
  3028. query: params
  3029. });
  3030. });
  3031. });
  3032. this.on('keypress', function (evt) {
  3033. var key = evt.which;
  3034. if (self.isOpen()) {
  3035. if (key === KEYS.ENTER) {
  3036. self.trigger('results:select');
  3037. evt.preventDefault();
  3038. } else if (key === KEYS.UP) {
  3039. self.trigger('results:previous');
  3040. evt.preventDefault();
  3041. } else if (key === KEYS.DOWN) {
  3042. self.trigger('results:next');
  3043. evt.preventDefault();
  3044. } else if (key === KEYS.ESC || key === KEYS.TAB) {
  3045. self.close();
  3046. evt.preventDefault();
  3047. }
  3048. } else {
  3049. if (key === KEYS.ENTER || key === KEYS.SPACE) {
  3050. self.open();
  3051. evt.preventDefault();
  3052. }
  3053. }
  3054. });
  3055. };
  3056. Select2.prototype.toggleDropdown = function () {
  3057. if (this.isOpen()) {
  3058. this.close();
  3059. } else {
  3060. this.open();
  3061. }
  3062. };
  3063. Select2.prototype.open = function () {
  3064. if (this.isOpen()) {
  3065. return;
  3066. }
  3067. this.trigger('query', {});
  3068. this.trigger('open');
  3069. };
  3070. Select2.prototype.close = function () {
  3071. if (!this.isOpen()) {
  3072. return;
  3073. }
  3074. this.trigger('close');
  3075. };
  3076. Select2.prototype.isOpen = function () {
  3077. return this.$container.hasClass('select2-container--open');
  3078. };
  3079. Select2.prototype.destroy = function () {
  3080. this.$container.remove();
  3081. this.$element.off('.select2');
  3082. this.$element.attr('tabindex', this._tabindex);
  3083. this.$element.show();
  3084. this.$element.removeData('select2');
  3085. this.data.destroy();
  3086. this.selection.destroy();
  3087. this.dropdown.destroy();
  3088. this.results.destroy();
  3089. this.data = null;
  3090. this.selection = null;
  3091. this.dropdown = null;
  3092. this.results = null;
  3093. };
  3094. Select2.prototype.render = function () {
  3095. var $container = $(
  3096. '<span class="select2 select2-container">' +
  3097. '<span class="selection"></span>' +
  3098. '<span class="dropdown-wrapper" aria-hidden="true"></span>' +
  3099. '</span>'
  3100. );
  3101. this.$container = $container;
  3102. this.$container.addClass('select2-container--' + this.options.get('theme'));
  3103. $container.data('element', this.$element);
  3104. return $container;
  3105. };
  3106. return Select2;
  3107. });
  3108. define('jquery.select2',[
  3109. 'jquery',
  3110. 'select2/core'
  3111. ], function ($, Select2) {
  3112. if ($.fn.select2 == null) {
  3113. $.fn.select2 = function (options) {
  3114. options = options || {};
  3115. if (typeof options === 'object') {
  3116. this.each(function () {
  3117. var instance = new Select2($(this), options);
  3118. });
  3119. } else if (typeof options === 'string') {
  3120. var instance = this.data('select2');
  3121. var args = Array.prototype.slice.call(arguments, 1);
  3122. instance[options](args);
  3123. } else {
  3124. throw new Error('Invalid arguments for Select2: ' + options);
  3125. }
  3126. };
  3127. }
  3128. return Select2;
  3129. });
  3130. require('jquery.select2'); $.fn.select2.amd = { define: define, require: require };}());