select2.amd.full.js 103 KB

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