| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838 | 
							- /*!
 
-  * Splide.js
 
-  * Version  : 3.0.0
 
-  * License  : MIT
 
-  * Copyright: 2021 Naotoshi Fujita
 
-  */
 
- 'use strict';
 
- Object.defineProperty(exports, '__esModule', { value: true });
 
- const PROJECT_CODE = "splide";
 
- const DATA_ATTRIBUTE = `data-${PROJECT_CODE}`;
 
- const CREATED = 1;
 
- const MOUNTED = 2;
 
- const IDLE = 3;
 
- const MOVING = 4;
 
- const DESTROYED = 5;
 
- const STATES = {
 
-   CREATED,
 
-   MOUNTED,
 
-   IDLE,
 
-   MOVING,
 
-   DESTROYED
 
- };
 
- const DEFAULT_EVENT_PRIORITY = 10;
 
- const DEFAULT_USER_EVENT_PRIORITY = 20;
 
- function empty(array) {
 
-   array.length = 0;
 
- }
 
- function isObject(subject) {
 
-   return !isNull(subject) && typeof subject === "object";
 
- }
 
- function isArray(subject) {
 
-   return Array.isArray(subject);
 
- }
 
- function isFunction(subject) {
 
-   return typeof subject === "function";
 
- }
 
- function isString(subject) {
 
-   return typeof subject === "string";
 
- }
 
- function isUndefined(subject) {
 
-   return typeof subject === "undefined";
 
- }
 
- function isNull(subject) {
 
-   return subject === null;
 
- }
 
- function isHTMLElement(subject) {
 
-   return subject instanceof HTMLElement;
 
- }
 
- function isHTMLButtonElement(subject) {
 
-   return subject instanceof HTMLButtonElement;
 
- }
 
- function toArray(value) {
 
-   return isArray(value) ? value : [value];
 
- }
 
- function forEach(values, iteratee) {
 
-   toArray(values).forEach(iteratee);
 
- }
 
- function includes(array, value) {
 
-   return array.indexOf(value) > -1;
 
- }
 
- function push(array, items) {
 
-   array.push(...toArray(items));
 
-   return array;
 
- }
 
- const arrayProto = Array.prototype;
 
- function slice(arrayLike, start, end) {
 
-   return arrayProto.slice.call(arrayLike, start, end);
 
- }
 
- function find(arrayLike, predicate) {
 
-   return slice(arrayLike).filter(predicate)[0];
 
- }
 
- function toggleClass(elm, classes, add) {
 
-   if (elm) {
 
-     forEach(classes, (name) => {
 
-       if (name) {
 
-         elm.classList[add ? "add" : "remove"](name);
 
-       }
 
-     });
 
-   }
 
- }
 
- function addClass(elm, classes) {
 
-   toggleClass(elm, isString(classes) ? classes.split(" ") : classes, true);
 
- }
 
- function append(parent, children) {
 
-   forEach(children, parent.appendChild.bind(parent));
 
- }
 
- function before(nodes, ref) {
 
-   forEach(nodes, (node) => {
 
-     const parent = ref.parentNode;
 
-     if (parent) {
 
-       parent.insertBefore(node, ref);
 
-     }
 
-   });
 
- }
 
- function matches(elm, selector) {
 
-   return (elm["msMatchesSelector"] || elm.matches).call(elm, selector);
 
- }
 
- function children(parent, selector) {
 
-   return parent ? slice(parent.children).filter((child) => matches(child, selector)) : [];
 
- }
 
- function child(parent, selector) {
 
-   return selector ? children(parent, selector)[0] : parent.firstElementChild;
 
- }
 
- function forOwn(object, iteratee) {
 
-   if (object) {
 
-     const keys = Object.keys(object);
 
-     for (let i = 0; i < keys.length; i++) {
 
-       const key = keys[i];
 
-       if (key !== "__proto__") {
 
-         if (iteratee(object[key], key) === false) {
 
-           break;
 
-         }
 
-       }
 
-     }
 
-   }
 
-   return object;
 
- }
 
- function assign(object) {
 
-   slice(arguments, 1).forEach((source) => {
 
-     forOwn(source, (value, key) => {
 
-       object[key] = source[key];
 
-     });
 
-   });
 
-   return object;
 
- }
 
- function merge(object, source) {
 
-   forOwn(source, (value, key) => {
 
-     if (isArray(value)) {
 
-       object[key] = value.slice();
 
-     } else if (isObject(value)) {
 
-       object[key] = merge(isObject(object[key]) ? object[key] : {}, value);
 
-     } else {
 
-       object[key] = value;
 
-     }
 
-   });
 
-   return object;
 
- }
 
- function removeAttribute(elm, attrs) {
 
-   if (elm) {
 
-     forEach(attrs, (attr) => {
 
-       elm.removeAttribute(attr);
 
-     });
 
-   }
 
- }
 
- function setAttribute(elm, attrs, value) {
 
-   if (isObject(attrs)) {
 
-     forOwn(attrs, (value2, name) => {
 
-       setAttribute(elm, name, value2);
 
-     });
 
-   } else {
 
-     isNull(value) ? removeAttribute(elm, attrs) : elm.setAttribute(attrs, String(value));
 
-   }
 
- }
 
- function create(tag, attrs, parent) {
 
-   const elm = document.createElement(tag);
 
-   if (attrs) {
 
-     isString(attrs) ? addClass(elm, attrs) : setAttribute(elm, attrs);
 
-   }
 
-   parent && append(parent, elm);
 
-   return elm;
 
- }
 
- function style(elm, styles) {
 
-   if (isString(styles)) {
 
-     return getComputedStyle(elm)[styles];
 
-   }
 
-   forOwn(styles, (value, key) => {
 
-     if (!isNull(value)) {
 
-       elm.style[key] = `${value}`;
 
-     }
 
-   });
 
- }
 
- function display(elm, display2) {
 
-   style(elm, { display: display2 });
 
- }
 
- function getAttribute(elm, attr) {
 
-   return elm.getAttribute(attr);
 
- }
 
- function hasClass(elm, className) {
 
-   return elm && elm.classList.contains(className);
 
- }
 
- function rect(target) {
 
-   return target.getBoundingClientRect();
 
- }
 
- function remove(nodes) {
 
-   forEach(nodes, (node) => {
 
-     if (node && node.parentNode) {
 
-       node.parentNode.removeChild(node);
 
-     }
 
-   });
 
- }
 
- function measure(parent, value) {
 
-   if (isString(value)) {
 
-     const div = create("div", { style: `width: ${value}; position: absolute;` }, parent);
 
-     value = rect(div).width;
 
-     remove(div);
 
-   }
 
-   return value;
 
- }
 
- function parseHtml(html) {
 
-   return child(new DOMParser().parseFromString(html, "text/html").body);
 
- }
 
- function prevent(e, stopPropagation) {
 
-   e.preventDefault();
 
-   if (stopPropagation) {
 
-     e.stopPropagation();
 
-     e.stopImmediatePropagation();
 
-   }
 
- }
 
- function query(parent, selector) {
 
-   return parent && parent.querySelector(selector);
 
- }
 
- function queryAll(parent, selector) {
 
-   return slice(parent.querySelectorAll(selector));
 
- }
 
- function removeClass(elm, classes) {
 
-   toggleClass(elm, classes, false);
 
- }
 
- function unit(value) {
 
-   return isString(value) ? value : value ? `${value}px` : "";
 
- }
 
- function assert(condition, message = "") {
 
-   if (!condition) {
 
-     throw new Error(`[${PROJECT_CODE}] ${message}`);
 
-   }
 
- }
 
- function nextTick(callback) {
 
-   setTimeout(callback);
 
- }
 
- const noop = () => {
 
- };
 
- function raf(func) {
 
-   return requestAnimationFrame(func);
 
- }
 
- const { min, max, floor, ceil, abs } = Math;
 
- function approximatelyEqual(x, y, epsilon) {
 
-   return abs(x - y) < epsilon;
 
- }
 
- function between(number, minOrMax, maxOrMin, exclusive) {
 
-   const minimum = min(minOrMax, maxOrMin);
 
-   const maximum = max(minOrMax, maxOrMin);
 
-   return exclusive ? minimum < number && number < maximum : minimum <= number && number <= maximum;
 
- }
 
- function clamp(number, x, y) {
 
-   const minimum = min(x, y);
 
-   const maximum = max(x, y);
 
-   return min(max(minimum, number), maximum);
 
- }
 
- function sign(x) {
 
-   return +(x > 0) - +(x < 0);
 
- }
 
- function camelToKebab(string) {
 
-   return string.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase();
 
- }
 
- function format(string, replacements) {
 
-   forEach(replacements, (replacement) => {
 
-     string = string.replace("%s", `${replacement}`);
 
-   });
 
-   return string;
 
- }
 
- function pad(number) {
 
-   return number < 10 ? `0${number}` : `${number}`;
 
- }
 
- const ids = {};
 
- function uniqueId(prefix) {
 
-   return `${prefix}${pad(ids[prefix] = (ids[prefix] || 0) + 1)}`;
 
- }
 
- function EventBus() {
 
-   let handlers = {};
 
-   function on(events, callback, key, priority = DEFAULT_EVENT_PRIORITY) {
 
-     forEachEvent(events, (event, namespace) => {
 
-       handlers[event] = handlers[event] || [];
 
-       push(handlers[event], {
 
-         _event: event,
 
-         _callback: callback,
 
-         _namespace: namespace,
 
-         _priority: priority,
 
-         _key: key
 
-       }).sort((handler1, handler2) => handler1._priority - handler2._priority);
 
-     });
 
-   }
 
-   function off(events, key) {
 
-     forEachEvent(events, (event, namespace) => {
 
-       const eventHandlers = handlers[event];
 
-       handlers[event] = eventHandlers && eventHandlers.filter((handler) => {
 
-         return handler._key ? handler._key !== key : handler._namespace !== namespace;
 
-       });
 
-     });
 
-   }
 
-   function offBy(key) {
 
-     forOwn(handlers, (eventHandlers, event) => {
 
-       off(event, key);
 
-     });
 
-   }
 
-   function emit(event) {
 
-     (handlers[event] || []).forEach((handler) => {
 
-       handler._callback.apply(handler, slice(arguments, 1));
 
-     });
 
-   }
 
-   function destroy() {
 
-     handlers = {};
 
-   }
 
-   function forEachEvent(events, iteratee) {
 
-     toArray(events).join(" ").split(" ").forEach((eventNS) => {
 
-       const fragments = eventNS.split(".");
 
-       iteratee(fragments[0], fragments[1]);
 
-     });
 
-   }
 
-   return {
 
-     on,
 
-     off,
 
-     offBy,
 
-     emit,
 
-     destroy
 
-   };
 
- }
 
- const EVENT_MOUNTED = "mounted";
 
- const EVENT_READY = "ready";
 
- const EVENT_MOVE = "move";
 
- const EVENT_MOVED = "moved";
 
- const EVENT_CLICK = "click";
 
- const EVENT_ACTIVE = "active";
 
- const EVENT_INACTIVE = "inactive";
 
- const EVENT_VISIBLE = "visible";
 
- const EVENT_HIDDEN = "hidden";
 
- const EVENT_SLIDE_KEYDOWN = "slide:keydown";
 
- const EVENT_REFRESH = "refresh";
 
- const EVENT_UPDATED = "undated";
 
- const EVENT_RESIZE = "resize";
 
- const EVENT_RESIZED = "resized";
 
- const EVENT_DRAG = "drag";
 
- const EVENT_DRAGGING = "dragging";
 
- const EVENT_DRAGGED = "dragged";
 
- const EVENT_SCROLL = "scroll";
 
- const EVENT_SCROLLED = "scrolled";
 
- const EVENT_DESTROY = "destroy";
 
- const EVENT_ARROWS_MOUNTED = "arrows:mounted";
 
- const EVENT_ARROWS_UPDATED = "arrows:updated";
 
- const EVENT_PAGINATION_MOUNTED = "pagination:mounted";
 
- const EVENT_PAGINATION_UPDATED = "pagination:updated";
 
- const EVENT_NAVIGATION_MOUNTED = "navigation:mounted";
 
- const EVENT_AUTOPLAY_PLAY = "autoplay:play";
 
- const EVENT_AUTOPLAY_PLAYING = "autoplay:playing";
 
- const EVENT_AUTOPLAY_PAUSE = "autoplay:pause";
 
- const EVENT_LAZYLOAD_LOADED = "lazyload:loaded";
 
- function EventInterface(Splide2) {
 
-   const { event } = Splide2;
 
-   const key = {};
 
-   let listeners = [];
 
-   function on(events, callback, priority) {
 
-     event.on(events, callback, key, priority);
 
-   }
 
-   function off(events) {
 
-     event.off(events, key);
 
-   }
 
-   function bind(targets, events, callback, options) {
 
-     forEachEvent(targets, events, (target, event2) => {
 
-       listeners.push([target, event2, callback, options]);
 
-       target.addEventListener(event2, callback, options);
 
-     });
 
-   }
 
-   function unbind(targets, events) {
 
-     forEachEvent(targets, events, (target, event2) => {
 
-       listeners = listeners.filter((listener) => {
 
-         if (listener[0] === target && listener[1] === event2) {
 
-           target.removeEventListener(event2, listener[2], listener[3]);
 
-           return false;
 
-         }
 
-         return true;
 
-       });
 
-     });
 
-   }
 
-   function forEachEvent(targets, events, iteratee) {
 
-     forEach(targets, (target) => {
 
-       if (target) {
 
-         events.split(" ").forEach(iteratee.bind(null, target));
 
-       }
 
-     });
 
-   }
 
-   function destroy() {
 
-     listeners = listeners.filter((data) => unbind(data[0], data[1]));
 
-     event.offBy(key);
 
-   }
 
-   event.on(EVENT_DESTROY, destroy, key);
 
-   return {
 
-     on,
 
-     off,
 
-     emit: event.emit,
 
-     bind,
 
-     unbind,
 
-     destroy
 
-   };
 
- }
 
- function RequestInterval(interval, onInterval, onUpdate, limit) {
 
-   const { now } = Date;
 
-   let startTime;
 
-   let rate = 0;
 
-   let id;
 
-   let paused = true;
 
-   let count = 0;
 
-   function update() {
 
-     if (!paused) {
 
-       const elapsed = now() - startTime;
 
-       if (elapsed >= interval) {
 
-         rate = 1;
 
-         startTime = now();
 
-       } else {
 
-         rate = elapsed / interval;
 
-       }
 
-       if (onUpdate) {
 
-         onUpdate(rate);
 
-       }
 
-       if (rate === 1) {
 
-         onInterval();
 
-         if (limit && ++count >= limit) {
 
-           return pause();
 
-         }
 
-       }
 
-       raf(update);
 
-     }
 
-   }
 
-   function start(resume) {
 
-     !resume && cancel();
 
-     startTime = now() - (resume ? rate * interval : 0);
 
-     paused = false;
 
-     raf(update);
 
-   }
 
-   function pause() {
 
-     paused = true;
 
-   }
 
-   function rewind() {
 
-     startTime = now();
 
-     rate = 0;
 
-     if (onUpdate) {
 
-       onUpdate(rate);
 
-     }
 
-   }
 
-   function cancel() {
 
-     cancelAnimationFrame(id);
 
-     rate = 0;
 
-     id = 0;
 
-     paused = true;
 
-   }
 
-   function isPaused() {
 
-     return paused;
 
-   }
 
-   return {
 
-     start,
 
-     rewind,
 
-     pause,
 
-     cancel,
 
-     isPaused
 
-   };
 
- }
 
- function State(initialState) {
 
-   let state = initialState;
 
-   function set(value) {
 
-     state = value;
 
-   }
 
-   function is(states) {
 
-     return includes(toArray(states), state);
 
-   }
 
-   return { set, is };
 
- }
 
- function Throttle(func, duration) {
 
-   let interval;
 
-   function throttled() {
 
-     if (!interval) {
 
-       interval = RequestInterval(duration || 0, () => {
 
-         func.apply(this, arguments);
 
-         interval = null;
 
-       }, null, 1);
 
-       interval.start();
 
-     }
 
-   }
 
-   return throttled;
 
- }
 
- function Options(Splide2, Components2, options) {
 
-   const throttledObserve = Throttle(observe);
 
-   let initialOptions;
 
-   let points;
 
-   let currPoint;
 
-   function setup() {
 
-     try {
 
-       merge(options, JSON.parse(getAttribute(Splide2.root, DATA_ATTRIBUTE)));
 
-     } catch (e) {
 
-       assert(false, e.message);
 
-     }
 
-     initialOptions = merge({}, options);
 
-   }
 
-   function mount() {
 
-     const { breakpoints } = options;
 
-     const isMin = options.mediaQuery === "min";
 
-     if (breakpoints) {
 
-       points = Object.keys(breakpoints).sort((n, m) => isMin ? +m - +n : +n - +m).map((point) => [
 
-         point,
 
-         matchMedia(`(${isMin ? "min" : "max"}-width:${point}px)`)
 
-       ]);
 
-       addEventListener("resize", throttledObserve);
 
-       observe();
 
-     }
 
-   }
 
-   function destroy(completely) {
 
-     if (completely) {
 
-       removeEventListener("resize", throttledObserve);
 
-     }
 
-   }
 
-   function observe() {
 
-     const item = find(points, (item2) => item2[1].matches) || [];
 
-     if (item[0] !== currPoint) {
 
-       onMatch(currPoint = item[0]);
 
-     }
 
-   }
 
-   function onMatch(point) {
 
-     const newOptions = options.breakpoints[point] || initialOptions;
 
-     if (newOptions.destroy) {
 
-       Splide2.options = initialOptions;
 
-       Splide2.destroy(newOptions.destroy === "completely");
 
-     } else {
 
-       if (Splide2.state.is(DESTROYED)) {
 
-         destroy(true);
 
-         Splide2.mount();
 
-       }
 
-       Splide2.options = newOptions;
 
-     }
 
-   }
 
-   return {
 
-     setup,
 
-     mount,
 
-     destroy
 
-   };
 
- }
 
- const RTL = "rtl";
 
- const TTB = "ttb";
 
- const ORIENTATION_MAP = {
 
-   marginRight: ["marginBottom", "marginLeft"],
 
-   autoWidth: ["autoHeight"],
 
-   fixedWidth: ["fixedHeight"],
 
-   paddingLeft: ["paddingTop", "paddingRight"],
 
-   paddingRight: ["paddingBottom", "paddingLeft"],
 
-   width: ["height"],
 
-   left: ["top", "right"],
 
-   right: ["bottom", "left"],
 
-   x: ["y"],
 
-   X: ["Y"],
 
-   Y: ["X"],
 
-   ArrowLeft: ["ArrowUp", "ArrowRight"],
 
-   ArrowRight: ["ArrowDown", "ArrowLeft"]
 
- };
 
- function Direction(Splide2, Components2, options) {
 
-   function resolve(prop, axisOnly) {
 
-     const { direction } = options;
 
-     const index = direction === RTL && !axisOnly ? 1 : direction === TTB ? 0 : -1;
 
-     return ORIENTATION_MAP[prop][index] || prop;
 
-   }
 
-   function orient(value) {
 
-     return value * (options.direction === RTL ? 1 : -1);
 
-   }
 
-   return {
 
-     resolve,
 
-     orient
 
-   };
 
- }
 
- const CLASS_ROOT = PROJECT_CODE;
 
- const CLASS_SLIDER = `${PROJECT_CODE}__slider`;
 
- const CLASS_TRACK = `${PROJECT_CODE}__track`;
 
- const CLASS_LIST = `${PROJECT_CODE}__list`;
 
- const CLASS_SLIDE = `${PROJECT_CODE}__slide`;
 
- const CLASS_CLONE = `${CLASS_SLIDE}--clone`;
 
- const CLASS_CONTAINER = `${CLASS_SLIDE}__container`;
 
- const CLASS_ARROWS = `${PROJECT_CODE}__arrows`;
 
- const CLASS_ARROW = `${PROJECT_CODE}__arrow`;
 
- const CLASS_ARROW_PREV = `${CLASS_ARROW}--prev`;
 
- const CLASS_ARROW_NEXT = `${CLASS_ARROW}--next`;
 
- const CLASS_PAGINATION = `${PROJECT_CODE}__pagination`;
 
- const CLASS_PAGINATION_PAGE = `${CLASS_PAGINATION}__page`;
 
- const CLASS_PROGRESS = `${PROJECT_CODE}__progress`;
 
- const CLASS_PROGRESS_BAR = `${CLASS_PROGRESS}__bar`;
 
- const CLASS_AUTOPLAY = `${PROJECT_CODE}__autoplay`;
 
- const CLASS_PLAY = `${PROJECT_CODE}__play`;
 
- const CLASS_PAUSE = `${PROJECT_CODE}__pause`;
 
- const CLASS_SPINNER = `${PROJECT_CODE}__spinner`;
 
- const CLASS_INITIALIZED = "is-initialized";
 
- const CLASS_ACTIVE = "is-active";
 
- const CLASS_PREV = "is-prev";
 
- const CLASS_NEXT = "is-next";
 
- const CLASS_VISIBLE = "is-visible";
 
- const CLASS_LOADING = "is-loading";
 
- const STATUS_CLASSES = [CLASS_ACTIVE, CLASS_VISIBLE, CLASS_PREV, CLASS_NEXT, CLASS_LOADING];
 
- const CLASSES = {
 
-   slide: CLASS_SLIDE,
 
-   clone: CLASS_CLONE,
 
-   arrows: CLASS_ARROWS,
 
-   arrow: CLASS_ARROW,
 
-   prev: CLASS_ARROW_PREV,
 
-   next: CLASS_ARROW_NEXT,
 
-   pagination: CLASS_PAGINATION,
 
-   page: CLASS_PAGINATION_PAGE,
 
-   spinner: CLASS_SPINNER
 
- };
 
- function Elements(Splide2, Components2, options) {
 
-   const { on } = EventInterface(Splide2);
 
-   const { root } = Splide2;
 
-   const elements = {};
 
-   const slides = [];
 
-   let classes;
 
-   let slider;
 
-   let track;
 
-   let list;
 
-   function setup() {
 
-     collect();
 
-     identify();
 
-     addClass(root, classes = getClasses());
 
-   }
 
-   function mount() {
 
-     on(EVENT_REFRESH, refresh);
 
-     on(EVENT_UPDATED, update);
 
-   }
 
-   function destroy() {
 
-     empty(slides);
 
-     removeClass(root, classes);
 
-   }
 
-   function refresh() {
 
-     destroy();
 
-     setup();
 
-   }
 
-   function update() {
 
-     removeClass(root, classes);
 
-     addClass(root, classes = getClasses());
 
-   }
 
-   function collect() {
 
-     slider = child(root, `.${CLASS_SLIDER}`);
 
-     track = query(root, `.${CLASS_TRACK}`);
 
-     list = child(track, `.${CLASS_LIST}`);
 
-     assert(track && list, "A track/list element is missing.");
 
-     push(slides, children(list, `.${CLASS_SLIDE}:not(.${CLASS_CLONE})`));
 
-     const autoplay = find(`.${CLASS_AUTOPLAY}`);
 
-     const arrows = find(`.${CLASS_ARROWS}`);
 
-     assign(elements, {
 
-       root,
 
-       slider,
 
-       track,
 
-       list,
 
-       slides,
 
-       arrows,
 
-       prev: query(arrows, `.${CLASS_ARROW_PREV}`),
 
-       next: query(arrows, `.${CLASS_ARROW_NEXT}`),
 
-       bar: query(find(`.${CLASS_PROGRESS}`), `.${CLASS_PROGRESS_BAR}`),
 
-       play: query(autoplay, `.${CLASS_PLAY}`),
 
-       pause: query(autoplay, `.${CLASS_PAUSE}`)
 
-     });
 
-   }
 
-   function identify() {
 
-     const id = root.id || uniqueId(PROJECT_CODE);
 
-     root.id = id;
 
-     track.id = track.id || `${id}-track`;
 
-     list.id = list.id || `${id}-list`;
 
-   }
 
-   function find(selector) {
 
-     return child(root, selector) || child(slider, selector);
 
-   }
 
-   function getClasses() {
 
-     return [
 
-       `${CLASS_ROOT}--${options.type}`,
 
-       `${CLASS_ROOT}--${options.direction}`,
 
-       options.drag && `${CLASS_ROOT}--draggable`,
 
-       options.isNavigation && `${CLASS_ROOT}--nav`,
 
-       CLASS_ACTIVE
 
-     ];
 
-   }
 
-   return assign(elements, {
 
-     setup,
 
-     mount,
 
-     destroy
 
-   });
 
- }
 
- function Style$1() {
 
-   let style;
 
-   let sheet;
 
-   function mount() {
 
-     style = create("style", {}, document.head);
 
-     sheet = style.sheet;
 
-   }
 
-   function destroy() {
 
-     remove(style);
 
-     sheet = null;
 
-   }
 
-   function rule(selector, prop, value) {
 
-     const { cssRules } = sheet;
 
-     const cssRule = find(cssRules, (cssRule2) => isCSSStyleRule(cssRule2) && cssRule2.selectorText === selector) || cssRules[sheet.insertRule(`${selector}{}`, 0)];
 
-     if (isCSSStyleRule(cssRule)) {
 
-       const { style: style2 } = cssRule;
 
-       value = `${value}`;
 
-       if (style2[prop] !== value) {
 
-         style2[prop] = value;
 
-       }
 
-     }
 
-   }
 
-   function ruleBy(target, prop, value) {
 
-     rule(`#${isHTMLElement(target) ? target.id : target}`, prop, value);
 
-   }
 
-   function isCSSStyleRule(cssRule) {
 
-     return cssRule instanceof CSSStyleRule;
 
-   }
 
-   return {
 
-     mount,
 
-     destroy,
 
-     rule,
 
-     ruleBy
 
-   };
 
- }
 
- const ROLE = "role";
 
- const ARIA_CONTROLS = "aria-controls";
 
- const ARIA_CURRENT = "aria-current";
 
- const ARIA_LABEL = "aria-label";
 
- const ARIA_HIDDEN = "aria-hidden";
 
- const TAB_INDEX = "tabindex";
 
- const DISABLED = "disabled";
 
- const ARIA_ORIENTATION = "aria-orientation";
 
- const ALL_ATTRIBUTES = [
 
-   ROLE,
 
-   ARIA_CONTROLS,
 
-   ARIA_CURRENT,
 
-   ARIA_LABEL,
 
-   ARIA_HIDDEN,
 
-   ARIA_ORIENTATION,
 
-   TAB_INDEX,
 
-   DISABLED
 
- ];
 
- const SLIDE = "slide";
 
- const LOOP = "loop";
 
- const FADE = "fade";
 
- function Slide$1(Splide2, index, slideIndex, slide) {
 
-   const { on, emit, bind, destroy: destroyEvents } = EventInterface(Splide2);
 
-   const { Components, root, options } = Splide2;
 
-   const { isNavigation, updateOnMove } = options;
 
-   const { resolve } = Components.Direction;
 
-   const isClone = slideIndex > -1;
 
-   const container = child(slide, `.${CLASS_CONTAINER}`);
 
-   let destroyed;
 
-   function mount() {
 
-     init();
 
-     bind(slide, "click keydown", (e) => {
 
-       emit(e.type === "click" ? EVENT_CLICK : EVENT_SLIDE_KEYDOWN, this, e);
 
-     });
 
-     on([EVENT_RESIZED, EVENT_MOVED, EVENT_UPDATED, EVENT_REFRESH, EVENT_SCROLLED], update.bind(this));
 
-     if (updateOnMove) {
 
-       on(EVENT_MOVE, onMove.bind(this));
 
-     }
 
-     update.call(this);
 
-   }
 
-   function init() {
 
-     if (!isClone) {
 
-       slide.id = `${root.id}-slide${pad(index + 1)}`;
 
-     }
 
-     if (isNavigation) {
 
-       const idx = isClone ? slideIndex : index;
 
-       const label = format(options.i18n.slideX, idx + 1);
 
-       const controls = Splide2.splides.map((splide) => splide.root.id).join(" ");
 
-       setAttribute(slide, ARIA_LABEL, label);
 
-       setAttribute(slide, ARIA_CONTROLS, controls);
 
-       setAttribute(slide, ROLE, "menuitem");
 
-     }
 
-   }
 
-   function destroy() {
 
-     destroyed = true;
 
-     destroyEvents();
 
-     removeClass(slide, STATUS_CLASSES);
 
-     removeAttribute(slide, ALL_ATTRIBUTES);
 
-   }
 
-   function onMove(next, prev, dest) {
 
-     if (!destroyed) {
 
-       update.call(this);
 
-       if (dest === index) {
 
-         updateActivity.call(this, true);
 
-       }
 
-     }
 
-   }
 
-   function update() {
 
-     if (!destroyed) {
 
-       const { index: currIndex } = Splide2;
 
-       updateActivity.call(this, isActive());
 
-       updateVisibility.call(this, isVisible());
 
-       toggleClass(slide, CLASS_PREV, index === currIndex - 1);
 
-       toggleClass(slide, CLASS_NEXT, index === currIndex + 1);
 
-     }
 
-   }
 
-   function updateActivity(active) {
 
-     if (active !== hasClass(slide, CLASS_ACTIVE)) {
 
-       toggleClass(slide, CLASS_ACTIVE, active);
 
-       if (isNavigation) {
 
-         setAttribute(slide, ARIA_CURRENT, active || null);
 
-       }
 
-       emit(active ? EVENT_ACTIVE : EVENT_INACTIVE, this);
 
-     }
 
-   }
 
-   function updateVisibility(visible) {
 
-     const { focusableNodes } = options;
 
-     const ariaHidden = !visible && !isActive();
 
-     setAttribute(slide, ARIA_HIDDEN, ariaHidden || null);
 
-     setAttribute(slide, TAB_INDEX, !ariaHidden && options.slideFocus ? 0 : null);
 
-     if (focusableNodes) {
 
-       queryAll(slide, focusableNodes).forEach((node) => {
 
-         setAttribute(node, TAB_INDEX, ariaHidden ? -1 : null);
 
-       });
 
-     }
 
-     if (visible !== hasClass(slide, CLASS_VISIBLE)) {
 
-       toggleClass(slide, CLASS_VISIBLE, visible);
 
-       emit(visible ? EVENT_VISIBLE : EVENT_HIDDEN, this);
 
-     }
 
-   }
 
-   function rule(prop, value, useContainer) {
 
-     const selector = `#${slide.id}${container && useContainer ? ` > .${CLASS_CONTAINER}` : ""}`;
 
-     Components.Style.rule(selector, prop, value);
 
-   }
 
-   function isActive() {
 
-     return Splide2.index === index;
 
-   }
 
-   function isVisible() {
 
-     if (Splide2.is(FADE)) {
 
-       return isActive();
 
-     }
 
-     const trackRect = rect(Components.Elements.track);
 
-     const slideRect = rect(slide);
 
-     const left = resolve("left");
 
-     const right = resolve("right");
 
-     return floor(trackRect[left]) <= ceil(slideRect[left]) && floor(slideRect[right]) <= ceil(trackRect[right]);
 
-   }
 
-   function isWithin(from, distance) {
 
-     let diff = abs(from - index);
 
-     if (!Splide2.is(SLIDE) && !isClone) {
 
-       diff = min(diff, Splide2.length - diff);
 
-     }
 
-     return diff <= distance;
 
-   }
 
-   return {
 
-     index,
 
-     slideIndex,
 
-     slide,
 
-     container,
 
-     isClone,
 
-     mount,
 
-     destroy,
 
-     rule,
 
-     isWithin
 
-   };
 
- }
 
- function Slides(Splide2, Components2, options) {
 
-   const { on, emit, bind } = EventInterface(Splide2);
 
-   const { slides, list } = Components2.Elements;
 
-   const Slides2 = [];
 
-   function mount() {
 
-     init();
 
-     on(EVENT_REFRESH, refresh);
 
-   }
 
-   function init() {
 
-     slides.forEach((slide, index) => {
 
-       register(slide, index, -1);
 
-     });
 
-   }
 
-   function destroy() {
 
-     forEach$1((Slide2) => {
 
-       Slide2.destroy();
 
-     });
 
-     empty(Slides2);
 
-   }
 
-   function refresh() {
 
-     destroy();
 
-     init();
 
-   }
 
-   function register(slide, index, slideIndex) {
 
-     const object = Slide$1(Splide2, index, slideIndex, slide);
 
-     object.mount();
 
-     Slides2.push(object);
 
-   }
 
-   function get(excludeClones) {
 
-     return excludeClones ? filter((Slide2) => !Slide2.isClone) : Slides2;
 
-   }
 
-   function getIn(page) {
 
-     const { Controller } = Components2;
 
-     const index = Controller.toIndex(page);
 
-     const max = Controller.hasFocus() ? 1 : options.perPage;
 
-     return filter((Slide2) => between(Slide2.index, index, index + max - 1));
 
-   }
 
-   function getAt(index) {
 
-     return filter(index)[0];
 
-   }
 
-   function add(items, index) {
 
-     forEach(items, (slide) => {
 
-       if (isString(slide)) {
 
-         slide = parseHtml(slide);
 
-       }
 
-       if (isHTMLElement(slide)) {
 
-         const ref = slides[index];
 
-         ref ? before(slide, ref) : append(list, slide);
 
-         addClass(slide, options.classes.slide);
 
-         observeImages(slide, emit.bind(null, EVENT_RESIZE));
 
-       }
 
-     });
 
-     emit(EVENT_REFRESH);
 
-   }
 
-   function remove$1(matcher) {
 
-     remove(filter(matcher).map((Slide2) => Slide2.slide));
 
-     emit(EVENT_REFRESH);
 
-   }
 
-   function forEach$1(iteratee, excludeClones) {
 
-     get(excludeClones).forEach(iteratee);
 
-   }
 
-   function filter(matcher) {
 
-     return Slides2.filter(isFunction(matcher) ? matcher : (Slide2) => isString(matcher) ? matches(Slide2.slide, matcher) : includes(toArray(matcher), Slide2.index));
 
-   }
 
-   function rule(prop, value, useContainer) {
 
-     forEach$1((Slide2) => {
 
-       Slide2.rule(prop, value, useContainer);
 
-     });
 
-   }
 
-   function observeImages(elm, callback) {
 
-     const images = queryAll(elm, "img");
 
-     let { length } = images;
 
-     if (length) {
 
-       images.forEach((img) => {
 
-         bind(img, "load error", () => {
 
-           if (!--length) {
 
-             callback();
 
-           }
 
-         });
 
-       });
 
-     } else {
 
-       callback();
 
-     }
 
-   }
 
-   function getLength(excludeClones) {
 
-     return excludeClones ? slides.length : Slides2.length;
 
-   }
 
-   function isEnough() {
 
-     return Slides2.length > options.perPage;
 
-   }
 
-   return {
 
-     mount,
 
-     destroy,
 
-     register,
 
-     get,
 
-     getIn,
 
-     getAt,
 
-     add,
 
-     remove: remove$1,
 
-     forEach: forEach$1,
 
-     filter,
 
-     rule,
 
-     getLength,
 
-     isEnough
 
-   };
 
- }
 
- function Clones(Splide2, Components2, options) {
 
-   const { on, emit } = EventInterface(Splide2);
 
-   const { Elements, Slides } = Components2;
 
-   const { resolve } = Components2.Direction;
 
-   const clones = [];
 
-   let cloneCount;
 
-   function mount() {
 
-     init();
 
-     on(EVENT_REFRESH, refresh);
 
-     on([EVENT_UPDATED, EVENT_RESIZE], observe);
 
-   }
 
-   function init() {
 
-     if (cloneCount = computeCloneCount()) {
 
-       generate(cloneCount);
 
-     }
 
-   }
 
-   function destroy() {
 
-     remove(clones);
 
-     empty(clones);
 
-   }
 
-   function refresh() {
 
-     destroy();
 
-     init();
 
-   }
 
-   function observe() {
 
-     if (cloneCount !== computeCloneCount()) {
 
-       emit(EVENT_REFRESH);
 
-     }
 
-   }
 
-   function generate(count) {
 
-     const slides = Slides.get().slice();
 
-     const { length } = slides;
 
-     if (length) {
 
-       while (slides.length < count) {
 
-         push(slides, slides);
 
-       }
 
-       push(slides.slice(-count), slides.slice(0, count)).forEach((Slide, index) => {
 
-         const isHead = index < count;
 
-         const clone = cloneDeep(Slide.slide, index);
 
-         isHead ? before(clone, slides[0].slide) : append(Elements.list, clone);
 
-         push(clones, clone);
 
-         Slides.register(clone, index - count + (isHead ? 0 : length), Slide.index);
 
-       });
 
-     }
 
-   }
 
-   function cloneDeep(elm, index) {
 
-     const clone = elm.cloneNode(true);
 
-     addClass(clone, options.classes.clone);
 
-     clone.id = `${Splide2.root.id}-clone${pad(index + 1)}`;
 
-     return clone;
 
-   }
 
-   function computeCloneCount() {
 
-     let { clones: clones2 } = options;
 
-     if (!Splide2.is(LOOP)) {
 
-       clones2 = 0;
 
-     } else if (!clones2) {
 
-       const fixedSize = measure(Elements.list, options[resolve("fixedWidth")]);
 
-       const fixedCount = fixedSize && ceil(rect(Elements.track)[resolve("width")] / fixedSize);
 
-       const baseCount = fixedCount || options[resolve("autoWidth")] && Splide2.length || options.perPage;
 
-       clones2 = baseCount * (options.drag ? (options.flickMaxPages || 1) + 1 : 2);
 
-     }
 
-     return clones2;
 
-   }
 
-   return {
 
-     mount,
 
-     destroy
 
-   };
 
- }
 
- function Layout(Splide2, Components2, options) {
 
-   const { on, bind, emit } = EventInterface(Splide2);
 
-   const { Slides } = Components2;
 
-   const { ruleBy } = Components2.Style;
 
-   const { resolve } = Components2.Direction;
 
-   const { track, list } = Components2.Elements;
 
-   const { getAt } = Slides;
 
-   const vertical = options.direction === TTB;
 
-   function mount() {
 
-     init();
 
-     bind(window, "resize load", Throttle(emit.bind(this, EVENT_RESIZE)));
 
-     on([EVENT_UPDATED, EVENT_REFRESH], init);
 
-     on(EVENT_RESIZE, resize);
 
-   }
 
-   function init() {
 
-     ruleBy(Splide2.root, "maxWidth", unit(options.width));
 
-     ruleBy(track, resolve("paddingLeft"), cssPadding(false));
 
-     ruleBy(track, resolve("paddingRight"), cssPadding(true));
 
-     Slides.rule(resolve("marginRight"), unit(options.gap));
 
-     Slides.rule("width", cssSlideWidth());
 
-     setSlidesHeight();
 
-     resize();
 
-   }
 
-   function resize() {
 
-     ruleBy(track, "height", cssTrackHeight());
 
-     options.heightRatio && setSlidesHeight();
 
-     emit(EVENT_RESIZED);
 
-   }
 
-   function setSlidesHeight() {
 
-     Slides.rule("height", cssSlideHeight(), true);
 
-   }
 
-   function cssPadding(right) {
 
-     const { padding } = options;
 
-     const prop = resolve(right ? "right" : "left", true);
 
-     return padding && unit(padding[prop] || (isObject(padding) ? 0 : padding)) || "0px";
 
-   }
 
-   function cssTrackHeight() {
 
-     let height = "";
 
-     if (vertical) {
 
-       height = cssHeight();
 
-       assert(height, "height or heightRatio is missing.");
 
-       height = `calc(${height} - ${cssPadding(false)} - ${cssPadding(true)})`;
 
-     }
 
-     return height;
 
-   }
 
-   function cssHeight() {
 
-     return unit(options.height || rect(list).width * options.heightRatio);
 
-   }
 
-   function cssSlideWidth() {
 
-     return options.autoWidth ? "" : unit(options.fixedWidth) || (vertical ? "" : cssSlideSize());
 
-   }
 
-   function cssSlideHeight() {
 
-     return unit(options.fixedHeight) || (vertical ? options.autoHeight ? "" : cssSlideSize() : cssHeight());
 
-   }
 
-   function cssSlideSize() {
 
-     const gap = unit(options.gap);
 
-     return `calc((100%${gap && ` + ${gap}`})/${options.perPage || 1}${gap && ` - ${gap}`})`;
 
-   }
 
-   function listSize() {
 
-     return rect(list)[resolve("width")];
 
-   }
 
-   function slideSize(index, withoutGap) {
 
-     const Slide = getAt(index || 0);
 
-     return Slide ? rect(Slide.slide)[resolve("width")] + (withoutGap ? 0 : getGap()) : 0;
 
-   }
 
-   function totalSize(index, withoutGap) {
 
-     const Slide = getAt(index);
 
-     if (Slide) {
 
-       const right = rect(Slide.slide)[resolve("right")];
 
-       const left = rect(list)[resolve("left")];
 
-       return abs(right - left) + (withoutGap ? 0 : getGap());
 
-     }
 
-     return 0;
 
-   }
 
-   function sliderSize() {
 
-     return totalSize(Splide2.length - 1, true) - totalSize(-1, true);
 
-   }
 
-   function getGap() {
 
-     const Slide = getAt(0);
 
-     return Slide && parseFloat(style(Slide.slide, resolve("marginRight"))) || 0;
 
-   }
 
-   function getPadding(right) {
 
-     return parseFloat(style(track, resolve(`padding${right ? "Right" : "Left"}`, true))) || 0;
 
-   }
 
-   return {
 
-     mount,
 
-     listSize,
 
-     slideSize,
 
-     sliderSize,
 
-     totalSize,
 
-     getPadding
 
-   };
 
- }
 
- const SNAP_THRESHOLD = 10;
 
- function Move(Splide2, Components2, options) {
 
-   const { on, emit } = EventInterface(Splide2);
 
-   const { slideSize, getPadding, totalSize, listSize, sliderSize } = Components2.Layout;
 
-   const { resolve, orient } = Components2.Direction;
 
-   const { list, track } = Components2.Elements;
 
-   let waiting;
 
-   let shouldSnap = true;
 
-   function mount() {
 
-     if (!Splide2.is(FADE)) {
 
-       on([EVENT_RESIZED, EVENT_UPDATED, EVENT_REFRESH], reposition, DEFAULT_EVENT_PRIORITY - 1);
 
-     }
 
-   }
 
-   function reposition() {
 
-     if (exceededLimit(true)) {
 
-       translate(getLimit(true));
 
-     } else if (shouldSnap || (shouldSnap = canSnap())) {
 
-       jump(Splide2.index);
 
-     }
 
-   }
 
-   function move(dest, index, prev, callback) {
 
-     if (!isBusy()) {
 
-       const { set } = Splide2.state;
 
-       const position = getPosition();
 
-       const looping = dest !== index;
 
-       waiting = looping || options.waitForTransition;
 
-       set(MOVING);
 
-       emit(EVENT_MOVE, index, prev, dest);
 
-       Components2.Transition.start(dest, () => {
 
-         looping && jump(index);
 
-         waiting = false;
 
-         set(IDLE);
 
-         emit(EVENT_MOVED, index, prev, dest);
 
-         if (options.trimSpace === "move" && dest !== prev && position === getPosition()) {
 
-           Components2.Controller.go(dest > prev ? ">" : "<", false, callback);
 
-         } else {
 
-           callback && callback();
 
-         }
 
-       });
 
-     }
 
-   }
 
-   function jump(index) {
 
-     translate(toPosition(index, true));
 
-   }
 
-   function translate(position) {
 
-     position = loop(position);
 
-     shouldSnap = canSnap(position);
 
-     Components2.Style.ruleBy(list, "transform", `translate${resolve("X")}(${100 * position / listSize()}%)`);
 
-   }
 
-   function loop(position) {
 
-     if (!waiting && Splide2.is(LOOP)) {
 
-       const diff = position - getPosition();
 
-       const exceededMin = exceededLimit(false, position);
 
-       const exceededMax = exceededLimit(true, position);
 
-       if (exceededMin && diff > 0 || exceededMax && diff < 0) {
 
-         position += orient(sliderSize() * (exceededMin ? 1 : -1));
 
-       }
 
-     }
 
-     return position;
 
-   }
 
-   function cancel() {
 
-     waiting = false;
 
-     Components2.Transition.cancel();
 
-     translate(getPosition());
 
-   }
 
-   function toIndex(position) {
 
-     const Slides = Components2.Slides.get();
 
-     let index = 0;
 
-     let minDistance = Infinity;
 
-     for (let i = 0; i < Slides.length; i++) {
 
-       const slideIndex = Slides[i].index;
 
-       const distance = abs(toPosition(slideIndex, true) - position);
 
-       if (distance < minDistance) {
 
-         minDistance = distance;
 
-         index = slideIndex;
 
-       } else {
 
-         break;
 
-       }
 
-     }
 
-     return index;
 
-   }
 
-   function toPosition(index, trimming) {
 
-     const position = orient(totalSize(index - 1) - offset(index));
 
-     return trimming ? trim(position) : position;
 
-   }
 
-   function getPosition() {
 
-     const left = resolve("left");
 
-     return rect(list)[left] - rect(track)[left] + orient(getPadding(false));
 
-   }
 
-   function trim(position) {
 
-     if (options.trimSpace && Splide2.is(SLIDE)) {
 
-       position = clamp(position, 0, orient(sliderSize() - listSize()));
 
-     }
 
-     return position;
 
-   }
 
-   function offset(index) {
 
-     const { focus } = options;
 
-     return focus === "center" ? (listSize() - slideSize(index, true)) / 2 : +focus * slideSize(index) || 0;
 
-   }
 
-   function getLimit(max) {
 
-     return toPosition(max ? Components2.Controller.getEnd() : 0, !!options.trimSpace);
 
-   }
 
-   function canSnap(position) {
 
-     position = isUndefined(position) ? getPosition() : position;
 
-     return abs(position - toPosition(toIndex(position), true)) < SNAP_THRESHOLD;
 
-   }
 
-   function isBusy() {
 
-     return !!waiting;
 
-   }
 
-   function exceededLimit(max, position) {
 
-     position = isUndefined(position) ? getPosition() : position;
 
-     const exceededMin = max !== true && orient(position) < orient(getLimit(false));
 
-     const exceededMax = max !== false && orient(position) > orient(getLimit(true));
 
-     return exceededMin || exceededMax;
 
-   }
 
-   return {
 
-     mount,
 
-     move,
 
-     jump,
 
-     translate,
 
-     cancel,
 
-     toIndex,
 
-     toPosition,
 
-     getPosition,
 
-     getLimit,
 
-     isBusy,
 
-     exceededLimit
 
-   };
 
- }
 
- function Controller(Splide2, Components2, options) {
 
-   const { on } = EventInterface(Splide2);
 
-   const { Move } = Components2;
 
-   const { jump, getPosition, getLimit } = Move;
 
-   const { isEnough, getLength } = Components2.Slides;
 
-   const isLoop = Splide2.is(LOOP);
 
-   let currIndex = options.start || 0;
 
-   let prevIndex = currIndex;
 
-   let slideCount;
 
-   let perMove;
 
-   let perPage;
 
-   function mount() {
 
-     init();
 
-     jump(currIndex);
 
-     on([EVENT_UPDATED, EVENT_REFRESH], init);
 
-     on(EVENT_SCROLLED, reindex, 0);
 
-   }
 
-   function init() {
 
-     slideCount = getLength(true);
 
-     perMove = options.perMove;
 
-     perPage = options.perPage;
 
-     currIndex = clamp(currIndex, 0, slideCount - 1);
 
-     jump(currIndex);
 
-   }
 
-   function reindex() {
 
-     setIndex(Move.toIndex(getPosition()));
 
-   }
 
-   function go(control, allowSameIndex, callback) {
 
-     const dest = parse(control);
 
-     const index = loop(dest);
 
-     if (index > -1 && !Move.isBusy() && (allowSameIndex || index !== currIndex)) {
 
-       setIndex(index);
 
-       Move.move(dest, index, prevIndex, callback);
 
-     }
 
-   }
 
-   function parse(control) {
 
-     let index = currIndex;
 
-     if (isString(control)) {
 
-       const [, indicator, number] = control.match(/([+\-<>])(\d+)?/) || [];
 
-       if (indicator === "+" || indicator === "-") {
 
-         index = computeDestIndex(currIndex + +`${indicator}${+number || 1}`, currIndex, true);
 
-       } else if (indicator === ">") {
 
-         index = number ? toIndex(+number) : getNext(true);
 
-       } else if (indicator === "<") {
 
-         index = getPrev(true);
 
-       }
 
-     } else {
 
-       if (isLoop) {
 
-         index = clamp(control, -perPage, slideCount + perPage - 1);
 
-       } else {
 
-         index = clamp(control, 0, getEnd());
 
-       }
 
-     }
 
-     return index;
 
-   }
 
-   function getNext(destination) {
 
-     return getAdjacent(false, destination);
 
-   }
 
-   function getPrev(destination) {
 
-     return getAdjacent(true, destination);
 
-   }
 
-   function getAdjacent(prev, destination) {
 
-     const number = perMove || hasFocus() ? 1 : perPage;
 
-     const dest = computeDestIndex(currIndex + number * (prev ? -1 : 1), currIndex);
 
-     if (dest === -1 && Splide2.is(SLIDE)) {
 
-       if (!approximatelyEqual(getPosition(), getLimit(!prev), 1)) {
 
-         return prev ? 0 : getEnd();
 
-       }
 
-     }
 
-     return destination ? dest : loop(dest);
 
-   }
 
-   function computeDestIndex(dest, from, incremental) {
 
-     if (isEnough()) {
 
-       const end = getEnd();
 
-       if (dest < 0 || dest > end) {
 
-         if (between(0, dest, from, true) || between(end, from, dest, true)) {
 
-           dest = toIndex(toPage(dest));
 
-         } else {
 
-           if (isLoop) {
 
-             dest = perMove ? dest : dest < 0 ? -(slideCount % perPage || perPage) : slideCount;
 
-           } else if (options.rewind) {
 
-             dest = dest < 0 ? end : 0;
 
-           } else {
 
-             dest = -1;
 
-           }
 
-         }
 
-       } else {
 
-         if (!isLoop && !incremental && dest !== from) {
 
-           dest = perMove ? dest : toIndex(toPage(from) + (dest < from ? -1 : 1));
 
-         }
 
-       }
 
-     } else {
 
-       dest = -1;
 
-     }
 
-     return dest;
 
-   }
 
-   function getEnd() {
 
-     let end = slideCount - perPage;
 
-     if (hasFocus() || isLoop && perMove) {
 
-       end = slideCount - 1;
 
-     }
 
-     return max(end, 0);
 
-   }
 
-   function loop(index) {
 
-     if (isLoop) {
 
-       return isEnough() ? index % slideCount + (index < 0 ? slideCount : 0) : -1;
 
-     }
 
-     return index;
 
-   }
 
-   function toIndex(page) {
 
-     return clamp(hasFocus() ? page : perPage * page, 0, getEnd());
 
-   }
 
-   function toPage(index) {
 
-     if (!hasFocus()) {
 
-       index = between(index, slideCount - perPage, slideCount - 1) ? slideCount - 1 : index;
 
-       index = floor(index / perPage);
 
-     }
 
-     return index;
 
-   }
 
-   function setIndex(index) {
 
-     if (index !== currIndex) {
 
-       prevIndex = currIndex;
 
-       currIndex = index;
 
-     }
 
-   }
 
-   function getIndex(prev) {
 
-     return prev ? prevIndex : currIndex;
 
-   }
 
-   function hasFocus() {
 
-     return !isUndefined(options.focus) || options.isNavigation;
 
-   }
 
-   return {
 
-     mount,
 
-     go,
 
-     getNext,
 
-     getPrev,
 
-     getEnd,
 
-     setIndex,
 
-     getIndex,
 
-     toIndex,
 
-     toPage,
 
-     hasFocus
 
-   };
 
- }
 
- const XML_NAME_SPACE = "http://www.w3.org/2000/svg";
 
- const 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";
 
- const SIZE = 40;
 
- function Arrows(Splide2, Components2, options) {
 
-   const { on, bind, emit } = EventInterface(Splide2);
 
-   const { classes, i18n } = options;
 
-   const { Elements, Controller } = Components2;
 
-   let wrapper = Elements.arrows;
 
-   let prev = Elements.prev;
 
-   let next = Elements.next;
 
-   let created;
 
-   const arrows = {};
 
-   function mount() {
 
-     init();
 
-     on(EVENT_UPDATED, init);
 
-   }
 
-   function init() {
 
-     if (options.arrows) {
 
-       if (!prev || !next) {
 
-         createArrows();
 
-       }
 
-     }
 
-     if (prev && next) {
 
-       if (!arrows.prev) {
 
-         const { id } = Elements.track;
 
-         setAttribute(prev, ARIA_CONTROLS, id);
 
-         setAttribute(next, ARIA_CONTROLS, id);
 
-         arrows.prev = prev;
 
-         arrows.next = next;
 
-         listen();
 
-         emit(EVENT_ARROWS_MOUNTED, prev, next);
 
-       } else {
 
-         display(wrapper, options.arrows === false ? "none" : "");
 
-       }
 
-     }
 
-   }
 
-   function destroy() {
 
-     if (created) {
 
-       remove(wrapper);
 
-     } else {
 
-       removeAttribute(prev, ALL_ATTRIBUTES);
 
-       removeAttribute(next, ALL_ATTRIBUTES);
 
-     }
 
-   }
 
-   function listen() {
 
-     const { go } = Controller;
 
-     on([EVENT_MOUNTED, EVENT_MOVED, EVENT_UPDATED, EVENT_REFRESH, EVENT_SCROLLED], update);
 
-     bind(next, "click", () => {
 
-       go(">", true);
 
-     });
 
-     bind(prev, "click", () => {
 
-       go("<", true);
 
-     });
 
-   }
 
-   function createArrows() {
 
-     wrapper = create("div", classes.arrows);
 
-     prev = createArrow(true);
 
-     next = createArrow(false);
 
-     created = true;
 
-     append(wrapper, [prev, next]);
 
-     before(wrapper, child(options.arrows === "slider" && Elements.slider || Splide2.root));
 
-   }
 
-   function createArrow(prev2) {
 
-     const 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}"><path d="${options.arrowPath || PATH}" />`;
 
-     return parseHtml(arrow);
 
-   }
 
-   function update() {
 
-     const index = Splide2.index;
 
-     const prevIndex = Controller.getPrev();
 
-     const nextIndex = Controller.getNext();
 
-     const prevLabel = prevIndex > -1 && index < prevIndex ? i18n.last : i18n.prev;
 
-     const nextLabel = nextIndex > -1 && index > nextIndex ? i18n.first : i18n.next;
 
-     prev.disabled = prevIndex < 0;
 
-     next.disabled = nextIndex < 0;
 
-     setAttribute(prev, ARIA_LABEL, prevLabel);
 
-     setAttribute(next, ARIA_LABEL, nextLabel);
 
-     emit(EVENT_ARROWS_UPDATED, prev, next, prevIndex, nextIndex);
 
-   }
 
-   return {
 
-     arrows,
 
-     mount,
 
-     destroy
 
-   };
 
- }
 
- function Autoplay(Splide2, Components2, options) {
 
-   const { on, bind, emit } = EventInterface(Splide2);
 
-   const { Elements } = Components2;
 
-   const interval = RequestInterval(options.interval, Splide2.go.bind(Splide2, ">"), update);
 
-   const { isPaused } = interval;
 
-   let hovered;
 
-   let focused;
 
-   let paused;
 
-   function mount() {
 
-     const { autoplay } = options;
 
-     if (autoplay) {
 
-       initButton(true);
 
-       initButton(false);
 
-       listen();
 
-       if (autoplay !== "pause") {
 
-         play();
 
-       }
 
-     }
 
-   }
 
-   function initButton(forPause) {
 
-     const prop = forPause ? "pause" : "play";
 
-     const button = Elements[prop];
 
-     if (button) {
 
-       if (!isHTMLButtonElement(button)) {
 
-         setAttribute(button, ROLE, "button");
 
-       }
 
-       setAttribute(button, ARIA_CONTROLS, Elements.track.id);
 
-       setAttribute(button, ARIA_LABEL, options.i18n[prop]);
 
-       bind(button, "click", forPause ? pause : play);
 
-     }
 
-   }
 
-   function listen() {
 
-     const { root } = Elements;
 
-     if (options.pauseOnHover) {
 
-       bind(root, "mouseenter mouseleave", (e) => {
 
-         hovered = e.type === "mouseenter";
 
-         autoToggle();
 
-       });
 
-     }
 
-     if (options.pauseOnFocus) {
 
-       bind(root, "focusin focusout", (e) => {
 
-         focused = e.type === "focusin";
 
-         autoToggle();
 
-       });
 
-     }
 
-     on([EVENT_MOVE, EVENT_SCROLL, EVENT_REFRESH], interval.rewind);
 
-   }
 
-   function play() {
 
-     if (isPaused() && Components2.Slides.isEnough()) {
 
-       interval.start(!options.resetProgress);
 
-       focused = false;
 
-       hovered = false;
 
-       emit(EVENT_AUTOPLAY_PLAY);
 
-     }
 
-   }
 
-   function pause(manual = true) {
 
-     if (!isPaused()) {
 
-       interval.pause();
 
-       emit(EVENT_AUTOPLAY_PAUSE);
 
-     }
 
-     paused = manual;
 
-   }
 
-   function autoToggle() {
 
-     if (!paused) {
 
-       if (!hovered && !focused) {
 
-         play();
 
-       } else {
 
-         pause(false);
 
-       }
 
-     }
 
-   }
 
-   function update(rate) {
 
-     const { bar } = Elements;
 
-     if (bar) {
 
-       style(bar, { width: `${rate * 100}%` });
 
-     }
 
-     emit(EVENT_AUTOPLAY_PLAYING, rate);
 
-   }
 
-   return {
 
-     mount,
 
-     destroy: interval.cancel,
 
-     play,
 
-     pause,
 
-     isPaused
 
-   };
 
- }
 
- function Cover(Splide2, Components2, options) {
 
-   const { on } = EventInterface(Splide2);
 
-   function mount() {
 
-     if (options.cover) {
 
-       on(EVENT_LAZYLOAD_LOADED, (img, Slide) => {
 
-         toggle(true, img, Slide);
 
-       });
 
-       on([EVENT_MOUNTED, EVENT_UPDATED, EVENT_REFRESH], apply.bind(null, true));
 
-     }
 
-   }
 
-   function destroy() {
 
-     apply(false);
 
-   }
 
-   function apply(cover) {
 
-     Components2.Slides.forEach((Slide) => {
 
-       const img = child(Slide.container || Slide.slide, "img");
 
-       if (img && img.src) {
 
-         toggle(cover, img, Slide);
 
-       }
 
-     });
 
-   }
 
-   function toggle(cover, img, Slide) {
 
-     Slide.rule("background", cover ? `center/cover no-repeat url("${img.src}")` : "", true);
 
-     display(img, cover ? "none" : "");
 
-   }
 
-   return {
 
-     mount,
 
-     destroy
 
-   };
 
- }
 
- const BOUNCE_DIFF_THRESHOLD = 10;
 
- const BOUNCE_DURATION = 600;
 
- const FRICTION_FACTOR = 0.6;
 
- const BASE_VELOCITY = 1.5;
 
- const MIN_DURATION = 800;
 
- function Scroll(Splide2, Components2, options) {
 
-   const { on, emit } = EventInterface(Splide2);
 
-   const { Move } = Components2;
 
-   const { getPosition, getLimit, exceededLimit } = Move;
 
-   let interval;
 
-   function mount() {
 
-     on(EVENT_MOVE, clear);
 
-     on([EVENT_UPDATED, EVENT_REFRESH], cancel);
 
-   }
 
-   function scroll(destination, duration, suppressConstraint) {
 
-     const start = getPosition();
 
-     let friction = 1;
 
-     duration = duration || computeDuration(abs(destination - start));
 
-     clear();
 
-     interval = RequestInterval(duration, onScrolled, (rate) => {
 
-       const position = getPosition();
 
-       const target = start + (destination - start) * easing(rate);
 
-       const diff = (target - getPosition()) * friction;
 
-       Move.translate(position + diff);
 
-       if (Splide2.is(SLIDE) && !suppressConstraint && exceededLimit()) {
 
-         friction *= FRICTION_FACTOR;
 
-         if (abs(diff) < BOUNCE_DIFF_THRESHOLD) {
 
-           bounce(exceededLimit(false));
 
-         }
 
-       }
 
-     }, 1);
 
-     emit(EVENT_SCROLL);
 
-     interval.start();
 
-   }
 
-   function bounce(backwards) {
 
-     scroll(getLimit(!backwards), BOUNCE_DURATION, true);
 
-   }
 
-   function onScrolled() {
 
-     emit(EVENT_SCROLLED);
 
-   }
 
-   function computeDuration(distance) {
 
-     return max(distance / BASE_VELOCITY, MIN_DURATION);
 
-   }
 
-   function clear() {
 
-     if (interval) {
 
-       interval.cancel();
 
-     }
 
-   }
 
-   function cancel() {
 
-     if (interval && !interval.isPaused()) {
 
-       clear();
 
-       onScrolled();
 
-     }
 
-   }
 
-   function easing(t) {
 
-     const { easingFunc } = options;
 
-     return easingFunc ? easingFunc(t) : 1 - Math.pow(1 - t, 4);
 
-   }
 
-   return {
 
-     mount,
 
-     destroy: clear,
 
-     scroll,
 
-     cancel
 
-   };
 
- }
 
- const FRICTION = 5;
 
- const LOG_INTERVAL = 50;
 
- const POINTER_DOWN_EVENTS = "touchstart mousedown";
 
- const POINTER_MOVE_EVENTS = "touchmove mousemove";
 
- const POINTER_UP_EVENTS = "touchend touchcancel mouseup mouseleave";
 
- function Drag(Splide2, Components2, options) {
 
-   const { on, emit, bind, unbind } = EventInterface(Splide2);
 
-   const { Move, Scroll, Controller } = Components2;
 
-   const { track } = Components2.Elements;
 
-   const { resolve, orient } = Components2.Direction;
 
-   const { getPosition, exceededLimit } = Move;
 
-   const isSlide = Splide2.is(SLIDE);
 
-   const isFade = Splide2.is(FADE);
 
-   let basePosition;
 
-   let baseEvent;
 
-   let prevBaseEvent;
 
-   let lastEvent;
 
-   let isFree;
 
-   let isDragging;
 
-   let isMouse;
 
-   let hasExceeded = false;
 
-   let clickPrevented;
 
-   let disabled;
 
-   let target;
 
-   function mount() {
 
-     bind(track, POINTER_DOWN_EVENTS, onPointerDown, { passive: false, capture: true });
 
-     bind(track, "click", onClick, { capture: true });
 
-     on([EVENT_MOUNTED, EVENT_UPDATED], init);
 
-   }
 
-   function init() {
 
-     const { drag } = options;
 
-     disable(!drag);
 
-     isFree = drag === "free";
 
-   }
 
-   function onPointerDown(e) {
 
-     if (!disabled) {
 
-       isMouse = e.type === "mousedown";
 
-       if (!isMouse || !e.button) {
 
-         if (!Move.isBusy()) {
 
-           target = isMouse ? window : track;
 
-           prevBaseEvent = null;
 
-           lastEvent = null;
 
-           clickPrevented = false;
 
-           bind(target, POINTER_MOVE_EVENTS, onPointerMove);
 
-           bind(target, POINTER_UP_EVENTS, onPointerUp);
 
-           Move.cancel();
 
-           Scroll.cancel();
 
-           save(e);
 
-         } else {
 
-           prevent(e, true);
 
-         }
 
-       }
 
-     }
 
-   }
 
-   function onPointerMove(e) {
 
-     if (!lastEvent) {
 
-       clickPrevented = true;
 
-       emit(EVENT_DRAG);
 
-     }
 
-     lastEvent = e;
 
-     if (e.cancelable) {
 
-       if (isDragging) {
 
-         const expired = timeOf(e) - timeOf(baseEvent) > LOG_INTERVAL;
 
-         const exceeded = hasExceeded !== (hasExceeded = exceededLimit());
 
-         if (expired || exceeded) {
 
-           save(e);
 
-         }
 
-         if (!isFade) {
 
-           Move.translate(basePosition + constrain(coordOf(e) - coordOf(baseEvent)));
 
-         }
 
-         emit(EVENT_DRAGGING);
 
-         prevent(e);
 
-       } else {
 
-         const threshold = options.dragMinThreshold || 15;
 
-         isDragging = isMouse || abs(coordOf(e) - coordOf(baseEvent)) > threshold;
 
-         if (isSliderDirection()) {
 
-           prevent(e);
 
-         }
 
-       }
 
-     }
 
-   }
 
-   function onPointerUp(e) {
 
-     unbind(target, `${POINTER_MOVE_EVENTS} ${POINTER_UP_EVENTS}`);
 
-     if (lastEvent) {
 
-       if (isDragging || e.cancelable && isSliderDirection()) {
 
-         const velocity = computeVelocity(e);
 
-         const destination = computeDestination(velocity);
 
-         if (isFree) {
 
-           Scroll.scroll(destination);
 
-         } else if (isFade) {
 
-           Controller.go(Splide2.index + orient(sign(velocity)));
 
-         } else {
 
-           Controller.go(computeIndex(destination), true);
 
-         }
 
-         prevent(e);
 
-       }
 
-       emit(EVENT_DRAGGED);
 
-     }
 
-     isDragging = false;
 
-   }
 
-   function save(e) {
 
-     prevBaseEvent = baseEvent;
 
-     baseEvent = e;
 
-     basePosition = getPosition();
 
-   }
 
-   function onClick(e) {
 
-     if (!disabled && clickPrevented) {
 
-       prevent(e, true);
 
-     }
 
-   }
 
-   function isSliderDirection() {
 
-     const diffX = abs(coordOf(lastEvent) - coordOf(baseEvent));
 
-     const diffY = abs(coordOf(lastEvent, true) - coordOf(baseEvent, true));
 
-     return diffX > diffY;
 
-   }
 
-   function computeVelocity(e) {
 
-     if (Splide2.is(LOOP) || !hasExceeded) {
 
-       const base = baseEvent === lastEvent && prevBaseEvent || baseEvent;
 
-       const diffCoord = coordOf(lastEvent) - coordOf(base);
 
-       const diffTime = timeOf(e) - timeOf(base);
 
-       const isFlick = timeOf(e) - timeOf(lastEvent) < LOG_INTERVAL;
 
-       if (diffTime && isFlick) {
 
-         return diffCoord / diffTime;
 
-       }
 
-     }
 
-     return 0;
 
-   }
 
-   function computeDestination(velocity) {
 
-     return getPosition() + sign(velocity) * min(abs(velocity) * (options.flickPower || 600), isFree ? Infinity : Components2.Layout.listSize() * (options.flickMaxPages || 1));
 
-   }
 
-   function computeIndex(destination) {
 
-     const dest = Move.toIndex(destination);
 
-     return isSlide ? clamp(dest, 0, Controller.getEnd()) : dest;
 
-   }
 
-   function coordOf(e, orthogonal) {
 
-     const prop = `page${resolve(orthogonal ? "Y" : "X")}`;
 
-     return (isMouse ? e : e.touches[0])[prop];
 
-   }
 
-   function timeOf(e) {
 
-     return e.timeStamp;
 
-   }
 
-   function constrain(diff) {
 
-     return diff / (hasExceeded && isSlide ? FRICTION : 1);
 
-   }
 
-   function disable(value) {
 
-     disabled = value;
 
-   }
 
-   return {
 
-     mount,
 
-     disable
 
-   };
 
- }
 
- const IE_ARROW_KEYS = ["Left", "Right", "Up", "Down"];
 
- function Keyboard(Splide2, Components2, options) {
 
-   const { on, bind, unbind } = EventInterface(Splide2);
 
-   const { root } = Components2.Elements;
 
-   const { resolve } = Components2.Direction;
 
-   let target;
 
-   function mount() {
 
-     init();
 
-     on(EVENT_UPDATED, () => {
 
-       destroy();
 
-       init();
 
-     });
 
-   }
 
-   function init() {
 
-     const { keyboard = "global" } = options;
 
-     if (keyboard) {
 
-       if (keyboard === "focused") {
 
-         target = root;
 
-         setAttribute(root, TAB_INDEX, 0);
 
-       } else {
 
-         target = window;
 
-       }
 
-       bind(target, "keydown", onKeydown);
 
-     }
 
-   }
 
-   function destroy() {
 
-     unbind(target, "keydown");
 
-     if (isHTMLElement(target)) {
 
-       removeAttribute(target, TAB_INDEX);
 
-     }
 
-   }
 
-   function onKeydown(e) {
 
-     const { key } = e;
 
-     const normalizedKey = includes(IE_ARROW_KEYS, key) ? `Arrow${key}` : key;
 
-     if (normalizedKey === resolve("ArrowLeft")) {
 
-       Splide2.go("<");
 
-     } else if (normalizedKey === resolve("ArrowRight")) {
 
-       Splide2.go(">");
 
-     }
 
-   }
 
-   return {
 
-     mount,
 
-     destroy
 
-   };
 
- }
 
- const SRC_DATA_ATTRIBUTE = `${DATA_ATTRIBUTE}-lazy`;
 
- const SRCSET_DATA_ATTRIBUTE = `${SRC_DATA_ATTRIBUTE}-srcset`;
 
- const IMAGE_SELECTOR = `[${SRC_DATA_ATTRIBUTE}], [${SRCSET_DATA_ATTRIBUTE}]`;
 
- function LazyLoad(Splide2, Components2, options) {
 
-   const { on, off, bind, emit } = EventInterface(Splide2);
 
-   const isSequential = options.lazyLoad === "sequential";
 
-   let images = [];
 
-   let index = 0;
 
-   function mount() {
 
-     if (options.lazyLoad) {
 
-       on([EVENT_MOUNTED, EVENT_REFRESH], () => {
 
-         destroy();
 
-         init();
 
-       });
 
-       if (!isSequential) {
 
-         on([EVENT_MOUNTED, EVENT_REFRESH, EVENT_MOVED], observe);
 
-       }
 
-     }
 
-   }
 
-   function init() {
 
-     Components2.Slides.forEach((_Slide) => {
 
-       queryAll(_Slide.slide, IMAGE_SELECTOR).forEach((_img) => {
 
-         const src = getAttribute(_img, SRC_DATA_ATTRIBUTE);
 
-         const srcset = getAttribute(_img, SRCSET_DATA_ATTRIBUTE);
 
-         if (src !== _img.src || srcset !== _img.srcset) {
 
-           const _spinner = create("span", options.classes.spinner, _img.parentElement);
 
-           setAttribute(_spinner, ROLE, "presentation");
 
-           images.push({ _img, _Slide, src, srcset, _spinner });
 
-           display(_img, "none");
 
-         }
 
-       });
 
-     });
 
-     if (isSequential) {
 
-       loadNext();
 
-     }
 
-   }
 
-   function destroy() {
 
-     index = 0;
 
-     images = [];
 
-   }
 
-   function observe() {
 
-     images = images.filter((data) => {
 
-       if (data._Slide.isWithin(Splide2.index, options.perPage * ((options.preloadPages || 1) + 1))) {
 
-         return load(data);
 
-       }
 
-       return true;
 
-     });
 
-     if (!images.length) {
 
-       off(EVENT_MOVED);
 
-     }
 
-   }
 
-   function load(data) {
 
-     const { _img } = data;
 
-     addClass(data._Slide.slide, CLASS_LOADING);
 
-     bind(_img, "load error", (e) => {
 
-       onLoad(data, e.type === "error");
 
-     });
 
-     ["src", "srcset"].forEach((name) => {
 
-       if (data[name]) {
 
-         setAttribute(_img, name, data[name]);
 
-         removeAttribute(_img, name === "src" ? SRC_DATA_ATTRIBUTE : SRCSET_DATA_ATTRIBUTE);
 
-       }
 
-     });
 
-   }
 
-   function onLoad(data, error) {
 
-     const { _Slide } = data;
 
-     removeClass(_Slide.slide, CLASS_LOADING);
 
-     if (!error) {
 
-       remove(data._spinner);
 
-       display(data._img, "");
 
-       emit(EVENT_LAZYLOAD_LOADED, data._img, _Slide);
 
-       emit(EVENT_RESIZE);
 
-     }
 
-     if (isSequential) {
 
-       loadNext();
 
-     }
 
-   }
 
-   function loadNext() {
 
-     if (index < images.length) {
 
-       load(images[index++]);
 
-     }
 
-   }
 
-   return {
 
-     mount,
 
-     destroy
 
-   };
 
- }
 
- function Pagination(Splide2, Components2, options) {
 
-   const { on, emit, bind, unbind } = EventInterface(Splide2);
 
-   const { Slides, Elements, Controller } = Components2;
 
-   const { hasFocus, getIndex } = Controller;
 
-   const items = [];
 
-   let list;
 
-   function mount() {
 
-     init();
 
-     on([EVENT_UPDATED, EVENT_REFRESH], init);
 
-     on([EVENT_MOVE, EVENT_SCROLLED], update);
 
-   }
 
-   function init() {
 
-     destroy();
 
-     if (options.pagination && Slides.isEnough()) {
 
-       createPagination();
 
-       emit(EVENT_PAGINATION_MOUNTED, { list, items }, getAt(Splide2.index));
 
-       update();
 
-     }
 
-   }
 
-   function destroy() {
 
-     if (list) {
 
-       remove(list);
 
-       items.forEach((item) => {
 
-         unbind(item.button, "click");
 
-       });
 
-       empty(items);
 
-       list = null;
 
-     }
 
-   }
 
-   function createPagination() {
 
-     const { length } = Splide2;
 
-     const { classes, i18n, perPage } = options;
 
-     const parent = options.pagination === "slider" && Elements.slider || Elements.root;
 
-     const max = hasFocus() ? length : ceil(length / perPage);
 
-     list = create("ul", classes.pagination, parent);
 
-     for (let i = 0; i < max; i++) {
 
-       const li = create("li", null, list);
 
-       const button = create("button", { class: classes.page, type: "button" }, li);
 
-       const controls = Slides.getIn(i).map((Slide) => Slide.slide.id);
 
-       const text = !hasFocus() && perPage > 1 ? i18n.pageX : i18n.slideX;
 
-       bind(button, "click", onClick.bind(null, i));
 
-       setAttribute(button, ARIA_CONTROLS, controls.join(" "));
 
-       setAttribute(button, ARIA_LABEL, format(text, i + 1));
 
-       items.push({ li, button, page: i });
 
-     }
 
-   }
 
-   function onClick(page) {
 
-     Controller.go(`>${page}`, true, () => {
 
-       const Slide = Slides.getAt(Controller.toIndex(page));
 
-       Slide && Slide.slide.focus();
 
-     });
 
-   }
 
-   function getAt(index) {
 
-     return items[Controller.toPage(index)];
 
-   }
 
-   function update() {
 
-     const prev = getAt(getIndex(true));
 
-     const curr = getAt(getIndex());
 
-     if (prev) {
 
-       removeClass(prev.button, CLASS_ACTIVE);
 
-       removeAttribute(prev.button, ARIA_CURRENT);
 
-     }
 
-     if (curr) {
 
-       addClass(curr.button, CLASS_ACTIVE);
 
-       setAttribute(curr.button, ARIA_CURRENT, true);
 
-     }
 
-     emit(EVENT_PAGINATION_UPDATED, { list, items }, prev, curr);
 
-   }
 
-   return {
 
-     items,
 
-     mount,
 
-     destroy,
 
-     getAt
 
-   };
 
- }
 
- const TRIGGER_KEYS = [" ", "Enter", "Spacebar"];
 
- function Sync(Splide2, Components2, options) {
 
-   const { splides } = Splide2;
 
-   const { list } = Components2.Elements;
 
-   function mount() {
 
-     if (options.isNavigation) {
 
-       navigate();
 
-     } else {
 
-       sync();
 
-     }
 
-   }
 
-   function destroy() {
 
-     removeAttribute(list, ALL_ATTRIBUTES);
 
-   }
 
-   function sync() {
 
-     const processed = [];
 
-     splides.concat(Splide2).forEach((splide, index, instances) => {
 
-       EventInterface(splide).on(EVENT_MOVE, (index2, prev, dest) => {
 
-         instances.forEach((instance) => {
 
-           if (instance !== splide && !includes(processed, splide)) {
 
-             processed.push(instance);
 
-             instance.go(instance.is(LOOP) ? dest : index2);
 
-           }
 
-         });
 
-         empty(processed);
 
-       });
 
-     });
 
-   }
 
-   function navigate() {
 
-     const { on, emit } = EventInterface(Splide2);
 
-     on(EVENT_CLICK, onClick);
 
-     on(EVENT_SLIDE_KEYDOWN, onKeydown);
 
-     emit(EVENT_NAVIGATION_MOUNTED, Splide2.splides);
 
-     setAttribute(list, ROLE, "menu");
 
-     setAttribute(list, ARIA_ORIENTATION, options.direction !== TTB ? "horizontal" : null);
 
-   }
 
-   function onClick(Slide) {
 
-     Splide2.go(Slide.index);
 
-   }
 
-   function onKeydown(Slide, e) {
 
-     if (includes(TRIGGER_KEYS, e.key)) {
 
-       onClick(Slide);
 
-       prevent(e);
 
-     }
 
-   }
 
-   return {
 
-     mount,
 
-     destroy
 
-   };
 
- }
 
- function Wheel(Splide2, Components2, options) {
 
-   const { bind } = EventInterface(Splide2);
 
-   function mount() {
 
-     if (options.wheel) {
 
-       bind(Components2.Elements.track, "wheel", onWheel, { passive: false, capture: true });
 
-     }
 
-   }
 
-   function onWheel(e) {
 
-     const { deltaY } = e;
 
-     if (deltaY) {
 
-       Splide2.go(deltaY < 0 ? "<" : ">");
 
-       prevent(e);
 
-     }
 
-   }
 
-   return {
 
-     mount
 
-   };
 
- }
 
- var ComponentConstructors = /*#__PURE__*/Object.freeze({
 
-   __proto__: null,
 
-   Options: Options,
 
-   Direction: Direction,
 
-   Elements: Elements,
 
-   Style: Style$1,
 
-   Slides: Slides,
 
-   Clones: Clones,
 
-   Layout: Layout,
 
-   Move: Move,
 
-   Controller: Controller,
 
-   Arrows: Arrows,
 
-   Autoplay: Autoplay,
 
-   Cover: Cover,
 
-   Scroll: Scroll,
 
-   Drag: Drag,
 
-   Keyboard: Keyboard,
 
-   LazyLoad: LazyLoad,
 
-   Pagination: Pagination,
 
-   Sync: Sync,
 
-   Wheel: Wheel
 
- });
 
- const I18N = {
 
-   prev: "Previous slide",
 
-   next: "Next slide",
 
-   first: "Go to first slide",
 
-   last: "Go to last slide",
 
-   slideX: "Go to slide %s",
 
-   pageX: "Go to page %s",
 
-   play: "Start autoplay",
 
-   pause: "Pause autoplay"
 
- };
 
- const DEFAULTS = {
 
-   type: "slide",
 
-   speed: 400,
 
-   waitForTransition: true,
 
-   perPage: 1,
 
-   arrows: true,
 
-   pagination: true,
 
-   interval: 5e3,
 
-   pauseOnHover: true,
 
-   pauseOnFocus: true,
 
-   resetProgress: true,
 
-   easing: "cubic-bezier(.42,.65,.27,.99)",
 
-   drag: true,
 
-   direction: "ltr",
 
-   slideFocus: true,
 
-   trimSpace: true,
 
-   focusableNodes: "a, button, textarea, input, select, iframe",
 
-   classes: CLASSES,
 
-   i18n: I18N
 
- };
 
- function Fade(Splide2, Components2, options) {
 
-   const { on } = EventInterface(Splide2);
 
-   const { ruleBy } = Components2.Style;
 
-   function mount() {
 
-     on([EVENT_MOUNTED, EVENT_REFRESH], () => {
 
-       nextTick(() => {
 
-         Components2.Slides.forEach((Slide) => {
 
-           ruleBy(Slide.slide, "transition", `opacity ${options.speed}ms ${options.easing}`);
 
-         });
 
-       });
 
-     });
 
-   }
 
-   function start(index, done) {
 
-     const { track } = Components2.Elements;
 
-     ruleBy(track, "height", unit(rect(track).height));
 
-     nextTick(() => {
 
-       done();
 
-       ruleBy(track, "height", "");
 
-     });
 
-   }
 
-   return {
 
-     mount,
 
-     start,
 
-     cancel: noop
 
-   };
 
- }
 
- function Slide(Splide2, Components2, options) {
 
-   const { bind } = EventInterface(Splide2);
 
-   const { Move, Controller } = Components2;
 
-   const { list } = Components2.Elements;
 
-   let endCallback;
 
-   function mount() {
 
-     bind(list, "transitionend", (e) => {
 
-       if (e.target === list && endCallback) {
 
-         cancel();
 
-         endCallback();
 
-       }
 
-     });
 
-   }
 
-   function start(index, done) {
 
-     const destination = Move.toPosition(index, true);
 
-     const position = Move.getPosition();
 
-     const speed = getSpeed(index);
 
-     if (abs(destination - position) >= 1 && speed >= 1) {
 
-       apply(`transform ${speed}ms ${options.easing}`);
 
-       Move.translate(destination);
 
-       endCallback = done;
 
-     } else {
 
-       Move.jump(index);
 
-       done();
 
-     }
 
-   }
 
-   function cancel() {
 
-     apply("");
 
-   }
 
-   function getSpeed(index) {
 
-     const { rewindSpeed } = options;
 
-     if (Splide2.is(SLIDE) && rewindSpeed) {
 
-       const prev = Controller.getIndex(true);
 
-       const end = Controller.getEnd();
 
-       if (prev === 0 && index >= end || prev >= end && index === 0) {
 
-         return rewindSpeed;
 
-       }
 
-     }
 
-     return options.speed;
 
-   }
 
-   function apply(transition) {
 
-     Components2.Style.ruleBy(list, "transition", transition);
 
-   }
 
-   return {
 
-     mount,
 
-     start,
 
-     cancel
 
-   };
 
- }
 
- const _Splide = class {
 
-   constructor(target, options) {
 
-     this.event = EventBus();
 
-     this.Components = {};
 
-     this.state = State(CREATED);
 
-     this.splides = [];
 
-     this._options = {};
 
-     this._Extensions = {};
 
-     const root = isString(target) ? query(document, target) : target;
 
-     assert(root, `${root} is invalid.`);
 
-     this.root = root;
 
-     merge(DEFAULTS, _Splide.defaults);
 
-     merge(merge(this._options, DEFAULTS), options || {});
 
-   }
 
-   mount(Extensions, Transition) {
 
-     const { state, Components: Components2 } = this;
 
-     assert(state.is([CREATED, DESTROYED]), "Already mounted!");
 
-     state.set(CREATED);
 
-     this._Components = Components2;
 
-     this._Transition = Transition || this._Transition || (this.is(FADE) ? Fade : Slide);
 
-     this._Extensions = Extensions || this._Extensions;
 
-     const Constructors = assign({}, ComponentConstructors, this._Extensions, { Transition: this._Transition });
 
-     forOwn(Constructors, (Component, key) => {
 
-       const component = Component(this, Components2, this._options);
 
-       Components2[key] = component;
 
-       component.setup && component.setup();
 
-     });
 
-     forOwn(Components2, (component) => {
 
-       component.mount && component.mount();
 
-     });
 
-     this.emit(EVENT_MOUNTED);
 
-     addClass(this.root, CLASS_INITIALIZED);
 
-     state.set(IDLE);
 
-     this.emit(EVENT_READY);
 
-     return this;
 
-   }
 
-   sync(splide) {
 
-     this.splides.push(splide);
 
-     splide.splides.push(this);
 
-     return this;
 
-   }
 
-   go(control) {
 
-     this._Components.Controller.go(control);
 
-     return this;
 
-   }
 
-   on(events, callback) {
 
-     this.event.on(events, callback, null, DEFAULT_USER_EVENT_PRIORITY);
 
-     return this;
 
-   }
 
-   off(events) {
 
-     this.event.off(events);
 
-     return this;
 
-   }
 
-   emit(event) {
 
-     this.event.emit(event, ...slice(arguments, 1));
 
-     return this;
 
-   }
 
-   add(slides, index) {
 
-     this._Components.Slides.add(slides, index);
 
-     return this;
 
-   }
 
-   remove(matcher) {
 
-     this._Components.Slides.remove(matcher);
 
-     return this;
 
-   }
 
-   is(type) {
 
-     return this._options.type === type;
 
-   }
 
-   refresh() {
 
-     this.emit(EVENT_REFRESH);
 
-     return this;
 
-   }
 
-   destroy(completely) {
 
-     const { event, state } = this;
 
-     if (state.is(CREATED)) {
 
-       event.on(EVENT_READY, this.destroy.bind(this, completely), this);
 
-     } else {
 
-       forOwn(this._Components, (component) => {
 
-         component.destroy && component.destroy(completely);
 
-       });
 
-       event.emit(EVENT_DESTROY);
 
-       event.destroy();
 
-       empty(this.splides);
 
-       state.set(DESTROYED);
 
-     }
 
-     return this;
 
-   }
 
-   get options() {
 
-     return this._options;
 
-   }
 
-   set options(options) {
 
-     const { _options } = this;
 
-     merge(_options, options);
 
-     if (!this.state.is(CREATED)) {
 
-       this.emit(EVENT_UPDATED, _options);
 
-     }
 
-   }
 
-   get length() {
 
-     return this._Components.Slides.getLength(true);
 
-   }
 
-   get index() {
 
-     return this._Components.Controller.getIndex();
 
-   }
 
- };
 
- let Splide = _Splide;
 
- Splide.defaults = {};
 
- Splide.STATES = STATES;
 
- const CLASS_RENDERED = "is-rendered";
 
- const RENDERER_DEFAULT_CONFIG = {
 
-   listTag: "ul",
 
-   slideTag: "li"
 
- };
 
- class Style {
 
-   constructor(id, options) {
 
-     this.styles = {};
 
-     this.id = id;
 
-     this.options = options;
 
-   }
 
-   rule(selector, prop, value, breakpoint) {
 
-     breakpoint = breakpoint || "default";
 
-     const selectors = this.styles[breakpoint] = this.styles[breakpoint] || {};
 
-     const styles = selectors[selector] = selectors[selector] || {};
 
-     styles[prop] = value;
 
-   }
 
-   build() {
 
-     let css = "";
 
-     if (this.styles.default) {
 
-       css += this.buildSelectors(this.styles.default);
 
-     }
 
-     Object.keys(this.styles).sort((n, m) => this.options.mediaQuery === "min" ? +n - +m : +m - +n).forEach((breakpoint) => {
 
-       if (breakpoint !== "default") {
 
-         css += `@media screen and (max-width: ${breakpoint}px) {`;
 
-         css += this.buildSelectors(this.styles[breakpoint]);
 
-         css += `}`;
 
-       }
 
-     });
 
-     return css;
 
-   }
 
-   buildSelectors(selectors) {
 
-     let css = "";
 
-     forOwn(selectors, (styles, selector) => {
 
-       css += `#${this.id} ${selector} {`;
 
-       forOwn(styles, (value, prop) => {
 
-         if (value || value === 0) {
 
-           css += `${prop}: ${value};`;
 
-         }
 
-       });
 
-       css += "}";
 
-     });
 
-     return css;
 
-   }
 
- }
 
- class SplideRenderer {
 
-   constructor(contents, options, config, defaults) {
 
-     this.slides = [];
 
-     this.options = {};
 
-     this.breakpoints = [];
 
-     merge(DEFAULTS, defaults || {});
 
-     merge(merge(this.options, DEFAULTS), options || {});
 
-     this.contents = contents;
 
-     this.config = assign({}, RENDERER_DEFAULT_CONFIG, config || {});
 
-     this.id = this.config.id || uniqueId("splide");
 
-     this.Style = new Style(this.id, this.options);
 
-     this.Direction = Direction(null, null, this.options);
 
-     assert(this.contents.length, "Provide at least 1 content.");
 
-     this.init();
 
-   }
 
-   static clean(splide) {
 
-     const { on } = EventInterface(splide);
 
-     const { root } = splide;
 
-     const clones = queryAll(root, `.${CLASS_CLONE}`);
 
-     on(EVENT_MOUNTED, () => {
 
-       remove(child(root, "style"));
 
-     });
 
-     remove(clones);
 
-   }
 
-   init() {
 
-     this.parseBreakpoints();
 
-     this.initSlides();
 
-     this.registerRootStyles();
 
-     this.registerTrackStyles();
 
-     this.registerSlideStyles();
 
-     this.registerListStyles();
 
-   }
 
-   initSlides() {
 
-     push(this.slides, this.contents.map((content, index) => {
 
-       content = isString(content) ? { html: content } : content;
 
-       content.styles = content.styles || {};
 
-       content.attrs = content.attrs || {};
 
-       this.cover(content);
 
-       const classes = `${this.options.classes.slide} ${index === 0 ? CLASS_ACTIVE : ""}`;
 
-       assign(content.attrs, {
 
-         class: `${classes} ${content.attrs.class || ""}`.trim(),
 
-         style: this.buildStyles(content.styles)
 
-       });
 
-       return content;
 
-     }));
 
-     if (this.isLoop()) {
 
-       this.generateClones(this.slides);
 
-     }
 
-   }
 
-   registerRootStyles() {
 
-     this.breakpoints.forEach(([width, options]) => {
 
-       this.Style.rule(" ", "max-width", unit(options.width), width);
 
-     });
 
-   }
 
-   registerTrackStyles() {
 
-     const { Style: Style2 } = this;
 
-     const selector = `.${CLASS_TRACK}`;
 
-     this.breakpoints.forEach(([width, options]) => {
 
-       Style2.rule(selector, this.resolve("paddingLeft"), this.cssPadding(options, false), width);
 
-       Style2.rule(selector, this.resolve("paddingRight"), this.cssPadding(options, true), width);
 
-       Style2.rule(selector, "height", this.cssTrackHeight(options), width);
 
-     });
 
-   }
 
-   registerListStyles() {
 
-     const { Style: Style2 } = this;
 
-     const selector = `.${CLASS_LIST}`;
 
-     this.breakpoints.forEach(([width, options]) => {
 
-       Style2.rule(selector, "transform", this.buildTranslate(options), width);
 
-     });
 
-   }
 
-   registerSlideStyles() {
 
-     const { Style: Style2 } = this;
 
-     const selector = `.${CLASS_SLIDE}`;
 
-     this.breakpoints.forEach(([width, options]) => {
 
-       Style2.rule(selector, "width", this.cssSlideWidth(options), width);
 
-       Style2.rule(selector, this.resolve("marginRight"), unit(options.gap) || "0px", width);
 
-       const height = this.cssSlideHeight(options);
 
-       if (height) {
 
-         Style2.rule(selector, "height", height, width);
 
-       } else {
 
-         Style2.rule(selector, "padding-top", this.cssSlidePadding(options), width);
 
-       }
 
-       Style2.rule(`${selector} > img`, "display", options.cover ? "none" : "inline", width);
 
-     });
 
-   }
 
-   buildTranslate(options) {
 
-     const { resolve, orient } = this.Direction;
 
-     const values = [];
 
-     values.push(this.cssOffsetClones(options));
 
-     values.push(this.cssOffsetGaps(options));
 
-     if (this.isCenter(options)) {
 
-       values.push(this.buildCssValue(orient(-50), "%"));
 
-       values.push(...this.cssOffsetCenter(options));
 
-     }
 
-     return values.filter(Boolean).map((value) => `translate${resolve("X")}(${value})`).join(" ");
 
-   }
 
-   cssOffsetClones(options) {
 
-     const { resolve, orient } = this.Direction;
 
-     const cloneCount = this.getCloneCount();
 
-     if (this.isFixedWidth(options)) {
 
-       const { value, unit: unit2 } = this.parseCssValue(options[resolve("fixedWidth")]);
 
-       return this.buildCssValue(orient(value) * cloneCount, unit2);
 
-     }
 
-     const percent = 100 * cloneCount / options.perPage;
 
-     return `${orient(percent)}%`;
 
-   }
 
-   cssOffsetCenter(options) {
 
-     const { resolve, orient } = this.Direction;
 
-     if (this.isFixedWidth(options)) {
 
-       const { value, unit: unit2 } = this.parseCssValue(options[resolve("fixedWidth")]);
 
-       return [this.buildCssValue(orient(value / 2), unit2)];
 
-     }
 
-     const values = [];
 
-     const { perPage, gap } = options;
 
-     values.push(`${orient(50 / perPage)}%`);
 
-     if (gap) {
 
-       const { value, unit: unit2 } = this.parseCssValue(gap);
 
-       const gapOffset = (value / perPage - value) / 2;
 
-       values.push(this.buildCssValue(orient(gapOffset), unit2));
 
-     }
 
-     return values;
 
-   }
 
-   cssOffsetGaps(options) {
 
-     const cloneCount = this.getCloneCount();
 
-     if (cloneCount && options.gap) {
 
-       const { orient } = this.Direction;
 
-       const { value, unit: unit2 } = this.parseCssValue(options.gap);
 
-       if (this.isFixedWidth(options)) {
 
-         return this.buildCssValue(orient(value * cloneCount), unit2);
 
-       }
 
-       const { perPage } = options;
 
-       const gaps = cloneCount / perPage;
 
-       return this.buildCssValue(orient(gaps * value), unit2);
 
-     }
 
-     return "";
 
-   }
 
-   resolve(prop) {
 
-     return camelToKebab(this.Direction.resolve(prop));
 
-   }
 
-   cssPadding(options, right) {
 
-     const { padding } = options;
 
-     const prop = this.Direction.resolve(right ? "right" : "left", true);
 
-     return padding && unit(padding[prop] || (isObject(padding) ? 0 : padding)) || "0px";
 
-   }
 
-   cssTrackHeight(options) {
 
-     let height = "";
 
-     if (this.isVertical()) {
 
-       height = this.cssHeight(options);
 
-       assert(height, '"height" is missing.');
 
-       height = `calc(${height} - ${this.cssPadding(options, false)} - ${this.cssPadding(options, true)})`;
 
-     }
 
-     return height;
 
-   }
 
-   cssHeight(options) {
 
-     return unit(options.height);
 
-   }
 
-   cssSlideWidth(options) {
 
-     return options.autoWidth ? "" : unit(options.fixedWidth) || (this.isVertical() ? "" : this.cssSlideSize(options));
 
-   }
 
-   cssSlideHeight(options) {
 
-     return unit(options.fixedHeight) || (this.isVertical() ? options.autoHeight ? "" : this.cssSlideSize(options) : this.cssHeight(options));
 
-   }
 
-   cssSlideSize(options) {
 
-     const gap = unit(options.gap);
 
-     return `calc((100%${gap && ` + ${gap}`})/${options.perPage || 1}${gap && ` - ${gap}`})`;
 
-   }
 
-   cssSlidePadding(options) {
 
-     const { heightRatio } = options;
 
-     return heightRatio ? `${heightRatio * 100}%` : "";
 
-   }
 
-   buildCssValue(value, unit2) {
 
-     return `${value}${unit2}`;
 
-   }
 
-   parseCssValue(value) {
 
-     if (isString(value)) {
 
-       const number = parseFloat(value) || 0;
 
-       const unit2 = value.replace(/\d*(\.\d*)?/, "") || "px";
 
-       return { value: number, unit: unit2 };
 
-     }
 
-     return { value, unit: "px" };
 
-   }
 
-   parseBreakpoints() {
 
-     const { breakpoints } = this.options;
 
-     this.breakpoints.push(["default", this.options]);
 
-     if (breakpoints) {
 
-       forOwn(breakpoints, (options, width) => {
 
-         this.breakpoints.push([width, merge(merge({}, this.options), options)]);
 
-       });
 
-     }
 
-   }
 
-   isFixedWidth(options) {
 
-     return !!options[this.Direction.resolve("fixedWidth")];
 
-   }
 
-   isLoop() {
 
-     return this.options.type === LOOP;
 
-   }
 
-   isCenter(options) {
 
-     if (options.focus === "center") {
 
-       if (this.isLoop()) {
 
-         return true;
 
-       }
 
-       if (this.options.type === SLIDE) {
 
-         return !this.options.trimSpace;
 
-       }
 
-     }
 
-     return false;
 
-   }
 
-   isVertical() {
 
-     return this.options.direction === TTB;
 
-   }
 
-   buildClasses() {
 
-     const { options } = this;
 
-     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(" ");
 
-   }
 
-   buildAttrs(attrs) {
 
-     let attr = "";
 
-     forOwn(attrs, (value, key) => {
 
-       attr += value ? ` ${camelToKebab(key)}="${value}"` : "";
 
-     });
 
-     return attr.trim();
 
-   }
 
-   buildStyles(styles) {
 
-     let style = "";
 
-     forOwn(styles, (value, key) => {
 
-       style += ` ${camelToKebab(key)}:${value};`;
 
-     });
 
-     return style.trim();
 
-   }
 
-   renderSlides() {
 
-     const { slideTag: tag } = this.config;
 
-     return this.slides.map((content) => {
 
-       return `<${tag} ${this.buildAttrs(content.attrs)}>${content.html || ""}</${tag}>`;
 
-     }).join("");
 
-   }
 
-   cover(content) {
 
-     const { styles, html = "" } = content;
 
-     if (this.options.cover && !this.options.lazyLoad) {
 
-       const src = html.match(/<img.*?src\s*=\s*(['"])(.+?)\1.*?>/);
 
-       if (src && src[2]) {
 
-         styles.background = `center/cover no-repeat url('${src[2]}')`;
 
-       }
 
-     }
 
-   }
 
-   generateClones(contents) {
 
-     const { classes } = this.options;
 
-     const count = this.getCloneCount();
 
-     const slides = contents.slice();
 
-     while (slides.length < count) {
 
-       push(slides, slides);
 
-     }
 
-     push(slides.slice(-count).reverse(), slides.slice(0, count)).forEach((content, index) => {
 
-       const attrs = assign({}, content.attrs, { class: `${content.attrs.class} ${classes.clone}` });
 
-       const clone = assign({}, content, { attrs });
 
-       index < count ? contents.unshift(clone) : contents.push(clone);
 
-     });
 
-   }
 
-   getCloneCount() {
 
-     if (this.isLoop()) {
 
-       const { options } = this;
 
-       if (options.clones) {
 
-         return options.clones;
 
-       }
 
-       const perPage = max(...this.breakpoints.map(([, options2]) => options2.perPage));
 
-       return perPage * ((options.flickMaxPages || 1) + 1);
 
-     }
 
-     return 0;
 
-   }
 
-   renderArrows() {
 
-     let html = "";
 
-     html += `<div class="${this.options.classes.arrows}">`;
 
-     html += this.renderArrow(true);
 
-     html += this.renderArrow(false);
 
-     html += `</div>`;
 
-     return html;
 
-   }
 
-   renderArrow(prev) {
 
-     const { classes, i18n } = this.options;
 
-     const attrs = {
 
-       class: `${classes.arrow} ${prev ? classes.prev : classes.next}`,
 
-       type: "button",
 
-       ariaLabel: prev ? i18n.prev : i18n.next
 
-     };
 
-     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>`;
 
-   }
 
-   html() {
 
-     const { rootClass, listTag, arrows, beforeTrack, afterTrack, slider, beforeSlider, afterSlider } = this.config;
 
-     let html = "";
 
-     html += `<div id="${this.id}" class="${this.buildClasses()} ${rootClass || ""}">`;
 
-     html += `<style>${this.Style.build()}</style>`;
 
-     if (slider) {
 
-       html += beforeSlider || "";
 
-       html += `<div class="splide__slider">`;
 
-     }
 
-     html += beforeTrack || "";
 
-     html += `<div class="splide__track">`;
 
-     html += `<${listTag} class="splide__list">`;
 
-     html += this.renderSlides();
 
-     html += `</${listTag}>`;
 
-     html += `</div>`;
 
-     if (arrows) {
 
-       html += this.renderArrows();
 
-     }
 
-     html += afterTrack || "";
 
-     if (slider) {
 
-       html += `</div>`;
 
-       html += afterSlider || "";
 
-     }
 
-     html += `</div>`;
 
-     return html;
 
-   }
 
- }
 
- exports.CLASSES = CLASSES;
 
- exports.CLASS_ACTIVE = CLASS_ACTIVE;
 
- exports.CLASS_ARROW = CLASS_ARROW;
 
- exports.CLASS_ARROWS = CLASS_ARROWS;
 
- exports.CLASS_ARROW_NEXT = CLASS_ARROW_NEXT;
 
- exports.CLASS_ARROW_PREV = CLASS_ARROW_PREV;
 
- exports.CLASS_AUTOPLAY = CLASS_AUTOPLAY;
 
- exports.CLASS_CLONE = CLASS_CLONE;
 
- exports.CLASS_CONTAINER = CLASS_CONTAINER;
 
- exports.CLASS_INITIALIZED = CLASS_INITIALIZED;
 
- exports.CLASS_LIST = CLASS_LIST;
 
- exports.CLASS_LOADING = CLASS_LOADING;
 
- exports.CLASS_NEXT = CLASS_NEXT;
 
- exports.CLASS_PAGINATION = CLASS_PAGINATION;
 
- exports.CLASS_PAGINATION_PAGE = CLASS_PAGINATION_PAGE;
 
- exports.CLASS_PAUSE = CLASS_PAUSE;
 
- exports.CLASS_PLAY = CLASS_PLAY;
 
- exports.CLASS_PREV = CLASS_PREV;
 
- exports.CLASS_PROGRESS = CLASS_PROGRESS;
 
- exports.CLASS_PROGRESS_BAR = CLASS_PROGRESS_BAR;
 
- exports.CLASS_ROOT = CLASS_ROOT;
 
- exports.CLASS_SLIDE = CLASS_SLIDE;
 
- exports.CLASS_SLIDER = CLASS_SLIDER;
 
- exports.CLASS_SPINNER = CLASS_SPINNER;
 
- exports.CLASS_TRACK = CLASS_TRACK;
 
- exports.CLASS_VISIBLE = CLASS_VISIBLE;
 
- exports.EVENT_ACTIVE = EVENT_ACTIVE;
 
- exports.EVENT_ARROWS_MOUNTED = EVENT_ARROWS_MOUNTED;
 
- exports.EVENT_ARROWS_UPDATED = EVENT_ARROWS_UPDATED;
 
- exports.EVENT_AUTOPLAY_PAUSE = EVENT_AUTOPLAY_PAUSE;
 
- exports.EVENT_AUTOPLAY_PLAY = EVENT_AUTOPLAY_PLAY;
 
- exports.EVENT_AUTOPLAY_PLAYING = EVENT_AUTOPLAY_PLAYING;
 
- exports.EVENT_CLICK = EVENT_CLICK;
 
- exports.EVENT_DESTROY = EVENT_DESTROY;
 
- exports.EVENT_DRAG = EVENT_DRAG;
 
- exports.EVENT_DRAGGED = EVENT_DRAGGED;
 
- exports.EVENT_DRAGGING = EVENT_DRAGGING;
 
- exports.EVENT_HIDDEN = EVENT_HIDDEN;
 
- exports.EVENT_INACTIVE = EVENT_INACTIVE;
 
- exports.EVENT_LAZYLOAD_LOADED = EVENT_LAZYLOAD_LOADED;
 
- exports.EVENT_MOUNTED = EVENT_MOUNTED;
 
- exports.EVENT_MOVE = EVENT_MOVE;
 
- exports.EVENT_MOVED = EVENT_MOVED;
 
- exports.EVENT_NAVIGATION_MOUNTED = EVENT_NAVIGATION_MOUNTED;
 
- exports.EVENT_PAGINATION_MOUNTED = EVENT_PAGINATION_MOUNTED;
 
- exports.EVENT_PAGINATION_UPDATED = EVENT_PAGINATION_UPDATED;
 
- exports.EVENT_READY = EVENT_READY;
 
- exports.EVENT_REFRESH = EVENT_REFRESH;
 
- exports.EVENT_RESIZE = EVENT_RESIZE;
 
- exports.EVENT_RESIZED = EVENT_RESIZED;
 
- exports.EVENT_SCROLL = EVENT_SCROLL;
 
- exports.EVENT_SCROLLED = EVENT_SCROLLED;
 
- exports.EVENT_SLIDE_KEYDOWN = EVENT_SLIDE_KEYDOWN;
 
- exports.EVENT_UPDATED = EVENT_UPDATED;
 
- exports.EVENT_VISIBLE = EVENT_VISIBLE;
 
- exports.EventBus = EventBus;
 
- exports.EventInterface = EventInterface;
 
- exports.RequestInterval = RequestInterval;
 
- exports.STATUS_CLASSES = STATUS_CLASSES;
 
- exports.Splide = Splide;
 
- exports.SplideRenderer = SplideRenderer;
 
- exports.State = State;
 
- exports.Throttle = Throttle;
 
- exports['default'] = Splide;
 
 
  |