select2.amd.js 104 KB

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