splide.esm.js 94 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657
  1. function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
  2. function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
  3. /*!
  4. * Splide.js
  5. * Version : 4.0.13
  6. * License : MIT
  7. * Copyright: 2022 Naotoshi Fujita
  8. */
  9. var MEDIA_PREFERS_REDUCED_MOTION = "(prefers-reduced-motion: reduce)";
  10. var CREATED = 1;
  11. var MOUNTED = 2;
  12. var IDLE = 3;
  13. var MOVING = 4;
  14. var SCROLLING = 5;
  15. var DRAGGING = 6;
  16. var DESTROYED = 7;
  17. var STATES = {
  18. CREATED: CREATED,
  19. MOUNTED: MOUNTED,
  20. IDLE: IDLE,
  21. MOVING: MOVING,
  22. SCROLLING: SCROLLING,
  23. DRAGGING: DRAGGING,
  24. DESTROYED: DESTROYED
  25. };
  26. function empty(array) {
  27. array.length = 0;
  28. }
  29. function slice(arrayLike, start, end) {
  30. return Array.prototype.slice.call(arrayLike, start, end);
  31. }
  32. function apply(func) {
  33. return func.bind.apply(func, [null].concat(slice(arguments, 1)));
  34. }
  35. var nextTick = setTimeout;
  36. var noop = function noop() {};
  37. function raf(func) {
  38. return requestAnimationFrame(func);
  39. }
  40. function typeOf(type, subject) {
  41. return typeof subject === type;
  42. }
  43. function isObject(subject) {
  44. return !isNull(subject) && typeOf("object", subject);
  45. }
  46. var isArray = Array.isArray;
  47. var isFunction = apply(typeOf, "function");
  48. var isString = apply(typeOf, "string");
  49. var isUndefined = apply(typeOf, "undefined");
  50. function isNull(subject) {
  51. return subject === null;
  52. }
  53. function isHTMLElement(subject) {
  54. return subject instanceof HTMLElement;
  55. }
  56. function toArray(value) {
  57. return isArray(value) ? value : [value];
  58. }
  59. function forEach(values, iteratee) {
  60. toArray(values).forEach(iteratee);
  61. }
  62. function includes(array, value) {
  63. return array.indexOf(value) > -1;
  64. }
  65. function push(array, items) {
  66. array.push.apply(array, toArray(items));
  67. return array;
  68. }
  69. function toggleClass(elm, classes, add) {
  70. if (elm) {
  71. forEach(classes, function (name) {
  72. if (name) {
  73. elm.classList[add ? "add" : "remove"](name);
  74. }
  75. });
  76. }
  77. }
  78. function addClass(elm, classes) {
  79. toggleClass(elm, isString(classes) ? classes.split(" ") : classes, true);
  80. }
  81. function append(parent, children) {
  82. forEach(children, parent.appendChild.bind(parent));
  83. }
  84. function before(nodes, ref) {
  85. forEach(nodes, function (node) {
  86. var parent = (ref || node).parentNode;
  87. if (parent) {
  88. parent.insertBefore(node, ref);
  89. }
  90. });
  91. }
  92. function matches(elm, selector) {
  93. return isHTMLElement(elm) && (elm["msMatchesSelector"] || elm.matches).call(elm, selector);
  94. }
  95. function children(parent, selector) {
  96. var children2 = parent ? slice(parent.children) : [];
  97. return selector ? children2.filter(function (child) {
  98. return matches(child, selector);
  99. }) : children2;
  100. }
  101. function child(parent, selector) {
  102. return selector ? children(parent, selector)[0] : parent.firstElementChild;
  103. }
  104. var ownKeys = Object.keys;
  105. function forOwn(object, iteratee, right) {
  106. if (object) {
  107. var keys = ownKeys(object);
  108. keys = right ? keys.reverse() : keys;
  109. for (var i = 0; i < keys.length; i++) {
  110. var key = keys[i];
  111. if (key !== "__proto__") {
  112. if (iteratee(object[key], key) === false) {
  113. break;
  114. }
  115. }
  116. }
  117. }
  118. return object;
  119. }
  120. function assign(object) {
  121. slice(arguments, 1).forEach(function (source) {
  122. forOwn(source, function (value, key) {
  123. object[key] = source[key];
  124. });
  125. });
  126. return object;
  127. }
  128. function merge(object) {
  129. slice(arguments, 1).forEach(function (source) {
  130. forOwn(source, function (value, key) {
  131. if (isArray(value)) {
  132. object[key] = value.slice();
  133. } else if (isObject(value)) {
  134. object[key] = merge({}, isObject(object[key]) ? object[key] : {}, value);
  135. } else {
  136. object[key] = value;
  137. }
  138. });
  139. });
  140. return object;
  141. }
  142. function omit(object, keys) {
  143. toArray(keys || ownKeys(object)).forEach(function (key) {
  144. delete object[key];
  145. });
  146. }
  147. function removeAttribute(elms, attrs) {
  148. forEach(elms, function (elm) {
  149. forEach(attrs, function (attr) {
  150. elm && elm.removeAttribute(attr);
  151. });
  152. });
  153. }
  154. function setAttribute(elms, attrs, value) {
  155. if (isObject(attrs)) {
  156. forOwn(attrs, function (value2, name) {
  157. setAttribute(elms, name, value2);
  158. });
  159. } else {
  160. forEach(elms, function (elm) {
  161. isNull(value) || value === "" ? removeAttribute(elm, attrs) : elm.setAttribute(attrs, String(value));
  162. });
  163. }
  164. }
  165. function create(tag, attrs, parent) {
  166. var elm = document.createElement(tag);
  167. if (attrs) {
  168. isString(attrs) ? addClass(elm, attrs) : setAttribute(elm, attrs);
  169. }
  170. parent && append(parent, elm);
  171. return elm;
  172. }
  173. function style(elm, prop, value) {
  174. if (isUndefined(value)) {
  175. return getComputedStyle(elm)[prop];
  176. }
  177. if (!isNull(value)) {
  178. elm.style[prop] = "" + value;
  179. }
  180. }
  181. function display(elm, display2) {
  182. style(elm, "display", display2);
  183. }
  184. function focus(elm) {
  185. elm["setActive"] && elm["setActive"]() || elm.focus({
  186. preventScroll: true
  187. });
  188. }
  189. function getAttribute(elm, attr) {
  190. return elm.getAttribute(attr);
  191. }
  192. function hasClass(elm, className) {
  193. return elm && elm.classList.contains(className);
  194. }
  195. function rect(target) {
  196. return target.getBoundingClientRect();
  197. }
  198. function remove(nodes) {
  199. forEach(nodes, function (node) {
  200. if (node && node.parentNode) {
  201. node.parentNode.removeChild(node);
  202. }
  203. });
  204. }
  205. function parseHtml(html) {
  206. return child(new DOMParser().parseFromString(html, "text/html").body);
  207. }
  208. function prevent(e, stopPropagation) {
  209. e.preventDefault();
  210. if (stopPropagation) {
  211. e.stopPropagation();
  212. e.stopImmediatePropagation();
  213. }
  214. }
  215. function query(parent, selector) {
  216. return parent && parent.querySelector(selector);
  217. }
  218. function queryAll(parent, selector) {
  219. return selector ? slice(parent.querySelectorAll(selector)) : [];
  220. }
  221. function removeClass(elm, classes) {
  222. toggleClass(elm, classes, false);
  223. }
  224. function timeOf(e) {
  225. return e.timeStamp;
  226. }
  227. function unit(value) {
  228. return isString(value) ? value : value ? value + "px" : "";
  229. }
  230. var PROJECT_CODE = "splide";
  231. var DATA_ATTRIBUTE = "data-" + PROJECT_CODE;
  232. function assert(condition, message) {
  233. if (!condition) {
  234. throw new Error("[" + PROJECT_CODE + "] " + (message || ""));
  235. }
  236. }
  237. var min = Math.min,
  238. max = Math.max,
  239. floor = Math.floor,
  240. ceil = Math.ceil,
  241. abs = Math.abs;
  242. function approximatelyEqual(x, y, epsilon) {
  243. return abs(x - y) < epsilon;
  244. }
  245. function between(number, minOrMax, maxOrMin, exclusive) {
  246. var minimum = min(minOrMax, maxOrMin);
  247. var maximum = max(minOrMax, maxOrMin);
  248. return exclusive ? minimum < number && number < maximum : minimum <= number && number <= maximum;
  249. }
  250. function clamp(number, x, y) {
  251. var minimum = min(x, y);
  252. var maximum = max(x, y);
  253. return min(max(minimum, number), maximum);
  254. }
  255. function sign(x) {
  256. return +(x > 0) - +(x < 0);
  257. }
  258. function camelToKebab(string) {
  259. return string.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase();
  260. }
  261. function format(string, replacements) {
  262. forEach(replacements, function (replacement) {
  263. string = string.replace("%s", "" + replacement);
  264. });
  265. return string;
  266. }
  267. function pad(number) {
  268. return number < 10 ? "0" + number : "" + number;
  269. }
  270. var ids = {};
  271. function uniqueId(prefix) {
  272. return "" + prefix + pad(ids[prefix] = (ids[prefix] || 0) + 1);
  273. }
  274. function EventBinder() {
  275. var listeners = [];
  276. function bind(targets, events, callback, options) {
  277. forEachEvent(targets, events, function (target, event, namespace) {
  278. var isEventTarget = ("addEventListener" in target);
  279. var remover = isEventTarget ? target.removeEventListener.bind(target, event, callback, options) : target["removeListener"].bind(target, callback);
  280. isEventTarget ? target.addEventListener(event, callback, options) : target["addListener"](callback);
  281. listeners.push([target, event, namespace, callback, remover]);
  282. });
  283. }
  284. function unbind(targets, events, callback) {
  285. forEachEvent(targets, events, function (target, event, namespace) {
  286. listeners = listeners.filter(function (listener) {
  287. if (listener[0] === target && listener[1] === event && listener[2] === namespace && (!callback || listener[3] === callback)) {
  288. listener[4]();
  289. return false;
  290. }
  291. return true;
  292. });
  293. });
  294. }
  295. function dispatch(target, type, detail) {
  296. var e;
  297. var bubbles = true;
  298. if (typeof CustomEvent === "function") {
  299. e = new CustomEvent(type, {
  300. bubbles: bubbles,
  301. detail: detail
  302. });
  303. } else {
  304. e = document.createEvent("CustomEvent");
  305. e.initCustomEvent(type, bubbles, false, detail);
  306. }
  307. target.dispatchEvent(e);
  308. return e;
  309. }
  310. function forEachEvent(targets, events, iteratee) {
  311. forEach(targets, function (target) {
  312. target && forEach(events, function (events2) {
  313. events2.split(" ").forEach(function (eventNS) {
  314. var fragment = eventNS.split(".");
  315. iteratee(target, fragment[0], fragment[1]);
  316. });
  317. });
  318. });
  319. }
  320. function destroy() {
  321. listeners.forEach(function (data) {
  322. data[4]();
  323. });
  324. empty(listeners);
  325. }
  326. return {
  327. bind: bind,
  328. unbind: unbind,
  329. dispatch: dispatch,
  330. destroy: destroy
  331. };
  332. }
  333. var EVENT_MOUNTED = "mounted";
  334. var EVENT_READY = "ready";
  335. var EVENT_MOVE = "move";
  336. var EVENT_MOVED = "moved";
  337. var EVENT_SHIFTED = "shifted";
  338. var EVENT_CLICK = "click";
  339. var EVENT_ACTIVE = "active";
  340. var EVENT_INACTIVE = "inactive";
  341. var EVENT_VISIBLE = "visible";
  342. var EVENT_HIDDEN = "hidden";
  343. var EVENT_SLIDE_KEYDOWN = "slide:keydown";
  344. var EVENT_REFRESH = "refresh";
  345. var EVENT_UPDATED = "updated";
  346. var EVENT_RESIZE = "resize";
  347. var EVENT_RESIZED = "resized";
  348. var EVENT_DRAG = "drag";
  349. var EVENT_DRAGGING = "dragging";
  350. var EVENT_DRAGGED = "dragged";
  351. var EVENT_SCROLL = "scroll";
  352. var EVENT_SCROLLED = "scrolled";
  353. var EVENT_DESTROY = "destroy";
  354. var EVENT_ARROWS_MOUNTED = "arrows:mounted";
  355. var EVENT_ARROWS_UPDATED = "arrows:updated";
  356. var EVENT_PAGINATION_MOUNTED = "pagination:mounted";
  357. var EVENT_PAGINATION_UPDATED = "pagination:updated";
  358. var EVENT_NAVIGATION_MOUNTED = "navigation:mounted";
  359. var EVENT_AUTOPLAY_PLAY = "autoplay:play";
  360. var EVENT_AUTOPLAY_PLAYING = "autoplay:playing";
  361. var EVENT_AUTOPLAY_PAUSE = "autoplay:pause";
  362. var EVENT_LAZYLOAD_LOADED = "lazyload:loaded";
  363. function EventInterface(Splide2) {
  364. var bus = Splide2 ? Splide2.event.bus : document.createDocumentFragment();
  365. var binder = EventBinder();
  366. function on(events, callback) {
  367. binder.bind(bus, toArray(events).join(" "), function (e) {
  368. callback.apply(callback, isArray(e.detail) ? e.detail : []);
  369. });
  370. }
  371. function emit(event) {
  372. binder.dispatch(bus, event, slice(arguments, 1));
  373. }
  374. if (Splide2) {
  375. Splide2.event.on(EVENT_DESTROY, binder.destroy);
  376. }
  377. return assign(binder, {
  378. bus: bus,
  379. on: on,
  380. off: apply(binder.unbind, bus),
  381. emit: emit
  382. });
  383. }
  384. function RequestInterval(interval, onInterval, onUpdate, limit) {
  385. var now = Date.now;
  386. var startTime;
  387. var rate = 0;
  388. var id;
  389. var paused = true;
  390. var count = 0;
  391. function update() {
  392. if (!paused) {
  393. rate = interval ? min((now() - startTime) / interval, 1) : 1;
  394. onUpdate && onUpdate(rate);
  395. if (rate >= 1) {
  396. onInterval();
  397. startTime = now();
  398. if (limit && ++count >= limit) {
  399. return pause();
  400. }
  401. }
  402. raf(update);
  403. }
  404. }
  405. function start(resume) {
  406. !resume && cancel();
  407. startTime = now() - (resume ? rate * interval : 0);
  408. paused = false;
  409. raf(update);
  410. }
  411. function pause() {
  412. paused = true;
  413. }
  414. function rewind() {
  415. startTime = now();
  416. rate = 0;
  417. if (onUpdate) {
  418. onUpdate(rate);
  419. }
  420. }
  421. function cancel() {
  422. id && cancelAnimationFrame(id);
  423. rate = 0;
  424. id = 0;
  425. paused = true;
  426. }
  427. function set(time) {
  428. interval = time;
  429. }
  430. function isPaused() {
  431. return paused;
  432. }
  433. return {
  434. start: start,
  435. rewind: rewind,
  436. pause: pause,
  437. cancel: cancel,
  438. set: set,
  439. isPaused: isPaused
  440. };
  441. }
  442. function State(initialState) {
  443. var state = initialState;
  444. function set(value) {
  445. state = value;
  446. }
  447. function is(states) {
  448. return includes(toArray(states), state);
  449. }
  450. return {
  451. set: set,
  452. is: is
  453. };
  454. }
  455. function Throttle(func, duration) {
  456. var interval;
  457. function throttled() {
  458. if (!interval) {
  459. interval = RequestInterval(duration || 0, function () {
  460. func();
  461. interval = null;
  462. }, null, 1);
  463. interval.start();
  464. }
  465. }
  466. return throttled;
  467. }
  468. function Media(Splide2, Components2, options) {
  469. var state = Splide2.state;
  470. var breakpoints = options.breakpoints || {};
  471. var reducedMotion = options.reducedMotion || {};
  472. var binder = EventBinder();
  473. var queries = [];
  474. function setup() {
  475. var isMin = options.mediaQuery === "min";
  476. ownKeys(breakpoints).sort(function (n, m) {
  477. return isMin ? +n - +m : +m - +n;
  478. }).forEach(function (key) {
  479. register(breakpoints[key], "(" + (isMin ? "min" : "max") + "-width:" + key + "px)");
  480. });
  481. register(reducedMotion, MEDIA_PREFERS_REDUCED_MOTION);
  482. update();
  483. }
  484. function destroy(completely) {
  485. if (completely) {
  486. binder.destroy();
  487. }
  488. }
  489. function register(options2, query) {
  490. var queryList = matchMedia(query);
  491. binder.bind(queryList, "change", update);
  492. queries.push([options2, queryList]);
  493. }
  494. function update() {
  495. var destroyed = state.is(DESTROYED);
  496. var direction = options.direction;
  497. var merged = queries.reduce(function (merged2, entry) {
  498. return merge(merged2, entry[1].matches ? entry[0] : {});
  499. }, {});
  500. omit(options);
  501. set(merged);
  502. if (options.destroy) {
  503. Splide2.destroy(options.destroy === "completely");
  504. } else if (destroyed) {
  505. destroy(true);
  506. Splide2.mount();
  507. } else {
  508. direction !== options.direction && Splide2.refresh();
  509. }
  510. }
  511. function reduce(enable) {
  512. if (matchMedia(MEDIA_PREFERS_REDUCED_MOTION).matches) {
  513. enable ? merge(options, reducedMotion) : omit(options, ownKeys(reducedMotion));
  514. }
  515. }
  516. function set(opts, user) {
  517. merge(options, opts);
  518. user && merge(Object.getPrototypeOf(options), opts);
  519. if (!state.is(CREATED)) {
  520. Splide2.emit(EVENT_UPDATED, options);
  521. }
  522. }
  523. return {
  524. setup: setup,
  525. destroy: destroy,
  526. reduce: reduce,
  527. set: set
  528. };
  529. }
  530. var ARROW = "Arrow";
  531. var ARROW_LEFT = ARROW + "Left";
  532. var ARROW_RIGHT = ARROW + "Right";
  533. var ARROW_UP = ARROW + "Up";
  534. var ARROW_DOWN = ARROW + "Down";
  535. var LTR = "ltr";
  536. var RTL = "rtl";
  537. var TTB = "ttb";
  538. var ORIENTATION_MAP = {
  539. width: ["height"],
  540. left: ["top", "right"],
  541. right: ["bottom", "left"],
  542. x: ["y"],
  543. X: ["Y"],
  544. Y: ["X"],
  545. ArrowLeft: [ARROW_UP, ARROW_RIGHT],
  546. ArrowRight: [ARROW_DOWN, ARROW_LEFT]
  547. };
  548. function Direction(Splide2, Components2, options) {
  549. function resolve(prop, axisOnly, direction) {
  550. direction = direction || options.direction;
  551. var index = direction === RTL && !axisOnly ? 1 : direction === TTB ? 0 : -1;
  552. return ORIENTATION_MAP[prop] && ORIENTATION_MAP[prop][index] || prop.replace(/width|left|right/i, function (match, offset) {
  553. var replacement = ORIENTATION_MAP[match.toLowerCase()][index] || match;
  554. return offset > 0 ? replacement.charAt(0).toUpperCase() + replacement.slice(1) : replacement;
  555. });
  556. }
  557. function orient(value) {
  558. return value * (options.direction === RTL ? 1 : -1);
  559. }
  560. return {
  561. resolve: resolve,
  562. orient: orient
  563. };
  564. }
  565. var ROLE = "role";
  566. var TAB_INDEX = "tabindex";
  567. var DISABLED = "disabled";
  568. var ARIA_PREFIX = "aria-";
  569. var ARIA_CONTROLS = ARIA_PREFIX + "controls";
  570. var ARIA_CURRENT = ARIA_PREFIX + "current";
  571. var ARIA_SELECTED = ARIA_PREFIX + "selected";
  572. var ARIA_LABEL = ARIA_PREFIX + "label";
  573. var ARIA_LABELLEDBY = ARIA_PREFIX + "labelledby";
  574. var ARIA_HIDDEN = ARIA_PREFIX + "hidden";
  575. var ARIA_ORIENTATION = ARIA_PREFIX + "orientation";
  576. var ARIA_ROLEDESCRIPTION = ARIA_PREFIX + "roledescription";
  577. var ARIA_LIVE = ARIA_PREFIX + "live";
  578. var ARIA_BUSY = ARIA_PREFIX + "busy";
  579. var ARIA_ATOMIC = ARIA_PREFIX + "atomic";
  580. var ALL_ATTRIBUTES = [ROLE, TAB_INDEX, DISABLED, ARIA_CONTROLS, ARIA_CURRENT, ARIA_LABEL, ARIA_LABELLEDBY, ARIA_HIDDEN, ARIA_ORIENTATION, ARIA_ROLEDESCRIPTION];
  581. var CLASS_ROOT = PROJECT_CODE;
  582. var CLASS_TRACK = PROJECT_CODE + "__track";
  583. var CLASS_LIST = PROJECT_CODE + "__list";
  584. var CLASS_SLIDE = PROJECT_CODE + "__slide";
  585. var CLASS_CLONE = CLASS_SLIDE + "--clone";
  586. var CLASS_CONTAINER = CLASS_SLIDE + "__container";
  587. var CLASS_ARROWS = PROJECT_CODE + "__arrows";
  588. var CLASS_ARROW = PROJECT_CODE + "__arrow";
  589. var CLASS_ARROW_PREV = CLASS_ARROW + "--prev";
  590. var CLASS_ARROW_NEXT = CLASS_ARROW + "--next";
  591. var CLASS_PAGINATION = PROJECT_CODE + "__pagination";
  592. var CLASS_PAGINATION_PAGE = CLASS_PAGINATION + "__page";
  593. var CLASS_PROGRESS = PROJECT_CODE + "__progress";
  594. var CLASS_PROGRESS_BAR = CLASS_PROGRESS + "__bar";
  595. var CLASS_TOGGLE = PROJECT_CODE + "__toggle";
  596. var CLASS_TOGGLE_PLAY = CLASS_TOGGLE + "__play";
  597. var CLASS_TOGGLE_PAUSE = CLASS_TOGGLE + "__pause";
  598. var CLASS_SPINNER = PROJECT_CODE + "__spinner";
  599. var CLASS_SR = PROJECT_CODE + "__sr";
  600. var CLASS_INITIALIZED = "is-initialized";
  601. var CLASS_ACTIVE = "is-active";
  602. var CLASS_PREV = "is-prev";
  603. var CLASS_NEXT = "is-next";
  604. var CLASS_VISIBLE = "is-visible";
  605. var CLASS_LOADING = "is-loading";
  606. var CLASS_FOCUS_IN = "is-focus-in";
  607. var STATUS_CLASSES = [CLASS_ACTIVE, CLASS_VISIBLE, CLASS_PREV, CLASS_NEXT, CLASS_LOADING, CLASS_FOCUS_IN];
  608. var CLASSES = {
  609. slide: CLASS_SLIDE,
  610. clone: CLASS_CLONE,
  611. arrows: CLASS_ARROWS,
  612. arrow: CLASS_ARROW,
  613. prev: CLASS_ARROW_PREV,
  614. next: CLASS_ARROW_NEXT,
  615. pagination: CLASS_PAGINATION,
  616. page: CLASS_PAGINATION_PAGE,
  617. spinner: CLASS_SPINNER
  618. };
  619. function closest(from, selector) {
  620. if (isFunction(from.closest)) {
  621. return from.closest(selector);
  622. }
  623. var elm = from;
  624. while (elm && elm.nodeType === 1) {
  625. if (matches(elm, selector)) {
  626. break;
  627. }
  628. elm = elm.parentElement;
  629. }
  630. return elm;
  631. }
  632. var FRICTION = 5;
  633. var LOG_INTERVAL = 200;
  634. var POINTER_DOWN_EVENTS = "touchstart mousedown";
  635. var POINTER_MOVE_EVENTS = "touchmove mousemove";
  636. var POINTER_UP_EVENTS = "touchend touchcancel mouseup click";
  637. function Elements(Splide2, Components2, options) {
  638. var _EventInterface = EventInterface(Splide2),
  639. on = _EventInterface.on,
  640. bind = _EventInterface.bind;
  641. var root = Splide2.root;
  642. var i18n = options.i18n;
  643. var elements = {};
  644. var slides = [];
  645. var rootClasses = [];
  646. var trackClasses = [];
  647. var track;
  648. var list;
  649. var isUsingKey;
  650. function setup() {
  651. collect();
  652. init();
  653. update();
  654. }
  655. function mount() {
  656. on(EVENT_REFRESH, destroy);
  657. on(EVENT_REFRESH, setup);
  658. on(EVENT_UPDATED, update);
  659. bind(document, POINTER_DOWN_EVENTS + " keydown", function (e) {
  660. isUsingKey = e.type === "keydown";
  661. }, {
  662. capture: true
  663. });
  664. bind(root, "focusin", function () {
  665. toggleClass(root, CLASS_FOCUS_IN, !!isUsingKey);
  666. });
  667. }
  668. function destroy(completely) {
  669. var attrs = ALL_ATTRIBUTES.concat("style");
  670. empty(slides);
  671. removeClass(root, rootClasses);
  672. removeClass(track, trackClasses);
  673. removeAttribute([track, list], attrs);
  674. removeAttribute(root, completely ? attrs : ["style", ARIA_ROLEDESCRIPTION]);
  675. }
  676. function update() {
  677. removeClass(root, rootClasses);
  678. removeClass(track, trackClasses);
  679. rootClasses = getClasses(CLASS_ROOT);
  680. trackClasses = getClasses(CLASS_TRACK);
  681. addClass(root, rootClasses);
  682. addClass(track, trackClasses);
  683. setAttribute(root, ARIA_LABEL, options.label);
  684. setAttribute(root, ARIA_LABELLEDBY, options.labelledby);
  685. }
  686. function collect() {
  687. track = find("." + CLASS_TRACK);
  688. list = child(track, "." + CLASS_LIST);
  689. assert(track && list, "A track/list element is missing.");
  690. push(slides, children(list, "." + CLASS_SLIDE + ":not(." + CLASS_CLONE + ")"));
  691. forOwn({
  692. arrows: CLASS_ARROWS,
  693. pagination: CLASS_PAGINATION,
  694. prev: CLASS_ARROW_PREV,
  695. next: CLASS_ARROW_NEXT,
  696. bar: CLASS_PROGRESS_BAR,
  697. toggle: CLASS_TOGGLE
  698. }, function (className, key) {
  699. elements[key] = find("." + className);
  700. });
  701. assign(elements, {
  702. root: root,
  703. track: track,
  704. list: list,
  705. slides: slides
  706. });
  707. }
  708. function init() {
  709. var id = root.id || uniqueId(PROJECT_CODE);
  710. var role = options.role;
  711. root.id = id;
  712. track.id = track.id || id + "-track";
  713. list.id = list.id || id + "-list";
  714. if (!getAttribute(root, ROLE) && root.tagName !== "SECTION" && role) {
  715. setAttribute(root, ROLE, role);
  716. }
  717. setAttribute(root, ARIA_ROLEDESCRIPTION, i18n.carousel);
  718. setAttribute(list, ROLE, "presentation");
  719. }
  720. function find(selector) {
  721. var elm = query(root, selector);
  722. return elm && closest(elm, "." + CLASS_ROOT) === root ? elm : void 0;
  723. }
  724. function getClasses(base) {
  725. return [base + "--" + options.type, base + "--" + options.direction, options.drag && base + "--draggable", options.isNavigation && base + "--nav", base === CLASS_ROOT && CLASS_ACTIVE];
  726. }
  727. return assign(elements, {
  728. setup: setup,
  729. mount: mount,
  730. destroy: destroy
  731. });
  732. }
  733. var SLIDE = "slide";
  734. var LOOP = "loop";
  735. var FADE = "fade";
  736. function Slide$1(Splide2, index, slideIndex, slide) {
  737. var event = EventInterface(Splide2);
  738. var on = event.on,
  739. emit = event.emit,
  740. bind = event.bind;
  741. var Components = Splide2.Components,
  742. root = Splide2.root,
  743. options = Splide2.options;
  744. var isNavigation = options.isNavigation,
  745. updateOnMove = options.updateOnMove,
  746. i18n = options.i18n,
  747. pagination = options.pagination,
  748. slideFocus = options.slideFocus;
  749. var resolve = Components.Direction.resolve;
  750. var styles = getAttribute(slide, "style");
  751. var label = getAttribute(slide, ARIA_LABEL);
  752. var isClone = slideIndex > -1;
  753. var container = child(slide, "." + CLASS_CONTAINER);
  754. var destroyed;
  755. function mount() {
  756. if (!isClone) {
  757. slide.id = root.id + "-slide" + pad(index + 1);
  758. setAttribute(slide, ROLE, pagination ? "tabpanel" : "group");
  759. setAttribute(slide, ARIA_ROLEDESCRIPTION, i18n.slide);
  760. setAttribute(slide, ARIA_LABEL, label || format(i18n.slideLabel, [index + 1, Splide2.length]));
  761. }
  762. listen();
  763. }
  764. function listen() {
  765. bind(slide, "click", apply(emit, EVENT_CLICK, self));
  766. bind(slide, "keydown", apply(emit, EVENT_SLIDE_KEYDOWN, self));
  767. on([EVENT_MOVED, EVENT_SHIFTED, EVENT_SCROLLED], update);
  768. on(EVENT_NAVIGATION_MOUNTED, initNavigation);
  769. if (updateOnMove) {
  770. on(EVENT_MOVE, onMove);
  771. }
  772. }
  773. function destroy() {
  774. destroyed = true;
  775. event.destroy();
  776. removeClass(slide, STATUS_CLASSES);
  777. removeAttribute(slide, ALL_ATTRIBUTES);
  778. setAttribute(slide, "style", styles);
  779. setAttribute(slide, ARIA_LABEL, label || "");
  780. }
  781. function initNavigation() {
  782. var controls = Splide2.splides.map(function (target) {
  783. var Slide2 = target.splide.Components.Slides.getAt(index);
  784. return Slide2 ? Slide2.slide.id : "";
  785. }).join(" ");
  786. setAttribute(slide, ARIA_LABEL, format(i18n.slideX, (isClone ? slideIndex : index) + 1));
  787. setAttribute(slide, ARIA_CONTROLS, controls);
  788. setAttribute(slide, ROLE, slideFocus ? "button" : "");
  789. slideFocus && removeAttribute(slide, ARIA_ROLEDESCRIPTION);
  790. }
  791. function onMove() {
  792. if (!destroyed) {
  793. update();
  794. }
  795. }
  796. function update() {
  797. if (!destroyed) {
  798. var curr = Splide2.index;
  799. updateActivity();
  800. updateVisibility();
  801. toggleClass(slide, CLASS_PREV, index === curr - 1);
  802. toggleClass(slide, CLASS_NEXT, index === curr + 1);
  803. }
  804. }
  805. function updateActivity() {
  806. var active = isActive();
  807. if (active !== hasClass(slide, CLASS_ACTIVE)) {
  808. toggleClass(slide, CLASS_ACTIVE, active);
  809. setAttribute(slide, ARIA_CURRENT, isNavigation && active || "");
  810. emit(active ? EVENT_ACTIVE : EVENT_INACTIVE, self);
  811. }
  812. }
  813. function updateVisibility() {
  814. var visible = isVisible();
  815. var hidden = !visible && (!isActive() || isClone);
  816. if (!Splide2.state.is([MOVING, SCROLLING])) {
  817. setAttribute(slide, ARIA_HIDDEN, hidden || "");
  818. }
  819. setAttribute(queryAll(slide, options.focusableNodes || ""), TAB_INDEX, hidden ? -1 : "");
  820. if (slideFocus) {
  821. setAttribute(slide, TAB_INDEX, hidden ? -1 : 0);
  822. }
  823. if (visible !== hasClass(slide, CLASS_VISIBLE)) {
  824. toggleClass(slide, CLASS_VISIBLE, visible);
  825. emit(visible ? EVENT_VISIBLE : EVENT_HIDDEN, self);
  826. }
  827. if (!visible && document.activeElement === slide) {
  828. var Slide2 = Components.Slides.getAt(Splide2.index);
  829. Slide2 && focus(Slide2.slide);
  830. }
  831. }
  832. function style$1(prop, value, useContainer) {
  833. style(useContainer && container || slide, prop, value);
  834. }
  835. function isActive() {
  836. var curr = Splide2.index;
  837. return curr === index || options.cloneStatus && curr === slideIndex;
  838. }
  839. function isVisible() {
  840. if (Splide2.is(FADE)) {
  841. return isActive();
  842. }
  843. var trackRect = rect(Components.Elements.track);
  844. var slideRect = rect(slide);
  845. var left = resolve("left", true);
  846. var right = resolve("right", true);
  847. return floor(trackRect[left]) <= ceil(slideRect[left]) && floor(slideRect[right]) <= ceil(trackRect[right]);
  848. }
  849. function isWithin(from, distance) {
  850. var diff = abs(from - index);
  851. if (!isClone && (options.rewind || Splide2.is(LOOP))) {
  852. diff = min(diff, Splide2.length - diff);
  853. }
  854. return diff <= distance;
  855. }
  856. var self = {
  857. index: index,
  858. slideIndex: slideIndex,
  859. slide: slide,
  860. container: container,
  861. isClone: isClone,
  862. mount: mount,
  863. destroy: destroy,
  864. update: update,
  865. style: style$1,
  866. isWithin: isWithin
  867. };
  868. return self;
  869. }
  870. function Slides(Splide2, Components2, options) {
  871. var _EventInterface2 = EventInterface(Splide2),
  872. on = _EventInterface2.on,
  873. emit = _EventInterface2.emit,
  874. bind = _EventInterface2.bind;
  875. var _Components2$Elements = Components2.Elements,
  876. slides = _Components2$Elements.slides,
  877. list = _Components2$Elements.list;
  878. var Slides2 = [];
  879. function mount() {
  880. init();
  881. on(EVENT_REFRESH, destroy);
  882. on(EVENT_REFRESH, init);
  883. on([EVENT_MOUNTED, EVENT_REFRESH], function () {
  884. Slides2.sort(function (Slide1, Slide2) {
  885. return Slide1.index - Slide2.index;
  886. });
  887. });
  888. }
  889. function init() {
  890. slides.forEach(function (slide, index) {
  891. register(slide, index, -1);
  892. });
  893. }
  894. function destroy() {
  895. forEach$1(function (Slide2) {
  896. Slide2.destroy();
  897. });
  898. empty(Slides2);
  899. }
  900. function update() {
  901. forEach$1(function (Slide2) {
  902. Slide2.update();
  903. });
  904. }
  905. function register(slide, index, slideIndex) {
  906. var object = Slide$1(Splide2, index, slideIndex, slide);
  907. object.mount();
  908. Slides2.push(object);
  909. }
  910. function get(excludeClones) {
  911. return excludeClones ? filter(function (Slide2) {
  912. return !Slide2.isClone;
  913. }) : Slides2;
  914. }
  915. function getIn(page) {
  916. var Controller = Components2.Controller;
  917. var index = Controller.toIndex(page);
  918. var max = Controller.hasFocus() ? 1 : options.perPage;
  919. return filter(function (Slide2) {
  920. return between(Slide2.index, index, index + max - 1);
  921. });
  922. }
  923. function getAt(index) {
  924. return filter(index)[0];
  925. }
  926. function add(items, index) {
  927. forEach(items, function (slide) {
  928. if (isString(slide)) {
  929. slide = parseHtml(slide);
  930. }
  931. if (isHTMLElement(slide)) {
  932. var ref = slides[index];
  933. ref ? before(slide, ref) : append(list, slide);
  934. addClass(slide, options.classes.slide);
  935. observeImages(slide, apply(emit, EVENT_RESIZE));
  936. }
  937. });
  938. emit(EVENT_REFRESH);
  939. }
  940. function remove$1(matcher) {
  941. remove(filter(matcher).map(function (Slide2) {
  942. return Slide2.slide;
  943. }));
  944. emit(EVENT_REFRESH);
  945. }
  946. function forEach$1(iteratee, excludeClones) {
  947. get(excludeClones).forEach(iteratee);
  948. }
  949. function filter(matcher) {
  950. return Slides2.filter(isFunction(matcher) ? matcher : function (Slide2) {
  951. return isString(matcher) ? matches(Slide2.slide, matcher) : includes(toArray(matcher), Slide2.index);
  952. });
  953. }
  954. function style(prop, value, useContainer) {
  955. forEach$1(function (Slide2) {
  956. Slide2.style(prop, value, useContainer);
  957. });
  958. }
  959. function observeImages(elm, callback) {
  960. var images = queryAll(elm, "img");
  961. var length = images.length;
  962. if (length) {
  963. images.forEach(function (img) {
  964. bind(img, "load error", function () {
  965. if (! --length) {
  966. callback();
  967. }
  968. });
  969. });
  970. } else {
  971. callback();
  972. }
  973. }
  974. function getLength(excludeClones) {
  975. return excludeClones ? slides.length : Slides2.length;
  976. }
  977. function isEnough() {
  978. return Slides2.length > options.perPage;
  979. }
  980. return {
  981. mount: mount,
  982. destroy: destroy,
  983. update: update,
  984. register: register,
  985. get: get,
  986. getIn: getIn,
  987. getAt: getAt,
  988. add: add,
  989. remove: remove$1,
  990. forEach: forEach$1,
  991. filter: filter,
  992. style: style,
  993. getLength: getLength,
  994. isEnough: isEnough
  995. };
  996. }
  997. function Layout(Splide2, Components2, options) {
  998. var _EventInterface3 = EventInterface(Splide2),
  999. on = _EventInterface3.on,
  1000. bind = _EventInterface3.bind,
  1001. emit = _EventInterface3.emit;
  1002. var Slides = Components2.Slides;
  1003. var resolve = Components2.Direction.resolve;
  1004. var _Components2$Elements2 = Components2.Elements,
  1005. root = _Components2$Elements2.root,
  1006. track = _Components2$Elements2.track,
  1007. list = _Components2$Elements2.list;
  1008. var getAt = Slides.getAt,
  1009. styleSlides = Slides.style;
  1010. var vertical;
  1011. var rootRect;
  1012. function mount() {
  1013. init();
  1014. bind(window, "resize load", Throttle(apply(emit, EVENT_RESIZE)));
  1015. on([EVENT_UPDATED, EVENT_REFRESH], init);
  1016. on(EVENT_RESIZE, resize);
  1017. }
  1018. function init() {
  1019. rootRect = null;
  1020. vertical = options.direction === TTB;
  1021. style(root, "maxWidth", unit(options.width));
  1022. style(track, resolve("paddingLeft"), cssPadding(false));
  1023. style(track, resolve("paddingRight"), cssPadding(true));
  1024. resize();
  1025. }
  1026. function resize() {
  1027. var newRect = rect(root);
  1028. if (!rootRect || rootRect.width !== newRect.width || rootRect.height !== newRect.height) {
  1029. style(track, "height", cssTrackHeight());
  1030. styleSlides(resolve("marginRight"), unit(options.gap));
  1031. styleSlides("width", cssSlideWidth());
  1032. styleSlides("height", cssSlideHeight(), true);
  1033. rootRect = newRect;
  1034. emit(EVENT_RESIZED);
  1035. }
  1036. }
  1037. function cssPadding(right) {
  1038. var padding = options.padding;
  1039. var prop = resolve(right ? "right" : "left");
  1040. return padding && unit(padding[prop] || (isObject(padding) ? 0 : padding)) || "0px";
  1041. }
  1042. function cssTrackHeight() {
  1043. var height = "";
  1044. if (vertical) {
  1045. height = cssHeight();
  1046. assert(height, "height or heightRatio is missing.");
  1047. height = "calc(" + height + " - " + cssPadding(false) + " - " + cssPadding(true) + ")";
  1048. }
  1049. return height;
  1050. }
  1051. function cssHeight() {
  1052. return unit(options.height || rect(list).width * options.heightRatio);
  1053. }
  1054. function cssSlideWidth() {
  1055. return options.autoWidth ? null : unit(options.fixedWidth) || (vertical ? "" : cssSlideSize());
  1056. }
  1057. function cssSlideHeight() {
  1058. return unit(options.fixedHeight) || (vertical ? options.autoHeight ? null : cssSlideSize() : cssHeight());
  1059. }
  1060. function cssSlideSize() {
  1061. var gap = unit(options.gap);
  1062. return "calc((100%" + (gap && " + " + gap) + ")/" + (options.perPage || 1) + (gap && " - " + gap) + ")";
  1063. }
  1064. function listSize() {
  1065. return rect(list)[resolve("width")];
  1066. }
  1067. function slideSize(index, withoutGap) {
  1068. var Slide = getAt(index || 0);
  1069. return Slide ? rect(Slide.slide)[resolve("width")] + (withoutGap ? 0 : getGap()) : 0;
  1070. }
  1071. function totalSize(index, withoutGap) {
  1072. var Slide = getAt(index);
  1073. if (Slide) {
  1074. var right = rect(Slide.slide)[resolve("right")];
  1075. var left = rect(list)[resolve("left")];
  1076. return abs(right - left) + (withoutGap ? 0 : getGap());
  1077. }
  1078. return 0;
  1079. }
  1080. function sliderSize() {
  1081. return totalSize(Splide2.length - 1, true) - totalSize(-1, true);
  1082. }
  1083. function getGap() {
  1084. var Slide = getAt(0);
  1085. return Slide && parseFloat(style(Slide.slide, resolve("marginRight"))) || 0;
  1086. }
  1087. function getPadding(right) {
  1088. return parseFloat(style(track, resolve("padding" + (right ? "Right" : "Left")))) || 0;
  1089. }
  1090. return {
  1091. mount: mount,
  1092. listSize: listSize,
  1093. slideSize: slideSize,
  1094. sliderSize: sliderSize,
  1095. totalSize: totalSize,
  1096. getPadding: getPadding
  1097. };
  1098. }
  1099. var MULTIPLIER = 2;
  1100. function Clones(Splide2, Components2, options) {
  1101. var _EventInterface4 = EventInterface(Splide2),
  1102. on = _EventInterface4.on,
  1103. emit = _EventInterface4.emit;
  1104. var Elements = Components2.Elements,
  1105. Slides = Components2.Slides;
  1106. var resolve = Components2.Direction.resolve;
  1107. var clones = [];
  1108. var cloneCount;
  1109. function mount() {
  1110. init();
  1111. on(EVENT_REFRESH, destroy);
  1112. on(EVENT_REFRESH, init);
  1113. on([EVENT_UPDATED, EVENT_RESIZE], observe);
  1114. }
  1115. function init() {
  1116. if (cloneCount = computeCloneCount()) {
  1117. generate(cloneCount);
  1118. emit(EVENT_RESIZE);
  1119. }
  1120. }
  1121. function destroy() {
  1122. remove(clones);
  1123. empty(clones);
  1124. }
  1125. function observe() {
  1126. if (cloneCount < computeCloneCount()) {
  1127. emit(EVENT_REFRESH);
  1128. }
  1129. }
  1130. function generate(count) {
  1131. var slides = Slides.get().slice();
  1132. var length = slides.length;
  1133. if (length) {
  1134. while (slides.length < count) {
  1135. push(slides, slides);
  1136. }
  1137. push(slides.slice(-count), slides.slice(0, count)).forEach(function (Slide, index) {
  1138. var isHead = index < count;
  1139. var clone = cloneDeep(Slide.slide, index);
  1140. isHead ? before(clone, slides[0].slide) : append(Elements.list, clone);
  1141. push(clones, clone);
  1142. Slides.register(clone, index - count + (isHead ? 0 : length), Slide.index);
  1143. });
  1144. }
  1145. }
  1146. function cloneDeep(elm, index) {
  1147. var clone = elm.cloneNode(true);
  1148. addClass(clone, options.classes.clone);
  1149. clone.id = Splide2.root.id + "-clone" + pad(index + 1);
  1150. return clone;
  1151. }
  1152. function computeCloneCount() {
  1153. var clones2 = options.clones;
  1154. if (!Splide2.is(LOOP)) {
  1155. clones2 = 0;
  1156. } else if (!clones2) {
  1157. var fixedSize = options[resolve("fixedWidth")] && Components2.Layout.slideSize(0);
  1158. var fixedCount = fixedSize && ceil(rect(Elements.track)[resolve("width")] / fixedSize);
  1159. clones2 = fixedCount || options[resolve("autoWidth")] && Splide2.length || options.perPage * MULTIPLIER;
  1160. }
  1161. return clones2;
  1162. }
  1163. return {
  1164. mount: mount,
  1165. destroy: destroy
  1166. };
  1167. }
  1168. function Move(Splide2, Components2, options) {
  1169. var _EventInterface5 = EventInterface(Splide2),
  1170. on = _EventInterface5.on,
  1171. emit = _EventInterface5.emit;
  1172. var set = Splide2.state.set;
  1173. var _Components2$Layout = Components2.Layout,
  1174. slideSize = _Components2$Layout.slideSize,
  1175. getPadding = _Components2$Layout.getPadding,
  1176. totalSize = _Components2$Layout.totalSize,
  1177. listSize = _Components2$Layout.listSize,
  1178. sliderSize = _Components2$Layout.sliderSize;
  1179. var _Components2$Directio = Components2.Direction,
  1180. resolve = _Components2$Directio.resolve,
  1181. orient = _Components2$Directio.orient;
  1182. var _Components2$Elements3 = Components2.Elements,
  1183. list = _Components2$Elements3.list,
  1184. track = _Components2$Elements3.track;
  1185. var Transition;
  1186. function mount() {
  1187. Transition = Components2.Transition;
  1188. on([EVENT_MOUNTED, EVENT_RESIZED, EVENT_UPDATED, EVENT_REFRESH], reposition);
  1189. }
  1190. function reposition() {
  1191. if (!Components2.Controller.isBusy()) {
  1192. Components2.Scroll.cancel();
  1193. jump(Splide2.index);
  1194. Components2.Slides.update();
  1195. }
  1196. }
  1197. function move(dest, index, prev, callback) {
  1198. if (dest !== index && canShift(dest > prev)) {
  1199. cancel();
  1200. translate(shift(getPosition(), dest > prev), true);
  1201. }
  1202. set(MOVING);
  1203. emit(EVENT_MOVE, index, prev, dest);
  1204. Transition.start(index, function () {
  1205. set(IDLE);
  1206. emit(EVENT_MOVED, index, prev, dest);
  1207. callback && callback();
  1208. });
  1209. }
  1210. function jump(index) {
  1211. translate(toPosition(index, true));
  1212. }
  1213. function translate(position, preventLoop) {
  1214. if (!Splide2.is(FADE)) {
  1215. var destination = preventLoop ? position : loop(position);
  1216. style(list, "transform", "translate" + resolve("X") + "(" + destination + "px)");
  1217. position !== destination && emit(EVENT_SHIFTED);
  1218. }
  1219. }
  1220. function loop(position) {
  1221. if (Splide2.is(LOOP)) {
  1222. var index = toIndex(position);
  1223. var exceededMax = index > Components2.Controller.getEnd();
  1224. var exceededMin = index < 0;
  1225. if (exceededMin || exceededMax) {
  1226. position = shift(position, exceededMax);
  1227. }
  1228. }
  1229. return position;
  1230. }
  1231. function shift(position, backwards) {
  1232. var excess = position - getLimit(backwards);
  1233. var size = sliderSize();
  1234. position -= orient(size * (ceil(abs(excess) / size) || 1)) * (backwards ? 1 : -1);
  1235. return position;
  1236. }
  1237. function cancel() {
  1238. translate(getPosition());
  1239. Transition.cancel();
  1240. }
  1241. function toIndex(position) {
  1242. var Slides = Components2.Slides.get();
  1243. var index = 0;
  1244. var minDistance = Infinity;
  1245. for (var i = 0; i < Slides.length; i++) {
  1246. var slideIndex = Slides[i].index;
  1247. var distance = abs(toPosition(slideIndex, true) - position);
  1248. if (distance <= minDistance) {
  1249. minDistance = distance;
  1250. index = slideIndex;
  1251. } else {
  1252. break;
  1253. }
  1254. }
  1255. return index;
  1256. }
  1257. function toPosition(index, trimming) {
  1258. var position = orient(totalSize(index - 1) - offset(index));
  1259. return trimming ? trim(position) : position;
  1260. }
  1261. function getPosition() {
  1262. var left = resolve("left");
  1263. return rect(list)[left] - rect(track)[left] + orient(getPadding(false));
  1264. }
  1265. function trim(position) {
  1266. if (options.trimSpace && Splide2.is(SLIDE)) {
  1267. position = clamp(position, 0, orient(sliderSize() - listSize()));
  1268. }
  1269. return position;
  1270. }
  1271. function offset(index) {
  1272. var focus = options.focus;
  1273. return focus === "center" ? (listSize() - slideSize(index, true)) / 2 : +focus * slideSize(index) || 0;
  1274. }
  1275. function getLimit(max) {
  1276. return toPosition(max ? Components2.Controller.getEnd() : 0, !!options.trimSpace);
  1277. }
  1278. function canShift(backwards) {
  1279. var shifted = orient(shift(getPosition(), backwards));
  1280. return backwards ? shifted >= 0 : shifted <= list[resolve("scrollWidth")] - rect(track)[resolve("width")];
  1281. }
  1282. function exceededLimit(max, position) {
  1283. position = isUndefined(position) ? getPosition() : position;
  1284. var exceededMin = max !== true && orient(position) < orient(getLimit(false));
  1285. var exceededMax = max !== false && orient(position) > orient(getLimit(true));
  1286. return exceededMin || exceededMax;
  1287. }
  1288. return {
  1289. mount: mount,
  1290. move: move,
  1291. jump: jump,
  1292. translate: translate,
  1293. shift: shift,
  1294. cancel: cancel,
  1295. toIndex: toIndex,
  1296. toPosition: toPosition,
  1297. getPosition: getPosition,
  1298. getLimit: getLimit,
  1299. exceededLimit: exceededLimit,
  1300. reposition: reposition
  1301. };
  1302. }
  1303. function Controller(Splide2, Components2, options) {
  1304. var _EventInterface6 = EventInterface(Splide2),
  1305. on = _EventInterface6.on;
  1306. var Move = Components2.Move;
  1307. var getPosition = Move.getPosition,
  1308. getLimit = Move.getLimit,
  1309. toPosition = Move.toPosition;
  1310. var _Components2$Slides = Components2.Slides,
  1311. isEnough = _Components2$Slides.isEnough,
  1312. getLength = _Components2$Slides.getLength;
  1313. var isLoop = Splide2.is(LOOP);
  1314. var isSlide = Splide2.is(SLIDE);
  1315. var getNext = apply(getAdjacent, false);
  1316. var getPrev = apply(getAdjacent, true);
  1317. var currIndex = options.start || 0;
  1318. var prevIndex = currIndex;
  1319. var slideCount;
  1320. var perMove;
  1321. var perPage;
  1322. function mount() {
  1323. init();
  1324. on([EVENT_UPDATED, EVENT_REFRESH], init);
  1325. }
  1326. function init() {
  1327. slideCount = getLength(true);
  1328. perMove = options.perMove;
  1329. perPage = options.perPage;
  1330. var index = clamp(currIndex, 0, slideCount - 1);
  1331. if (index !== currIndex) {
  1332. currIndex = index;
  1333. Move.reposition();
  1334. }
  1335. }
  1336. function go(control, allowSameIndex, callback) {
  1337. if (!isBusy()) {
  1338. var dest = parse(control);
  1339. var index = loop(dest);
  1340. if (index > -1 && (allowSameIndex || index !== currIndex)) {
  1341. setIndex(index);
  1342. Move.move(dest, index, prevIndex, callback);
  1343. }
  1344. }
  1345. }
  1346. function scroll(destination, duration, snap, callback) {
  1347. Components2.Scroll.scroll(destination, duration, snap, function () {
  1348. setIndex(loop(Move.toIndex(getPosition())));
  1349. callback && callback();
  1350. });
  1351. }
  1352. function parse(control) {
  1353. var index = currIndex;
  1354. if (isString(control)) {
  1355. var _ref = control.match(/([+\-<>])(\d+)?/) || [],
  1356. indicator = _ref[1],
  1357. number = _ref[2];
  1358. if (indicator === "+" || indicator === "-") {
  1359. index = computeDestIndex(currIndex + +("" + indicator + (+number || 1)), currIndex);
  1360. } else if (indicator === ">") {
  1361. index = number ? toIndex(+number) : getNext(true);
  1362. } else if (indicator === "<") {
  1363. index = getPrev(true);
  1364. }
  1365. } else {
  1366. index = isLoop ? control : clamp(control, 0, getEnd());
  1367. }
  1368. return index;
  1369. }
  1370. function getAdjacent(prev, destination) {
  1371. var number = perMove || (hasFocus() ? 1 : perPage);
  1372. var dest = computeDestIndex(currIndex + number * (prev ? -1 : 1), currIndex, !(perMove || hasFocus()));
  1373. if (dest === -1 && isSlide) {
  1374. if (!approximatelyEqual(getPosition(), getLimit(!prev), 1)) {
  1375. return prev ? 0 : getEnd();
  1376. }
  1377. }
  1378. return destination ? dest : loop(dest);
  1379. }
  1380. function computeDestIndex(dest, from, snapPage) {
  1381. if (isEnough()) {
  1382. var end = getEnd();
  1383. var index = computeMovableDestIndex(dest);
  1384. if (index !== dest) {
  1385. from = dest;
  1386. dest = index;
  1387. snapPage = false;
  1388. }
  1389. if (dest < 0 || dest > end) {
  1390. if (!perMove && (between(0, dest, from, true) || between(end, from, dest, true))) {
  1391. dest = toIndex(toPage(dest));
  1392. } else {
  1393. if (isLoop) {
  1394. dest = snapPage ? dest < 0 ? -(slideCount % perPage || perPage) : slideCount : dest;
  1395. } else if (options.rewind) {
  1396. dest = dest < 0 ? end : 0;
  1397. } else {
  1398. dest = -1;
  1399. }
  1400. }
  1401. } else {
  1402. if (snapPage && dest !== from) {
  1403. dest = toIndex(toPage(from) + (dest < from ? -1 : 1));
  1404. }
  1405. }
  1406. } else {
  1407. dest = -1;
  1408. }
  1409. return dest;
  1410. }
  1411. function computeMovableDestIndex(dest) {
  1412. if (isSlide && options.trimSpace === "move" && dest !== currIndex) {
  1413. var position = getPosition();
  1414. while (position === toPosition(dest, true) && between(dest, 0, Splide2.length - 1, !options.rewind)) {
  1415. dest < currIndex ? --dest : ++dest;
  1416. }
  1417. }
  1418. return dest;
  1419. }
  1420. function loop(index) {
  1421. return isLoop ? (index + slideCount) % slideCount || 0 : index;
  1422. }
  1423. function getEnd() {
  1424. return max(slideCount - (hasFocus() || isLoop && perMove ? 1 : perPage), 0);
  1425. }
  1426. function toIndex(page) {
  1427. return clamp(hasFocus() ? page : perPage * page, 0, getEnd());
  1428. }
  1429. function toPage(index) {
  1430. return hasFocus() ? index : floor((index >= getEnd() ? slideCount - 1 : index) / perPage);
  1431. }
  1432. function toDest(destination) {
  1433. var closest = Move.toIndex(destination);
  1434. return isSlide ? clamp(closest, 0, getEnd()) : closest;
  1435. }
  1436. function setIndex(index) {
  1437. if (index !== currIndex) {
  1438. prevIndex = currIndex;
  1439. currIndex = index;
  1440. }
  1441. }
  1442. function getIndex(prev) {
  1443. return prev ? prevIndex : currIndex;
  1444. }
  1445. function hasFocus() {
  1446. return !isUndefined(options.focus) || options.isNavigation;
  1447. }
  1448. function isBusy() {
  1449. return Splide2.state.is([MOVING, SCROLLING]) && !!options.waitForTransition;
  1450. }
  1451. return {
  1452. mount: mount,
  1453. go: go,
  1454. scroll: scroll,
  1455. getNext: getNext,
  1456. getPrev: getPrev,
  1457. getAdjacent: getAdjacent,
  1458. getEnd: getEnd,
  1459. setIndex: setIndex,
  1460. getIndex: getIndex,
  1461. toIndex: toIndex,
  1462. toPage: toPage,
  1463. toDest: toDest,
  1464. hasFocus: hasFocus,
  1465. isBusy: isBusy
  1466. };
  1467. }
  1468. var XML_NAME_SPACE = "http://www.w3.org/2000/svg";
  1469. var PATH = "m15.5 0.932-4.3 4.38 14.5 14.6-14.5 14.5 4.3 4.4 14.6-14.6 4.4-4.3-4.4-4.4-14.6-14.6z";
  1470. var SIZE = 40;
  1471. function Arrows(Splide2, Components2, options) {
  1472. var event = EventInterface(Splide2);
  1473. var on = event.on,
  1474. bind = event.bind,
  1475. emit = event.emit;
  1476. var classes = options.classes,
  1477. i18n = options.i18n;
  1478. var Elements = Components2.Elements,
  1479. Controller = Components2.Controller;
  1480. var placeholder = Elements.arrows,
  1481. track = Elements.track;
  1482. var wrapper = placeholder;
  1483. var prev = Elements.prev;
  1484. var next = Elements.next;
  1485. var created;
  1486. var wrapperClasses;
  1487. var arrows = {};
  1488. function mount() {
  1489. init();
  1490. on(EVENT_UPDATED, remount);
  1491. }
  1492. function remount() {
  1493. destroy();
  1494. mount();
  1495. }
  1496. function init() {
  1497. var enabled = options.arrows;
  1498. if (enabled && !(prev && next)) {
  1499. createArrows();
  1500. }
  1501. if (prev && next) {
  1502. assign(arrows, {
  1503. prev: prev,
  1504. next: next
  1505. });
  1506. display(wrapper, enabled ? "" : "none");
  1507. addClass(wrapper, wrapperClasses = CLASS_ARROWS + "--" + options.direction);
  1508. if (enabled) {
  1509. listen();
  1510. update();
  1511. setAttribute([prev, next], ARIA_CONTROLS, track.id);
  1512. emit(EVENT_ARROWS_MOUNTED, prev, next);
  1513. }
  1514. }
  1515. }
  1516. function destroy() {
  1517. event.destroy();
  1518. removeClass(wrapper, wrapperClasses);
  1519. if (created) {
  1520. remove(placeholder ? [prev, next] : wrapper);
  1521. prev = next = null;
  1522. } else {
  1523. removeAttribute([prev, next], ALL_ATTRIBUTES);
  1524. }
  1525. }
  1526. function listen() {
  1527. on([EVENT_MOVED, EVENT_REFRESH, EVENT_SCROLLED], update);
  1528. bind(next, "click", apply(go, ">"));
  1529. bind(prev, "click", apply(go, "<"));
  1530. }
  1531. function go(control) {
  1532. Controller.go(control, true);
  1533. }
  1534. function createArrows() {
  1535. wrapper = placeholder || create("div", classes.arrows);
  1536. prev = createArrow(true);
  1537. next = createArrow(false);
  1538. created = true;
  1539. append(wrapper, [prev, next]);
  1540. !placeholder && before(wrapper, track);
  1541. }
  1542. function createArrow(prev2) {
  1543. var arrow = "<button class=\"" + classes.arrow + " " + (prev2 ? classes.prev : classes.next) + "\" type=\"button\"><svg xmlns=\"" + XML_NAME_SPACE + "\" viewBox=\"0 0 " + SIZE + " " + SIZE + "\" width=\"" + SIZE + "\" height=\"" + SIZE + "\" focusable=\"false\"><path d=\"" + (options.arrowPath || PATH) + "\" />";
  1544. return parseHtml(arrow);
  1545. }
  1546. function update() {
  1547. var index = Splide2.index;
  1548. var prevIndex = Controller.getPrev();
  1549. var nextIndex = Controller.getNext();
  1550. var prevLabel = prevIndex > -1 && index < prevIndex ? i18n.last : i18n.prev;
  1551. var nextLabel = nextIndex > -1 && index > nextIndex ? i18n.first : i18n.next;
  1552. prev.disabled = prevIndex < 0;
  1553. next.disabled = nextIndex < 0;
  1554. setAttribute(prev, ARIA_LABEL, prevLabel);
  1555. setAttribute(next, ARIA_LABEL, nextLabel);
  1556. emit(EVENT_ARROWS_UPDATED, prev, next, prevIndex, nextIndex);
  1557. }
  1558. return {
  1559. arrows: arrows,
  1560. mount: mount,
  1561. destroy: destroy
  1562. };
  1563. }
  1564. var INTERVAL_DATA_ATTRIBUTE = DATA_ATTRIBUTE + "-interval";
  1565. function Autoplay(Splide2, Components2, options) {
  1566. var _EventInterface7 = EventInterface(Splide2),
  1567. on = _EventInterface7.on,
  1568. bind = _EventInterface7.bind,
  1569. emit = _EventInterface7.emit;
  1570. var interval = RequestInterval(options.interval, Splide2.go.bind(Splide2, ">"), onAnimationFrame);
  1571. var isPaused = interval.isPaused;
  1572. var Elements = Components2.Elements,
  1573. _Components2$Elements4 = Components2.Elements,
  1574. root = _Components2$Elements4.root,
  1575. toggle = _Components2$Elements4.toggle;
  1576. var autoplay = options.autoplay;
  1577. var hovered;
  1578. var focused;
  1579. var stopped = autoplay === "pause";
  1580. function mount() {
  1581. if (autoplay) {
  1582. listen();
  1583. toggle && setAttribute(toggle, ARIA_CONTROLS, Elements.track.id);
  1584. stopped || play();
  1585. update();
  1586. }
  1587. }
  1588. function listen() {
  1589. if (options.pauseOnHover) {
  1590. bind(root, "mouseenter mouseleave", function (e) {
  1591. hovered = e.type === "mouseenter";
  1592. autoToggle();
  1593. });
  1594. }
  1595. if (options.pauseOnFocus) {
  1596. bind(root, "focusin focusout", function (e) {
  1597. focused = e.type === "focusin";
  1598. autoToggle();
  1599. });
  1600. }
  1601. if (toggle) {
  1602. bind(toggle, "click", function () {
  1603. stopped ? play() : pause(true);
  1604. });
  1605. }
  1606. on([EVENT_MOVE, EVENT_SCROLL, EVENT_REFRESH], interval.rewind);
  1607. on(EVENT_MOVE, onMove);
  1608. }
  1609. function play() {
  1610. if (isPaused() && Components2.Slides.isEnough()) {
  1611. interval.start(!options.resetProgress);
  1612. focused = hovered = stopped = false;
  1613. update();
  1614. emit(EVENT_AUTOPLAY_PLAY);
  1615. }
  1616. }
  1617. function pause(stop) {
  1618. if (stop === void 0) {
  1619. stop = true;
  1620. }
  1621. stopped = !!stop;
  1622. update();
  1623. if (!isPaused()) {
  1624. interval.pause();
  1625. emit(EVENT_AUTOPLAY_PAUSE);
  1626. }
  1627. }
  1628. function autoToggle() {
  1629. if (!stopped) {
  1630. hovered || focused ? pause(false) : play();
  1631. }
  1632. }
  1633. function update() {
  1634. if (toggle) {
  1635. toggleClass(toggle, CLASS_ACTIVE, !stopped);
  1636. setAttribute(toggle, ARIA_LABEL, options.i18n[stopped ? "play" : "pause"]);
  1637. }
  1638. }
  1639. function onAnimationFrame(rate) {
  1640. var bar = Elements.bar;
  1641. bar && style(bar, "width", rate * 100 + "%");
  1642. emit(EVENT_AUTOPLAY_PLAYING, rate);
  1643. }
  1644. function onMove(index) {
  1645. var Slide = Components2.Slides.getAt(index);
  1646. interval.set(Slide && +getAttribute(Slide.slide, INTERVAL_DATA_ATTRIBUTE) || options.interval);
  1647. }
  1648. return {
  1649. mount: mount,
  1650. destroy: interval.cancel,
  1651. play: play,
  1652. pause: pause,
  1653. isPaused: isPaused
  1654. };
  1655. }
  1656. function Cover(Splide2, Components2, options) {
  1657. var _EventInterface8 = EventInterface(Splide2),
  1658. on = _EventInterface8.on;
  1659. function mount() {
  1660. if (options.cover) {
  1661. on(EVENT_LAZYLOAD_LOADED, apply(toggle, true));
  1662. on([EVENT_MOUNTED, EVENT_UPDATED, EVENT_REFRESH], apply(cover, true));
  1663. }
  1664. }
  1665. function cover(cover2) {
  1666. Components2.Slides.forEach(function (Slide) {
  1667. var img = child(Slide.container || Slide.slide, "img");
  1668. if (img && img.src) {
  1669. toggle(cover2, img, Slide);
  1670. }
  1671. });
  1672. }
  1673. function toggle(cover2, img, Slide) {
  1674. Slide.style("background", cover2 ? "center/cover no-repeat url(\"" + img.src + "\")" : "", true);
  1675. display(img, cover2 ? "none" : "");
  1676. }
  1677. return {
  1678. mount: mount,
  1679. destroy: apply(cover, false)
  1680. };
  1681. }
  1682. var BOUNCE_DIFF_THRESHOLD = 10;
  1683. var BOUNCE_DURATION = 600;
  1684. var FRICTION_FACTOR = 0.6;
  1685. var BASE_VELOCITY = 1.5;
  1686. var MIN_DURATION = 800;
  1687. function Scroll(Splide2, Components2, options) {
  1688. var _EventInterface9 = EventInterface(Splide2),
  1689. on = _EventInterface9.on,
  1690. emit = _EventInterface9.emit;
  1691. var set = Splide2.state.set;
  1692. var Move = Components2.Move;
  1693. var getPosition = Move.getPosition,
  1694. getLimit = Move.getLimit,
  1695. exceededLimit = Move.exceededLimit,
  1696. translate = Move.translate;
  1697. var interval;
  1698. var callback;
  1699. var friction = 1;
  1700. function mount() {
  1701. on(EVENT_MOVE, clear);
  1702. on([EVENT_UPDATED, EVENT_REFRESH], cancel);
  1703. }
  1704. function scroll(destination, duration, snap, onScrolled, noConstrain) {
  1705. var from = getPosition();
  1706. clear();
  1707. if (snap) {
  1708. var size = Components2.Layout.sliderSize();
  1709. var offset = sign(destination) * size * floor(abs(destination) / size) || 0;
  1710. destination = Move.toPosition(Components2.Controller.toDest(destination % size)) + offset;
  1711. }
  1712. var noDistance = approximatelyEqual(from, destination, 1);
  1713. friction = 1;
  1714. duration = noDistance ? 0 : duration || max(abs(destination - from) / BASE_VELOCITY, MIN_DURATION);
  1715. callback = onScrolled;
  1716. interval = RequestInterval(duration, onEnd, apply(update, from, destination, noConstrain), 1);
  1717. set(SCROLLING);
  1718. emit(EVENT_SCROLL);
  1719. interval.start();
  1720. }
  1721. function onEnd() {
  1722. set(IDLE);
  1723. callback && callback();
  1724. emit(EVENT_SCROLLED);
  1725. }
  1726. function update(from, to, noConstrain, rate) {
  1727. var position = getPosition();
  1728. var target = from + (to - from) * easing(rate);
  1729. var diff = (target - position) * friction;
  1730. translate(position + diff);
  1731. if (Splide2.is(SLIDE) && !noConstrain && exceededLimit()) {
  1732. friction *= FRICTION_FACTOR;
  1733. if (abs(diff) < BOUNCE_DIFF_THRESHOLD) {
  1734. scroll(getLimit(exceededLimit(true)), BOUNCE_DURATION, false, callback, true);
  1735. }
  1736. }
  1737. }
  1738. function clear() {
  1739. if (interval) {
  1740. interval.cancel();
  1741. }
  1742. }
  1743. function cancel() {
  1744. if (interval && !interval.isPaused()) {
  1745. clear();
  1746. onEnd();
  1747. }
  1748. }
  1749. function easing(t) {
  1750. var easingFunc = options.easingFunc;
  1751. return easingFunc ? easingFunc(t) : 1 - Math.pow(1 - t, 4);
  1752. }
  1753. return {
  1754. mount: mount,
  1755. destroy: clear,
  1756. scroll: scroll,
  1757. cancel: cancel
  1758. };
  1759. }
  1760. var SCROLL_LISTENER_OPTIONS = {
  1761. passive: false,
  1762. capture: true
  1763. };
  1764. function Drag(Splide2, Components2, options) {
  1765. var _EventInterface10 = EventInterface(Splide2),
  1766. on = _EventInterface10.on,
  1767. emit = _EventInterface10.emit,
  1768. bind = _EventInterface10.bind,
  1769. unbind = _EventInterface10.unbind;
  1770. var state = Splide2.state;
  1771. var Move = Components2.Move,
  1772. Scroll = Components2.Scroll,
  1773. Controller = Components2.Controller,
  1774. track = Components2.Elements.track,
  1775. reduce = Components2.Media.reduce;
  1776. var _Components2$Directio2 = Components2.Direction,
  1777. resolve = _Components2$Directio2.resolve,
  1778. orient = _Components2$Directio2.orient;
  1779. var getPosition = Move.getPosition,
  1780. exceededLimit = Move.exceededLimit;
  1781. var basePosition;
  1782. var baseEvent;
  1783. var prevBaseEvent;
  1784. var isFree;
  1785. var dragging;
  1786. var exceeded = false;
  1787. var clickPrevented;
  1788. var disabled;
  1789. var target;
  1790. function mount() {
  1791. bind(track, POINTER_MOVE_EVENTS, noop, SCROLL_LISTENER_OPTIONS);
  1792. bind(track, POINTER_UP_EVENTS, noop, SCROLL_LISTENER_OPTIONS);
  1793. bind(track, POINTER_DOWN_EVENTS, onPointerDown, SCROLL_LISTENER_OPTIONS);
  1794. bind(track, "click", onClick, {
  1795. capture: true
  1796. });
  1797. bind(track, "dragstart", prevent);
  1798. on([EVENT_MOUNTED, EVENT_UPDATED], init);
  1799. }
  1800. function init() {
  1801. var drag = options.drag;
  1802. disable(!drag);
  1803. isFree = drag === "free";
  1804. }
  1805. function onPointerDown(e) {
  1806. clickPrevented = false;
  1807. if (!disabled) {
  1808. var isTouch = isTouchEvent(e);
  1809. if (isDraggable(e.target) && (isTouch || !e.button)) {
  1810. if (!Controller.isBusy()) {
  1811. target = isTouch ? track : window;
  1812. dragging = state.is([MOVING, SCROLLING]);
  1813. prevBaseEvent = null;
  1814. bind(target, POINTER_MOVE_EVENTS, onPointerMove, SCROLL_LISTENER_OPTIONS);
  1815. bind(target, POINTER_UP_EVENTS, onPointerUp, SCROLL_LISTENER_OPTIONS);
  1816. Move.cancel();
  1817. Scroll.cancel();
  1818. save(e);
  1819. } else {
  1820. prevent(e, true);
  1821. }
  1822. }
  1823. }
  1824. }
  1825. function onPointerMove(e) {
  1826. if (!state.is(DRAGGING)) {
  1827. state.set(DRAGGING);
  1828. emit(EVENT_DRAG);
  1829. }
  1830. if (e.cancelable) {
  1831. if (dragging) {
  1832. Move.translate(basePosition + constrain(diffCoord(e)));
  1833. var expired = diffTime(e) > LOG_INTERVAL;
  1834. var hasExceeded = exceeded !== (exceeded = exceededLimit());
  1835. if (expired || hasExceeded) {
  1836. save(e);
  1837. }
  1838. clickPrevented = true;
  1839. emit(EVENT_DRAGGING);
  1840. prevent(e);
  1841. } else if (isSliderDirection(e)) {
  1842. dragging = shouldStart(e);
  1843. prevent(e);
  1844. }
  1845. }
  1846. }
  1847. function onPointerUp(e) {
  1848. if (state.is(DRAGGING)) {
  1849. state.set(IDLE);
  1850. emit(EVENT_DRAGGED);
  1851. }
  1852. if (dragging) {
  1853. move(e);
  1854. prevent(e);
  1855. }
  1856. unbind(target, POINTER_MOVE_EVENTS, onPointerMove);
  1857. unbind(target, POINTER_UP_EVENTS, onPointerUp);
  1858. dragging = false;
  1859. }
  1860. function onClick(e) {
  1861. if (!disabled && clickPrevented) {
  1862. prevent(e, true);
  1863. }
  1864. }
  1865. function save(e) {
  1866. prevBaseEvent = baseEvent;
  1867. baseEvent = e;
  1868. basePosition = getPosition();
  1869. }
  1870. function move(e) {
  1871. var velocity = computeVelocity(e);
  1872. var destination = computeDestination(velocity);
  1873. var rewind = options.rewind && options.rewindByDrag;
  1874. reduce(false);
  1875. if (isFree) {
  1876. Controller.scroll(destination, 0, options.snap);
  1877. } else if (Splide2.is(FADE)) {
  1878. Controller.go(orient(sign(velocity)) < 0 ? rewind ? "<" : "-" : rewind ? ">" : "+");
  1879. } else if (Splide2.is(SLIDE) && exceeded && rewind) {
  1880. Controller.go(exceededLimit(true) ? ">" : "<");
  1881. } else {
  1882. Controller.go(Controller.toDest(destination), true);
  1883. }
  1884. reduce(true);
  1885. }
  1886. function shouldStart(e) {
  1887. var thresholds = options.dragMinThreshold;
  1888. var isObj = isObject(thresholds);
  1889. var mouse = isObj && thresholds.mouse || 0;
  1890. var touch = (isObj ? thresholds.touch : +thresholds) || 10;
  1891. return abs(diffCoord(e)) > (isTouchEvent(e) ? touch : mouse);
  1892. }
  1893. function isSliderDirection(e) {
  1894. return abs(diffCoord(e)) > abs(diffCoord(e, true));
  1895. }
  1896. function computeVelocity(e) {
  1897. if (Splide2.is(LOOP) || !exceeded) {
  1898. var time = diffTime(e);
  1899. if (time && time < LOG_INTERVAL) {
  1900. return diffCoord(e) / time;
  1901. }
  1902. }
  1903. return 0;
  1904. }
  1905. function computeDestination(velocity) {
  1906. return getPosition() + sign(velocity) * min(abs(velocity) * (options.flickPower || 600), isFree ? Infinity : Components2.Layout.listSize() * (options.flickMaxPages || 1));
  1907. }
  1908. function diffCoord(e, orthogonal) {
  1909. return coordOf(e, orthogonal) - coordOf(getBaseEvent(e), orthogonal);
  1910. }
  1911. function diffTime(e) {
  1912. return timeOf(e) - timeOf(getBaseEvent(e));
  1913. }
  1914. function getBaseEvent(e) {
  1915. return baseEvent === e && prevBaseEvent || baseEvent;
  1916. }
  1917. function coordOf(e, orthogonal) {
  1918. return (isTouchEvent(e) ? e.changedTouches[0] : e)["page" + resolve(orthogonal ? "Y" : "X")];
  1919. }
  1920. function constrain(diff) {
  1921. return diff / (exceeded && Splide2.is(SLIDE) ? FRICTION : 1);
  1922. }
  1923. function isDraggable(target2) {
  1924. var noDrag = options.noDrag;
  1925. return !matches(target2, "." + CLASS_PAGINATION_PAGE + ", ." + CLASS_ARROW) && (!noDrag || !matches(target2, noDrag));
  1926. }
  1927. function isTouchEvent(e) {
  1928. return typeof TouchEvent !== "undefined" && e instanceof TouchEvent;
  1929. }
  1930. function isDragging() {
  1931. return dragging;
  1932. }
  1933. function disable(value) {
  1934. disabled = value;
  1935. }
  1936. return {
  1937. mount: mount,
  1938. disable: disable,
  1939. isDragging: isDragging
  1940. };
  1941. }
  1942. var NORMALIZATION_MAP = {
  1943. Spacebar: " ",
  1944. Right: ARROW_RIGHT,
  1945. Left: ARROW_LEFT,
  1946. Up: ARROW_UP,
  1947. Down: ARROW_DOWN
  1948. };
  1949. function normalizeKey(key) {
  1950. key = isString(key) ? key : key.key;
  1951. return NORMALIZATION_MAP[key] || key;
  1952. }
  1953. var KEYBOARD_EVENT = "keydown";
  1954. function Keyboard(Splide2, Components2, options) {
  1955. var _EventInterface11 = EventInterface(Splide2),
  1956. on = _EventInterface11.on,
  1957. bind = _EventInterface11.bind,
  1958. unbind = _EventInterface11.unbind;
  1959. var root = Splide2.root;
  1960. var resolve = Components2.Direction.resolve;
  1961. var target;
  1962. var disabled;
  1963. function mount() {
  1964. init();
  1965. on(EVENT_UPDATED, destroy);
  1966. on(EVENT_UPDATED, init);
  1967. on(EVENT_MOVE, onMove);
  1968. }
  1969. function init() {
  1970. var keyboard = options.keyboard;
  1971. if (keyboard) {
  1972. target = keyboard === "global" ? window : root;
  1973. bind(target, KEYBOARD_EVENT, onKeydown);
  1974. }
  1975. }
  1976. function destroy() {
  1977. unbind(target, KEYBOARD_EVENT);
  1978. }
  1979. function disable(value) {
  1980. disabled = value;
  1981. }
  1982. function onMove() {
  1983. var _disabled = disabled;
  1984. disabled = true;
  1985. nextTick(function () {
  1986. disabled = _disabled;
  1987. });
  1988. }
  1989. function onKeydown(e) {
  1990. if (!disabled) {
  1991. var key = normalizeKey(e);
  1992. if (key === resolve(ARROW_LEFT)) {
  1993. Splide2.go("<");
  1994. } else if (key === resolve(ARROW_RIGHT)) {
  1995. Splide2.go(">");
  1996. }
  1997. }
  1998. }
  1999. return {
  2000. mount: mount,
  2001. destroy: destroy,
  2002. disable: disable
  2003. };
  2004. }
  2005. var SRC_DATA_ATTRIBUTE = DATA_ATTRIBUTE + "-lazy";
  2006. var SRCSET_DATA_ATTRIBUTE = SRC_DATA_ATTRIBUTE + "-srcset";
  2007. var IMAGE_SELECTOR = "[" + SRC_DATA_ATTRIBUTE + "], [" + SRCSET_DATA_ATTRIBUTE + "]";
  2008. function LazyLoad(Splide2, Components2, options) {
  2009. var _EventInterface12 = EventInterface(Splide2),
  2010. on = _EventInterface12.on,
  2011. off = _EventInterface12.off,
  2012. bind = _EventInterface12.bind,
  2013. emit = _EventInterface12.emit;
  2014. var isSequential = options.lazyLoad === "sequential";
  2015. var events = [EVENT_MOVED, EVENT_SCROLLED];
  2016. var entries = [];
  2017. function mount() {
  2018. if (options.lazyLoad) {
  2019. init();
  2020. on(EVENT_REFRESH, init);
  2021. }
  2022. }
  2023. function init() {
  2024. empty(entries);
  2025. register();
  2026. if (isSequential) {
  2027. loadNext();
  2028. } else {
  2029. off(events);
  2030. on(events, check);
  2031. check();
  2032. }
  2033. }
  2034. function register() {
  2035. Components2.Slides.forEach(function (Slide) {
  2036. queryAll(Slide.slide, IMAGE_SELECTOR).forEach(function (img) {
  2037. var src = getAttribute(img, SRC_DATA_ATTRIBUTE);
  2038. var srcset = getAttribute(img, SRCSET_DATA_ATTRIBUTE);
  2039. if (src !== img.src || srcset !== img.srcset) {
  2040. var className = options.classes.spinner;
  2041. var parent = img.parentElement;
  2042. var spinner = child(parent, "." + className) || create("span", className, parent);
  2043. entries.push([img, Slide, spinner]);
  2044. img.src || display(img, "none");
  2045. }
  2046. });
  2047. });
  2048. }
  2049. function check() {
  2050. entries = entries.filter(function (data) {
  2051. var distance = options.perPage * ((options.preloadPages || 1) + 1) - 1;
  2052. return data[1].isWithin(Splide2.index, distance) ? load(data) : true;
  2053. });
  2054. entries.length || off(events);
  2055. }
  2056. function load(data) {
  2057. var img = data[0];
  2058. addClass(data[1].slide, CLASS_LOADING);
  2059. bind(img, "load error", apply(onLoad, data));
  2060. setAttribute(img, "src", getAttribute(img, SRC_DATA_ATTRIBUTE));
  2061. setAttribute(img, "srcset", getAttribute(img, SRCSET_DATA_ATTRIBUTE));
  2062. removeAttribute(img, SRC_DATA_ATTRIBUTE);
  2063. removeAttribute(img, SRCSET_DATA_ATTRIBUTE);
  2064. }
  2065. function onLoad(data, e) {
  2066. var img = data[0],
  2067. Slide = data[1];
  2068. removeClass(Slide.slide, CLASS_LOADING);
  2069. if (e.type !== "error") {
  2070. remove(data[2]);
  2071. display(img, "");
  2072. emit(EVENT_LAZYLOAD_LOADED, img, Slide);
  2073. emit(EVENT_RESIZE);
  2074. }
  2075. isSequential && loadNext();
  2076. }
  2077. function loadNext() {
  2078. entries.length && load(entries.shift());
  2079. }
  2080. return {
  2081. mount: mount,
  2082. destroy: apply(empty, entries),
  2083. check: check
  2084. };
  2085. }
  2086. function Pagination(Splide2, Components2, options) {
  2087. var event = EventInterface(Splide2);
  2088. var on = event.on,
  2089. emit = event.emit,
  2090. bind = event.bind;
  2091. var Slides = Components2.Slides,
  2092. Elements = Components2.Elements,
  2093. Controller = Components2.Controller;
  2094. var hasFocus = Controller.hasFocus,
  2095. getIndex = Controller.getIndex,
  2096. go = Controller.go;
  2097. var resolve = Components2.Direction.resolve;
  2098. var placeholder = Elements.pagination;
  2099. var items = [];
  2100. var list;
  2101. var paginationClasses;
  2102. function mount() {
  2103. destroy();
  2104. on([EVENT_UPDATED, EVENT_REFRESH], mount);
  2105. var enabled = options.pagination && Slides.isEnough();
  2106. placeholder && display(placeholder, enabled ? "" : "none");
  2107. if (enabled) {
  2108. on([EVENT_MOVE, EVENT_SCROLL, EVENT_SCROLLED], update);
  2109. createPagination();
  2110. update();
  2111. emit(EVENT_PAGINATION_MOUNTED, {
  2112. list: list,
  2113. items: items
  2114. }, getAt(Splide2.index));
  2115. }
  2116. }
  2117. function destroy() {
  2118. if (list) {
  2119. remove(placeholder ? slice(list.children) : list);
  2120. removeClass(list, paginationClasses);
  2121. empty(items);
  2122. list = null;
  2123. }
  2124. event.destroy();
  2125. }
  2126. function createPagination() {
  2127. var length = Splide2.length;
  2128. var classes = options.classes,
  2129. i18n = options.i18n,
  2130. perPage = options.perPage;
  2131. var max = hasFocus() ? length : ceil(length / perPage);
  2132. list = placeholder || create("ul", classes.pagination, Elements.track.parentElement);
  2133. addClass(list, paginationClasses = CLASS_PAGINATION + "--" + getDirection());
  2134. setAttribute(list, ROLE, "tablist");
  2135. setAttribute(list, ARIA_LABEL, i18n.select);
  2136. setAttribute(list, ARIA_ORIENTATION, getDirection() === TTB ? "vertical" : "");
  2137. for (var i = 0; i < max; i++) {
  2138. var li = create("li", null, list);
  2139. var button = create("button", {
  2140. class: classes.page,
  2141. type: "button"
  2142. }, li);
  2143. var controls = Slides.getIn(i).map(function (Slide) {
  2144. return Slide.slide.id;
  2145. });
  2146. var text = !hasFocus() && perPage > 1 ? i18n.pageX : i18n.slideX;
  2147. bind(button, "click", apply(onClick, i));
  2148. if (options.paginationKeyboard) {
  2149. bind(button, "keydown", apply(onKeydown, i));
  2150. }
  2151. setAttribute(li, ROLE, "presentation");
  2152. setAttribute(button, ROLE, "tab");
  2153. setAttribute(button, ARIA_CONTROLS, controls.join(" "));
  2154. setAttribute(button, ARIA_LABEL, format(text, i + 1));
  2155. setAttribute(button, TAB_INDEX, -1);
  2156. items.push({
  2157. li: li,
  2158. button: button,
  2159. page: i
  2160. });
  2161. }
  2162. }
  2163. function onClick(page) {
  2164. go(">" + page, true);
  2165. }
  2166. function onKeydown(page, e) {
  2167. var length = items.length;
  2168. var key = normalizeKey(e);
  2169. var dir = getDirection();
  2170. var nextPage = -1;
  2171. if (key === resolve(ARROW_RIGHT, false, dir)) {
  2172. nextPage = ++page % length;
  2173. } else if (key === resolve(ARROW_LEFT, false, dir)) {
  2174. nextPage = (--page + length) % length;
  2175. } else if (key === "Home") {
  2176. nextPage = 0;
  2177. } else if (key === "End") {
  2178. nextPage = length - 1;
  2179. }
  2180. var item = items[nextPage];
  2181. if (item) {
  2182. focus(item.button);
  2183. go(">" + nextPage);
  2184. prevent(e, true);
  2185. }
  2186. }
  2187. function getDirection() {
  2188. return options.paginationDirection || options.direction;
  2189. }
  2190. function getAt(index) {
  2191. return items[Controller.toPage(index)];
  2192. }
  2193. function update() {
  2194. var prev = getAt(getIndex(true));
  2195. var curr = getAt(getIndex());
  2196. if (prev) {
  2197. var button = prev.button;
  2198. removeClass(button, CLASS_ACTIVE);
  2199. removeAttribute(button, ARIA_SELECTED);
  2200. setAttribute(button, TAB_INDEX, -1);
  2201. }
  2202. if (curr) {
  2203. var _button = curr.button;
  2204. addClass(_button, CLASS_ACTIVE);
  2205. setAttribute(_button, ARIA_SELECTED, true);
  2206. setAttribute(_button, TAB_INDEX, "");
  2207. }
  2208. emit(EVENT_PAGINATION_UPDATED, {
  2209. list: list,
  2210. items: items
  2211. }, prev, curr);
  2212. }
  2213. return {
  2214. items: items,
  2215. mount: mount,
  2216. destroy: destroy,
  2217. getAt: getAt,
  2218. update: update
  2219. };
  2220. }
  2221. var TRIGGER_KEYS = [" ", "Enter"];
  2222. function Sync(Splide2, Components2, options) {
  2223. var isNavigation = options.isNavigation,
  2224. slideFocus = options.slideFocus;
  2225. var events = [];
  2226. function setup() {
  2227. Splide2.options = {
  2228. slideFocus: isUndefined(slideFocus) ? isNavigation : slideFocus
  2229. };
  2230. }
  2231. function mount() {
  2232. Splide2.splides.forEach(function (target) {
  2233. if (!target.isParent) {
  2234. sync(Splide2, target.splide);
  2235. sync(target.splide, Splide2);
  2236. }
  2237. });
  2238. if (isNavigation) {
  2239. navigate();
  2240. }
  2241. }
  2242. function destroy() {
  2243. events.forEach(function (event) {
  2244. event.destroy();
  2245. });
  2246. empty(events);
  2247. }
  2248. function remount() {
  2249. destroy();
  2250. mount();
  2251. }
  2252. function sync(splide, target) {
  2253. var event = EventInterface(splide);
  2254. event.on(EVENT_MOVE, function (index, prev, dest) {
  2255. target.go(target.is(LOOP) ? dest : index);
  2256. });
  2257. events.push(event);
  2258. }
  2259. function navigate() {
  2260. var event = EventInterface(Splide2);
  2261. var on = event.on;
  2262. on(EVENT_CLICK, onClick);
  2263. on(EVENT_SLIDE_KEYDOWN, onKeydown);
  2264. on([EVENT_MOUNTED, EVENT_UPDATED], update);
  2265. events.push(event);
  2266. event.emit(EVENT_NAVIGATION_MOUNTED, Splide2.splides);
  2267. }
  2268. function update() {
  2269. setAttribute(Components2.Elements.list, ARIA_ORIENTATION, options.direction === TTB ? "vertical" : "");
  2270. }
  2271. function onClick(Slide) {
  2272. Splide2.go(Slide.index);
  2273. }
  2274. function onKeydown(Slide, e) {
  2275. if (includes(TRIGGER_KEYS, normalizeKey(e))) {
  2276. onClick(Slide);
  2277. prevent(e);
  2278. }
  2279. }
  2280. return {
  2281. setup: setup,
  2282. mount: mount,
  2283. destroy: destroy,
  2284. remount: remount
  2285. };
  2286. }
  2287. function Wheel(Splide2, Components2, options) {
  2288. var _EventInterface13 = EventInterface(Splide2),
  2289. bind = _EventInterface13.bind;
  2290. var lastTime = 0;
  2291. function mount() {
  2292. if (options.wheel) {
  2293. bind(Components2.Elements.track, "wheel", onWheel, SCROLL_LISTENER_OPTIONS);
  2294. }
  2295. }
  2296. function onWheel(e) {
  2297. if (e.cancelable) {
  2298. var deltaY = e.deltaY;
  2299. var backwards = deltaY < 0;
  2300. var timeStamp = timeOf(e);
  2301. var _min = options.wheelMinThreshold || 0;
  2302. var sleep = options.wheelSleep || 0;
  2303. if (abs(deltaY) > _min && timeStamp - lastTime > sleep) {
  2304. Splide2.go(backwards ? "<" : ">");
  2305. lastTime = timeStamp;
  2306. }
  2307. shouldPrevent(backwards) && prevent(e);
  2308. }
  2309. }
  2310. function shouldPrevent(backwards) {
  2311. return !options.releaseWheel || Splide2.state.is(MOVING) || Components2.Controller.getAdjacent(backwards) !== -1;
  2312. }
  2313. return {
  2314. mount: mount
  2315. };
  2316. }
  2317. var SR_REMOVAL_DELAY = 90;
  2318. function Live(Splide2, Components2, options) {
  2319. var _EventInterface14 = EventInterface(Splide2),
  2320. on = _EventInterface14.on;
  2321. var track = Components2.Elements.track;
  2322. var enabled = options.live && !options.isNavigation;
  2323. var sr = create("span", CLASS_SR);
  2324. var interval = RequestInterval(SR_REMOVAL_DELAY, apply(toggle, false));
  2325. function mount() {
  2326. if (enabled) {
  2327. disable(!Components2.Autoplay.isPaused());
  2328. setAttribute(track, ARIA_ATOMIC, true);
  2329. sr.textContent = "\u2026";
  2330. on(EVENT_AUTOPLAY_PLAY, apply(disable, true));
  2331. on(EVENT_AUTOPLAY_PAUSE, apply(disable, false));
  2332. on([EVENT_MOVED, EVENT_SCROLLED], apply(toggle, true));
  2333. }
  2334. }
  2335. function toggle(active) {
  2336. setAttribute(track, ARIA_BUSY, active);
  2337. if (active) {
  2338. append(track, sr);
  2339. interval.start();
  2340. } else {
  2341. remove(sr);
  2342. }
  2343. }
  2344. function destroy() {
  2345. removeAttribute(track, [ARIA_LIVE, ARIA_ATOMIC, ARIA_BUSY]);
  2346. remove(sr);
  2347. }
  2348. function disable(disabled) {
  2349. if (enabled) {
  2350. setAttribute(track, ARIA_LIVE, disabled ? "off" : "polite");
  2351. }
  2352. }
  2353. return {
  2354. mount: mount,
  2355. disable: disable,
  2356. destroy: destroy
  2357. };
  2358. }
  2359. var ComponentConstructors = /*#__PURE__*/Object.freeze({
  2360. __proto__: null,
  2361. Media: Media,
  2362. Direction: Direction,
  2363. Elements: Elements,
  2364. Slides: Slides,
  2365. Layout: Layout,
  2366. Clones: Clones,
  2367. Move: Move,
  2368. Controller: Controller,
  2369. Arrows: Arrows,
  2370. Autoplay: Autoplay,
  2371. Cover: Cover,
  2372. Scroll: Scroll,
  2373. Drag: Drag,
  2374. Keyboard: Keyboard,
  2375. LazyLoad: LazyLoad,
  2376. Pagination: Pagination,
  2377. Sync: Sync,
  2378. Wheel: Wheel,
  2379. Live: Live
  2380. });
  2381. var I18N = {
  2382. prev: "Previous slide",
  2383. next: "Next slide",
  2384. first: "Go to first slide",
  2385. last: "Go to last slide",
  2386. slideX: "Go to slide %s",
  2387. pageX: "Go to page %s",
  2388. play: "Start autoplay",
  2389. pause: "Pause autoplay",
  2390. carousel: "carousel",
  2391. slide: "slide",
  2392. select: "Select a slide to show",
  2393. slideLabel: "%s of %s"
  2394. };
  2395. var DEFAULTS = {
  2396. type: "slide",
  2397. role: "region",
  2398. speed: 400,
  2399. perPage: 1,
  2400. cloneStatus: true,
  2401. arrows: true,
  2402. pagination: true,
  2403. paginationKeyboard: true,
  2404. interval: 5e3,
  2405. pauseOnHover: true,
  2406. pauseOnFocus: true,
  2407. resetProgress: true,
  2408. easing: "cubic-bezier(0.25, 1, 0.5, 1)",
  2409. drag: true,
  2410. direction: "ltr",
  2411. trimSpace: true,
  2412. focusableNodes: "a, button, textarea, input, select, iframe",
  2413. live: true,
  2414. classes: CLASSES,
  2415. i18n: I18N,
  2416. reducedMotion: {
  2417. speed: 0,
  2418. rewindSpeed: 0,
  2419. autoplay: "pause"
  2420. }
  2421. };
  2422. function Fade(Splide2, Components2, options) {
  2423. var _EventInterface15 = EventInterface(Splide2),
  2424. on = _EventInterface15.on;
  2425. function mount() {
  2426. on([EVENT_MOUNTED, EVENT_REFRESH], function () {
  2427. nextTick(function () {
  2428. Components2.Slides.style("transition", "opacity " + options.speed + "ms " + options.easing);
  2429. });
  2430. });
  2431. }
  2432. function start(index, done) {
  2433. var track = Components2.Elements.track;
  2434. style(track, "height", unit(rect(track).height));
  2435. nextTick(function () {
  2436. done();
  2437. style(track, "height", "");
  2438. });
  2439. }
  2440. return {
  2441. mount: mount,
  2442. start: start,
  2443. cancel: noop
  2444. };
  2445. }
  2446. function Slide(Splide2, Components2, options) {
  2447. var _EventInterface16 = EventInterface(Splide2),
  2448. bind = _EventInterface16.bind;
  2449. var Move = Components2.Move,
  2450. Controller = Components2.Controller,
  2451. Scroll = Components2.Scroll;
  2452. var list = Components2.Elements.list;
  2453. var transition = apply(style, list, "transition");
  2454. var endCallback;
  2455. function mount() {
  2456. bind(list, "transitionend", function (e) {
  2457. if (e.target === list && endCallback) {
  2458. cancel();
  2459. endCallback();
  2460. }
  2461. });
  2462. }
  2463. function start(index, done) {
  2464. var destination = Move.toPosition(index, true);
  2465. var position = Move.getPosition();
  2466. var speed = getSpeed(index);
  2467. if (abs(destination - position) >= 1 && speed >= 1) {
  2468. if (options.useScroll) {
  2469. Scroll.scroll(destination, speed, false, done);
  2470. } else {
  2471. transition("transform " + speed + "ms " + options.easing);
  2472. Move.translate(destination, true);
  2473. endCallback = done;
  2474. }
  2475. } else {
  2476. Move.jump(index);
  2477. done();
  2478. }
  2479. }
  2480. function cancel() {
  2481. transition("");
  2482. Scroll.cancel();
  2483. }
  2484. function getSpeed(index) {
  2485. var rewindSpeed = options.rewindSpeed;
  2486. if (Splide2.is(SLIDE) && rewindSpeed) {
  2487. var prev = Controller.getIndex(true);
  2488. var end = Controller.getEnd();
  2489. if (prev === 0 && index >= end || prev >= end && index === 0) {
  2490. return rewindSpeed;
  2491. }
  2492. }
  2493. return options.speed;
  2494. }
  2495. return {
  2496. mount: mount,
  2497. start: start,
  2498. cancel: cancel
  2499. };
  2500. }
  2501. var _Splide = /*#__PURE__*/function () {
  2502. function _Splide(target, options) {
  2503. this.event = EventInterface();
  2504. this.Components = {};
  2505. this.state = State(CREATED);
  2506. this.splides = [];
  2507. this._o = {};
  2508. this._E = {};
  2509. var root = isString(target) ? query(document, target) : target;
  2510. assert(root, root + " is invalid.");
  2511. this.root = root;
  2512. options = merge({
  2513. label: getAttribute(root, ARIA_LABEL) || "",
  2514. labelledby: getAttribute(root, ARIA_LABELLEDBY) || ""
  2515. }, DEFAULTS, _Splide.defaults, options || {});
  2516. try {
  2517. merge(options, JSON.parse(getAttribute(root, DATA_ATTRIBUTE)));
  2518. } catch (e) {
  2519. assert(false, "Invalid JSON");
  2520. }
  2521. this._o = Object.create(merge({}, options));
  2522. }
  2523. var _proto = _Splide.prototype;
  2524. _proto.mount = function mount(Extensions, Transition) {
  2525. var _this = this;
  2526. var state = this.state,
  2527. Components2 = this.Components;
  2528. assert(state.is([CREATED, DESTROYED]), "Already mounted!");
  2529. state.set(CREATED);
  2530. this._C = Components2;
  2531. this._T = Transition || this._T || (this.is(FADE) ? Fade : Slide);
  2532. this._E = Extensions || this._E;
  2533. var Constructors = assign({}, ComponentConstructors, this._E, {
  2534. Transition: this._T
  2535. });
  2536. forOwn(Constructors, function (Component, key) {
  2537. var component = Component(_this, Components2, _this._o);
  2538. Components2[key] = component;
  2539. component.setup && component.setup();
  2540. });
  2541. forOwn(Components2, function (component) {
  2542. component.mount && component.mount();
  2543. });
  2544. this.emit(EVENT_MOUNTED);
  2545. addClass(this.root, CLASS_INITIALIZED);
  2546. state.set(IDLE);
  2547. this.emit(EVENT_READY);
  2548. return this;
  2549. };
  2550. _proto.sync = function sync(splide) {
  2551. this.splides.push({
  2552. splide: splide
  2553. });
  2554. splide.splides.push({
  2555. splide: this,
  2556. isParent: true
  2557. });
  2558. if (this.state.is(IDLE)) {
  2559. this._C.Sync.remount();
  2560. splide.Components.Sync.remount();
  2561. }
  2562. return this;
  2563. };
  2564. _proto.go = function go(control) {
  2565. this._C.Controller.go(control);
  2566. return this;
  2567. };
  2568. _proto.on = function on(events, callback) {
  2569. this.event.on(events, callback);
  2570. return this;
  2571. };
  2572. _proto.off = function off(events) {
  2573. this.event.off(events);
  2574. return this;
  2575. };
  2576. _proto.emit = function emit(event) {
  2577. var _this$event;
  2578. (_this$event = this.event).emit.apply(_this$event, [event].concat(slice(arguments, 1)));
  2579. return this;
  2580. };
  2581. _proto.add = function add(slides, index) {
  2582. this._C.Slides.add(slides, index);
  2583. return this;
  2584. };
  2585. _proto.remove = function remove(matcher) {
  2586. this._C.Slides.remove(matcher);
  2587. return this;
  2588. };
  2589. _proto.is = function is(type) {
  2590. return this._o.type === type;
  2591. };
  2592. _proto.refresh = function refresh() {
  2593. this.emit(EVENT_REFRESH);
  2594. return this;
  2595. };
  2596. _proto.destroy = function destroy(completely) {
  2597. if (completely === void 0) {
  2598. completely = true;
  2599. }
  2600. var event = this.event,
  2601. state = this.state;
  2602. if (state.is(CREATED)) {
  2603. EventInterface(this).on(EVENT_READY, this.destroy.bind(this, completely));
  2604. } else {
  2605. forOwn(this._C, function (component) {
  2606. component.destroy && component.destroy(completely);
  2607. }, true);
  2608. event.emit(EVENT_DESTROY);
  2609. event.destroy();
  2610. completely && empty(this.splides);
  2611. state.set(DESTROYED);
  2612. }
  2613. return this;
  2614. };
  2615. _createClass(_Splide, [{
  2616. key: "options",
  2617. get: function get() {
  2618. return this._o;
  2619. },
  2620. set: function set(options) {
  2621. this._C.Media.set(options, true);
  2622. }
  2623. }, {
  2624. key: "length",
  2625. get: function get() {
  2626. return this._C.Slides.getLength(true);
  2627. }
  2628. }, {
  2629. key: "index",
  2630. get: function get() {
  2631. return this._C.Controller.getIndex();
  2632. }
  2633. }]);
  2634. return _Splide;
  2635. }();
  2636. var Splide = _Splide;
  2637. Splide.defaults = {};
  2638. Splide.STATES = STATES;
  2639. var CLASS_RENDERED = "is-rendered";
  2640. var RENDERER_DEFAULT_CONFIG = {
  2641. listTag: "ul",
  2642. slideTag: "li"
  2643. };
  2644. var Style = /*#__PURE__*/function () {
  2645. function Style(id, options) {
  2646. this.styles = {};
  2647. this.id = id;
  2648. this.options = options;
  2649. }
  2650. var _proto2 = Style.prototype;
  2651. _proto2.rule = function rule(selector, prop, value, breakpoint) {
  2652. breakpoint = breakpoint || "default";
  2653. var selectors = this.styles[breakpoint] = this.styles[breakpoint] || {};
  2654. var styles = selectors[selector] = selectors[selector] || {};
  2655. styles[prop] = value;
  2656. };
  2657. _proto2.build = function build() {
  2658. var _this2 = this;
  2659. var css = "";
  2660. if (this.styles.default) {
  2661. css += this.buildSelectors(this.styles.default);
  2662. }
  2663. Object.keys(this.styles).sort(function (n, m) {
  2664. return _this2.options.mediaQuery === "min" ? +n - +m : +m - +n;
  2665. }).forEach(function (breakpoint) {
  2666. if (breakpoint !== "default") {
  2667. css += "@media screen and (max-width: " + breakpoint + "px) {";
  2668. css += _this2.buildSelectors(_this2.styles[breakpoint]);
  2669. css += "}";
  2670. }
  2671. });
  2672. return css;
  2673. };
  2674. _proto2.buildSelectors = function buildSelectors(selectors) {
  2675. var _this3 = this;
  2676. var css = "";
  2677. forOwn(selectors, function (styles, selector) {
  2678. selector = ("#" + _this3.id + " " + selector).trim();
  2679. css += selector + " {";
  2680. forOwn(styles, function (value, prop) {
  2681. if (value || value === 0) {
  2682. css += prop + ": " + value + ";";
  2683. }
  2684. });
  2685. css += "}";
  2686. });
  2687. return css;
  2688. };
  2689. return Style;
  2690. }();
  2691. var SplideRenderer = /*#__PURE__*/function () {
  2692. function SplideRenderer(contents, options, config, defaults) {
  2693. this.slides = [];
  2694. this.options = {};
  2695. this.breakpoints = [];
  2696. merge(DEFAULTS, defaults || {});
  2697. merge(merge(this.options, DEFAULTS), options || {});
  2698. this.contents = contents;
  2699. this.config = assign({}, RENDERER_DEFAULT_CONFIG, config || {});
  2700. this.id = this.config.id || uniqueId("splide");
  2701. this.Style = new Style(this.id, this.options);
  2702. this.Direction = Direction(null, null, this.options);
  2703. assert(this.contents.length, "Provide at least 1 content.");
  2704. this.init();
  2705. }
  2706. SplideRenderer.clean = function clean(splide) {
  2707. var _EventInterface17 = EventInterface(splide),
  2708. on = _EventInterface17.on;
  2709. var root = splide.root;
  2710. var clones = queryAll(root, "." + CLASS_CLONE);
  2711. on(EVENT_MOUNTED, function () {
  2712. remove(child(root, "style"));
  2713. });
  2714. remove(clones);
  2715. };
  2716. var _proto3 = SplideRenderer.prototype;
  2717. _proto3.init = function init() {
  2718. this.parseBreakpoints();
  2719. this.initSlides();
  2720. this.registerRootStyles();
  2721. this.registerTrackStyles();
  2722. this.registerSlideStyles();
  2723. this.registerListStyles();
  2724. };
  2725. _proto3.initSlides = function initSlides() {
  2726. var _this4 = this;
  2727. push(this.slides, this.contents.map(function (content, index) {
  2728. content = isString(content) ? {
  2729. html: content
  2730. } : content;
  2731. content.styles = content.styles || {};
  2732. content.attrs = content.attrs || {};
  2733. _this4.cover(content);
  2734. var classes = _this4.options.classes.slide + " " + (index === 0 ? CLASS_ACTIVE : "");
  2735. assign(content.attrs, {
  2736. class: (classes + " " + (content.attrs.class || "")).trim(),
  2737. style: _this4.buildStyles(content.styles)
  2738. });
  2739. return content;
  2740. }));
  2741. if (this.isLoop()) {
  2742. this.generateClones(this.slides);
  2743. }
  2744. };
  2745. _proto3.registerRootStyles = function registerRootStyles() {
  2746. var _this5 = this;
  2747. this.breakpoints.forEach(function (_ref2) {
  2748. var width = _ref2[0],
  2749. options = _ref2[1];
  2750. _this5.Style.rule(" ", "max-width", unit(options.width), width);
  2751. });
  2752. };
  2753. _proto3.registerTrackStyles = function registerTrackStyles() {
  2754. var _this6 = this;
  2755. var Style2 = this.Style;
  2756. var selector = "." + CLASS_TRACK;
  2757. this.breakpoints.forEach(function (_ref3) {
  2758. var width = _ref3[0],
  2759. options = _ref3[1];
  2760. Style2.rule(selector, _this6.resolve("paddingLeft"), _this6.cssPadding(options, false), width);
  2761. Style2.rule(selector, _this6.resolve("paddingRight"), _this6.cssPadding(options, true), width);
  2762. Style2.rule(selector, "height", _this6.cssTrackHeight(options), width);
  2763. });
  2764. };
  2765. _proto3.registerListStyles = function registerListStyles() {
  2766. var _this7 = this;
  2767. var Style2 = this.Style;
  2768. var selector = "." + CLASS_LIST;
  2769. this.breakpoints.forEach(function (_ref4) {
  2770. var width = _ref4[0],
  2771. options = _ref4[1];
  2772. Style2.rule(selector, "transform", _this7.buildTranslate(options), width);
  2773. if (!_this7.cssSlideHeight(options)) {
  2774. Style2.rule(selector, "aspect-ratio", _this7.cssAspectRatio(options), width);
  2775. }
  2776. });
  2777. };
  2778. _proto3.registerSlideStyles = function registerSlideStyles() {
  2779. var _this8 = this;
  2780. var Style2 = this.Style;
  2781. var selector = "." + CLASS_SLIDE;
  2782. this.breakpoints.forEach(function (_ref5) {
  2783. var width = _ref5[0],
  2784. options = _ref5[1];
  2785. Style2.rule(selector, "width", _this8.cssSlideWidth(options), width);
  2786. Style2.rule(selector, "height", _this8.cssSlideHeight(options) || "100%", width);
  2787. Style2.rule(selector, _this8.resolve("marginRight"), unit(options.gap) || "0px", width);
  2788. Style2.rule(selector + " > img", "display", options.cover ? "none" : "inline", width);
  2789. });
  2790. };
  2791. _proto3.buildTranslate = function buildTranslate(options) {
  2792. var _this$Direction = this.Direction,
  2793. resolve = _this$Direction.resolve,
  2794. orient = _this$Direction.orient;
  2795. var values = [];
  2796. values.push(this.cssOffsetClones(options));
  2797. values.push(this.cssOffsetGaps(options));
  2798. if (this.isCenter(options)) {
  2799. values.push(this.buildCssValue(orient(-50), "%"));
  2800. values.push.apply(values, this.cssOffsetCenter(options));
  2801. }
  2802. return values.filter(Boolean).map(function (value) {
  2803. return "translate" + resolve("X") + "(" + value + ")";
  2804. }).join(" ");
  2805. };
  2806. _proto3.cssOffsetClones = function cssOffsetClones(options) {
  2807. var _this$Direction2 = this.Direction,
  2808. resolve = _this$Direction2.resolve,
  2809. orient = _this$Direction2.orient;
  2810. var cloneCount = this.getCloneCount();
  2811. if (this.isFixedWidth(options)) {
  2812. var _this$parseCssValue = this.parseCssValue(options[resolve("fixedWidth")]),
  2813. value = _this$parseCssValue.value,
  2814. unit2 = _this$parseCssValue.unit;
  2815. return this.buildCssValue(orient(value) * cloneCount, unit2);
  2816. }
  2817. var percent = 100 * cloneCount / options.perPage;
  2818. return orient(percent) + "%";
  2819. };
  2820. _proto3.cssOffsetCenter = function cssOffsetCenter(options) {
  2821. var _this$Direction3 = this.Direction,
  2822. resolve = _this$Direction3.resolve,
  2823. orient = _this$Direction3.orient;
  2824. if (this.isFixedWidth(options)) {
  2825. var _this$parseCssValue2 = this.parseCssValue(options[resolve("fixedWidth")]),
  2826. value = _this$parseCssValue2.value,
  2827. unit2 = _this$parseCssValue2.unit;
  2828. return [this.buildCssValue(orient(value / 2), unit2)];
  2829. }
  2830. var values = [];
  2831. var perPage = options.perPage,
  2832. gap = options.gap;
  2833. values.push(orient(50 / perPage) + "%");
  2834. if (gap) {
  2835. var _this$parseCssValue3 = this.parseCssValue(gap),
  2836. _value = _this$parseCssValue3.value,
  2837. _unit = _this$parseCssValue3.unit;
  2838. var gapOffset = (_value / perPage - _value) / 2;
  2839. values.push(this.buildCssValue(orient(gapOffset), _unit));
  2840. }
  2841. return values;
  2842. };
  2843. _proto3.cssOffsetGaps = function cssOffsetGaps(options) {
  2844. var cloneCount = this.getCloneCount();
  2845. if (cloneCount && options.gap) {
  2846. var orient = this.Direction.orient;
  2847. var _this$parseCssValue4 = this.parseCssValue(options.gap),
  2848. value = _this$parseCssValue4.value,
  2849. unit2 = _this$parseCssValue4.unit;
  2850. if (this.isFixedWidth(options)) {
  2851. return this.buildCssValue(orient(value * cloneCount), unit2);
  2852. }
  2853. var perPage = options.perPage;
  2854. var gaps = cloneCount / perPage;
  2855. return this.buildCssValue(orient(gaps * value), unit2);
  2856. }
  2857. return "";
  2858. };
  2859. _proto3.resolve = function resolve(prop) {
  2860. return camelToKebab(this.Direction.resolve(prop));
  2861. };
  2862. _proto3.cssPadding = function cssPadding(options, right) {
  2863. var padding = options.padding;
  2864. var prop = this.Direction.resolve(right ? "right" : "left", true);
  2865. return padding && unit(padding[prop] || (isObject(padding) ? 0 : padding)) || "0px";
  2866. };
  2867. _proto3.cssTrackHeight = function cssTrackHeight(options) {
  2868. var height = "";
  2869. if (this.isVertical()) {
  2870. height = this.cssHeight(options);
  2871. assert(height, '"height" is missing.');
  2872. height = "calc(" + height + " - " + this.cssPadding(options, false) + " - " + this.cssPadding(options, true) + ")";
  2873. }
  2874. return height;
  2875. };
  2876. _proto3.cssHeight = function cssHeight(options) {
  2877. return unit(options.height);
  2878. };
  2879. _proto3.cssSlideWidth = function cssSlideWidth(options) {
  2880. return options.autoWidth ? "" : unit(options.fixedWidth) || (this.isVertical() ? "" : this.cssSlideSize(options));
  2881. };
  2882. _proto3.cssSlideHeight = function cssSlideHeight(options) {
  2883. return unit(options.fixedHeight) || (this.isVertical() ? options.autoHeight ? "" : this.cssSlideSize(options) : this.cssHeight(options));
  2884. };
  2885. _proto3.cssSlideSize = function cssSlideSize(options) {
  2886. var gap = unit(options.gap);
  2887. return "calc((100%" + (gap && " + " + gap) + ")/" + (options.perPage || 1) + (gap && " - " + gap) + ")";
  2888. };
  2889. _proto3.cssAspectRatio = function cssAspectRatio(options) {
  2890. var heightRatio = options.heightRatio;
  2891. return heightRatio ? "" + 1 / heightRatio : "";
  2892. };
  2893. _proto3.buildCssValue = function buildCssValue(value, unit2) {
  2894. return "" + value + unit2;
  2895. };
  2896. _proto3.parseCssValue = function parseCssValue(value) {
  2897. if (isString(value)) {
  2898. var number = parseFloat(value) || 0;
  2899. var unit2 = value.replace(/\d*(\.\d*)?/, "") || "px";
  2900. return {
  2901. value: number,
  2902. unit: unit2
  2903. };
  2904. }
  2905. return {
  2906. value: value,
  2907. unit: "px"
  2908. };
  2909. };
  2910. _proto3.parseBreakpoints = function parseBreakpoints() {
  2911. var _this9 = this;
  2912. var breakpoints = this.options.breakpoints;
  2913. this.breakpoints.push(["default", this.options]);
  2914. if (breakpoints) {
  2915. forOwn(breakpoints, function (options, width) {
  2916. _this9.breakpoints.push([width, merge(merge({}, _this9.options), options)]);
  2917. });
  2918. }
  2919. };
  2920. _proto3.isFixedWidth = function isFixedWidth(options) {
  2921. return !!options[this.Direction.resolve("fixedWidth")];
  2922. };
  2923. _proto3.isLoop = function isLoop() {
  2924. return this.options.type === LOOP;
  2925. };
  2926. _proto3.isCenter = function isCenter(options) {
  2927. if (options.focus === "center") {
  2928. if (this.isLoop()) {
  2929. return true;
  2930. }
  2931. if (this.options.type === SLIDE) {
  2932. return !this.options.trimSpace;
  2933. }
  2934. }
  2935. return false;
  2936. };
  2937. _proto3.isVertical = function isVertical() {
  2938. return this.options.direction === TTB;
  2939. };
  2940. _proto3.buildClasses = function buildClasses() {
  2941. var options = this.options;
  2942. return [CLASS_ROOT, CLASS_ROOT + "--" + options.type, CLASS_ROOT + "--" + options.direction, options.drag && CLASS_ROOT + "--draggable", options.isNavigation && CLASS_ROOT + "--nav", CLASS_ACTIVE, !this.config.hidden && CLASS_RENDERED].filter(Boolean).join(" ");
  2943. };
  2944. _proto3.buildAttrs = function buildAttrs(attrs) {
  2945. var attr = "";
  2946. forOwn(attrs, function (value, key) {
  2947. attr += value ? " " + camelToKebab(key) + "=\"" + value + "\"" : "";
  2948. });
  2949. return attr.trim();
  2950. };
  2951. _proto3.buildStyles = function buildStyles(styles) {
  2952. var style = "";
  2953. forOwn(styles, function (value, key) {
  2954. style += " " + camelToKebab(key) + ":" + value + ";";
  2955. });
  2956. return style.trim();
  2957. };
  2958. _proto3.renderSlides = function renderSlides() {
  2959. var _this10 = this;
  2960. var tag = this.config.slideTag;
  2961. return this.slides.map(function (content) {
  2962. return "<" + tag + " " + _this10.buildAttrs(content.attrs) + ">" + (content.html || "") + "</" + tag + ">";
  2963. }).join("");
  2964. };
  2965. _proto3.cover = function cover(content) {
  2966. var styles = content.styles,
  2967. _content$html = content.html,
  2968. html = _content$html === void 0 ? "" : _content$html;
  2969. if (this.options.cover && !this.options.lazyLoad) {
  2970. var src = html.match(/<img.*?src\s*=\s*(['"])(.+?)\1.*?>/);
  2971. if (src && src[2]) {
  2972. styles.background = "center/cover no-repeat url('" + src[2] + "')";
  2973. }
  2974. }
  2975. };
  2976. _proto3.generateClones = function generateClones(contents) {
  2977. var classes = this.options.classes;
  2978. var count = this.getCloneCount();
  2979. var slides = contents.slice();
  2980. while (slides.length < count) {
  2981. push(slides, slides);
  2982. }
  2983. push(slides.slice(-count).reverse(), slides.slice(0, count)).forEach(function (content, index) {
  2984. var attrs = assign({}, content.attrs, {
  2985. class: content.attrs.class + " " + classes.clone
  2986. });
  2987. var clone = assign({}, content, {
  2988. attrs: attrs
  2989. });
  2990. index < count ? contents.unshift(clone) : contents.push(clone);
  2991. });
  2992. };
  2993. _proto3.getCloneCount = function getCloneCount() {
  2994. if (this.isLoop()) {
  2995. var options = this.options;
  2996. if (options.clones) {
  2997. return options.clones;
  2998. }
  2999. var perPage = max.apply(void 0, this.breakpoints.map(function (_ref6) {
  3000. var options2 = _ref6[1];
  3001. return options2.perPage;
  3002. }));
  3003. return perPage * ((options.flickMaxPages || 1) + 1);
  3004. }
  3005. return 0;
  3006. };
  3007. _proto3.renderArrows = function renderArrows() {
  3008. var html = "";
  3009. html += "<div class=\"" + this.options.classes.arrows + "\">";
  3010. html += this.renderArrow(true);
  3011. html += this.renderArrow(false);
  3012. html += "</div>";
  3013. return html;
  3014. };
  3015. _proto3.renderArrow = function renderArrow(prev) {
  3016. var _this$options = this.options,
  3017. classes = _this$options.classes,
  3018. i18n = _this$options.i18n;
  3019. var attrs = {
  3020. class: classes.arrow + " " + (prev ? classes.prev : classes.next),
  3021. type: "button",
  3022. ariaLabel: prev ? i18n.prev : i18n.next
  3023. };
  3024. return "<button " + this.buildAttrs(attrs) + "><svg xmlns=\"" + XML_NAME_SPACE + "\" viewBox=\"0 0 " + SIZE + " " + SIZE + "\" width=\"" + SIZE + "\" height=\"" + SIZE + "\"><path d=\"" + (this.options.arrowPath || PATH) + "\" /></svg></button>";
  3025. };
  3026. _proto3.html = function html() {
  3027. var _this$config = this.config,
  3028. rootClass = _this$config.rootClass,
  3029. listTag = _this$config.listTag,
  3030. arrows = _this$config.arrows,
  3031. beforeTrack = _this$config.beforeTrack,
  3032. afterTrack = _this$config.afterTrack,
  3033. slider = _this$config.slider,
  3034. beforeSlider = _this$config.beforeSlider,
  3035. afterSlider = _this$config.afterSlider;
  3036. var html = "";
  3037. html += "<div id=\"" + this.id + "\" class=\"" + this.buildClasses() + " " + (rootClass || "") + "\">";
  3038. html += "<style>" + this.Style.build() + "</style>";
  3039. if (slider) {
  3040. html += beforeSlider || "";
  3041. html += "<div class=\"splide__slider\">";
  3042. }
  3043. html += beforeTrack || "";
  3044. if (arrows) {
  3045. html += this.renderArrows();
  3046. }
  3047. html += "<div class=\"splide__track\">";
  3048. html += "<" + listTag + " class=\"splide__list\">";
  3049. html += this.renderSlides();
  3050. html += "</" + listTag + ">";
  3051. html += "</div>";
  3052. html += afterTrack || "";
  3053. if (slider) {
  3054. html += "</div>";
  3055. html += afterSlider || "";
  3056. }
  3057. html += "</div>";
  3058. return html;
  3059. };
  3060. return SplideRenderer;
  3061. }();
  3062. export { CLASSES, CLASS_ACTIVE, CLASS_ARROW, CLASS_ARROWS, CLASS_ARROW_NEXT, CLASS_ARROW_PREV, CLASS_CLONE, CLASS_CONTAINER, CLASS_FOCUS_IN, CLASS_INITIALIZED, CLASS_LIST, CLASS_LOADING, CLASS_NEXT, CLASS_PAGINATION, CLASS_PAGINATION_PAGE, CLASS_PREV, CLASS_PROGRESS, CLASS_PROGRESS_BAR, CLASS_ROOT, CLASS_SLIDE, CLASS_SPINNER, CLASS_SR, CLASS_TOGGLE, CLASS_TOGGLE_PAUSE, CLASS_TOGGLE_PLAY, CLASS_TRACK, CLASS_VISIBLE, DEFAULTS, EVENT_ACTIVE, EVENT_ARROWS_MOUNTED, EVENT_ARROWS_UPDATED, EVENT_AUTOPLAY_PAUSE, EVENT_AUTOPLAY_PLAY, EVENT_AUTOPLAY_PLAYING, EVENT_CLICK, EVENT_DESTROY, EVENT_DRAG, EVENT_DRAGGED, EVENT_DRAGGING, EVENT_HIDDEN, EVENT_INACTIVE, EVENT_LAZYLOAD_LOADED, EVENT_MOUNTED, EVENT_MOVE, EVENT_MOVED, EVENT_NAVIGATION_MOUNTED, EVENT_PAGINATION_MOUNTED, EVENT_PAGINATION_UPDATED, EVENT_READY, EVENT_REFRESH, EVENT_RESIZE, EVENT_RESIZED, EVENT_SCROLL, EVENT_SCROLLED, EVENT_SHIFTED, EVENT_SLIDE_KEYDOWN, EVENT_UPDATED, EVENT_VISIBLE, EventBinder, EventInterface, FADE, LOOP, LTR, RTL, RequestInterval, SLIDE, STATUS_CLASSES, Splide, SplideRenderer, State, TTB, Throttle, Splide as default };