select2.amd.full.js 108 KB

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