select2.amd.js 93 KB

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