select2.js 123 KB

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