select2.amd.js 99 KB

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