select2.amd.js 93 KB

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