select2.amd.full.js 84 KB

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