select2.amd.full.js 103 KB

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