@tarojs/components-react 3.3.14 → 3.5.0-canary.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/image/index.js +3 -8
- package/dist/image/index.js.map +1 -1
- package/dist/index.js +7 -13
- package/dist/index.js.map +1 -1
- package/dist/pull-down-refresh/index.js +6 -11
- package/dist/pull-down-refresh/index.js.map +1 -1
- package/dist/scroll-view/index.js +3 -8
- package/dist/scroll-view/index.js.map +1 -1
- package/dist/swiper/index.js +153 -158
- package/dist/swiper/index.js.map +1 -1
- package/dist/text/index.js +3 -8
- package/dist/text/index.js.map +1 -1
- package/dist/view/index.js +3 -8
- package/dist/view/index.js.map +1 -1
- package/package.json +5 -5
package/dist/swiper/index.js
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
|
+
import _typeof from '@babel/runtime/helpers/typeof';
|
|
2
|
+
import _assertThisInitialized$1 from '@babel/runtime/helpers/assertThisInitialized';
|
|
3
|
+
import _defineProperty from '@babel/runtime/helpers/defineProperty';
|
|
1
4
|
import _objectSpread from '@babel/runtime/helpers/objectSpread2';
|
|
2
5
|
import _objectWithoutProperties from '@babel/runtime/helpers/objectWithoutProperties';
|
|
3
6
|
import _classCallCheck from '@babel/runtime/helpers/classCallCheck';
|
|
4
7
|
import _createClass$1 from '@babel/runtime/helpers/createClass';
|
|
5
|
-
import _assertThisInitialized$1 from '@babel/runtime/helpers/assertThisInitialized';
|
|
6
8
|
import _inherits from '@babel/runtime/helpers/inherits';
|
|
7
|
-
import
|
|
8
|
-
import _getPrototypeOf$1 from '@babel/runtime/helpers/getPrototypeOf';
|
|
9
|
-
import _defineProperty from '@babel/runtime/helpers/defineProperty';
|
|
10
|
-
import { s as styleInject, c as classNames } from '../index.js';
|
|
9
|
+
import _createSuper from '@babel/runtime/helpers/createSuper';
|
|
11
10
|
import '../weui.js';
|
|
12
11
|
import React from 'react';
|
|
13
|
-
import
|
|
12
|
+
import { s as styleInject, c as classNames } from '../index.js';
|
|
14
13
|
|
|
15
14
|
/**
|
|
16
15
|
* SSR Window 3.0.0
|
|
@@ -25,11 +24,11 @@ import _typeof from '@babel/runtime/helpers/typeof';
|
|
|
25
24
|
*/
|
|
26
25
|
|
|
27
26
|
/* eslint-disable no-param-reassign */
|
|
28
|
-
function isObject(obj) {
|
|
27
|
+
function isObject$1(obj) {
|
|
29
28
|
return obj !== null && _typeof(obj) === 'object' && 'constructor' in obj && obj.constructor === Object;
|
|
30
29
|
}
|
|
31
30
|
|
|
32
|
-
function extend(target, src) {
|
|
31
|
+
function extend$1(target, src) {
|
|
33
32
|
if (target === void 0) {
|
|
34
33
|
target = {};
|
|
35
34
|
}
|
|
@@ -39,8 +38,8 @@ function extend(target, src) {
|
|
|
39
38
|
}
|
|
40
39
|
|
|
41
40
|
Object.keys(src).forEach(function (key) {
|
|
42
|
-
if (typeof target[key] === 'undefined') target[key] = src[key];else if (isObject(src[key]) && isObject(target[key]) && Object.keys(src[key]).length > 0) {
|
|
43
|
-
extend(target[key], src[key]);
|
|
41
|
+
if (typeof target[key] === 'undefined') target[key] = src[key];else if (isObject$1(src[key]) && isObject$1(target[key]) && Object.keys(src[key]).length > 0) {
|
|
42
|
+
extend$1(target[key], src[key]);
|
|
44
43
|
}
|
|
45
44
|
});
|
|
46
45
|
}
|
|
@@ -98,7 +97,7 @@ var ssrDocument = {
|
|
|
98
97
|
|
|
99
98
|
function getDocument() {
|
|
100
99
|
var doc = typeof document !== 'undefined' ? document : {};
|
|
101
|
-
extend(doc, ssrDocument);
|
|
100
|
+
extend$1(doc, ssrDocument);
|
|
102
101
|
return doc;
|
|
103
102
|
}
|
|
104
103
|
|
|
@@ -162,7 +161,7 @@ var ssrWindow = {
|
|
|
162
161
|
|
|
163
162
|
function getWindow() {
|
|
164
163
|
var win = typeof window !== 'undefined' ? window : {};
|
|
165
|
-
extend(win, ssrWindow);
|
|
164
|
+
extend$1(win, ssrWindow);
|
|
166
165
|
return win;
|
|
167
166
|
}
|
|
168
167
|
|
|
@@ -496,7 +495,7 @@ function transform(transform) {
|
|
|
496
495
|
return this;
|
|
497
496
|
}
|
|
498
497
|
|
|
499
|
-
function transition(duration) {
|
|
498
|
+
function transition$1(duration) {
|
|
500
499
|
for (var i = 0; i < this.length; i += 1) {
|
|
501
500
|
this[i].style.transitionDuration = typeof duration !== 'string' ? duration + "ms" : duration;
|
|
502
501
|
}
|
|
@@ -679,7 +678,7 @@ function trigger() {
|
|
|
679
678
|
return this;
|
|
680
679
|
}
|
|
681
680
|
|
|
682
|
-
function transitionEnd(callback) {
|
|
681
|
+
function transitionEnd$1(callback) {
|
|
683
682
|
var dom = this;
|
|
684
683
|
|
|
685
684
|
function fireCallBack(e) {
|
|
@@ -1115,11 +1114,11 @@ var Methods = {
|
|
|
1115
1114
|
attr: attr,
|
|
1116
1115
|
removeAttr: removeAttr,
|
|
1117
1116
|
transform: transform,
|
|
1118
|
-
transition: transition,
|
|
1117
|
+
transition: transition$1,
|
|
1119
1118
|
on: on,
|
|
1120
1119
|
off: off,
|
|
1121
1120
|
trigger: trigger,
|
|
1122
|
-
transitionEnd: transitionEnd,
|
|
1121
|
+
transitionEnd: transitionEnd$1,
|
|
1123
1122
|
outerWidth: outerWidth,
|
|
1124
1123
|
outerHeight: outerHeight,
|
|
1125
1124
|
styles: styles,
|
|
@@ -1230,20 +1229,20 @@ function getTranslate(el, axis) {
|
|
|
1230
1229
|
// Latest Chrome and webkits Fix
|
|
1231
1230
|
if (window.WebKitCSSMatrix) curTransform = transformMatrix.m41; // Crazy IE10 Matrix
|
|
1232
1231
|
else if (matrix.length === 16) curTransform = parseFloat(matrix[12]); // Normal Browsers
|
|
1233
|
-
|
|
1232
|
+
else curTransform = parseFloat(matrix[4]);
|
|
1234
1233
|
}
|
|
1235
1234
|
|
|
1236
1235
|
if (axis === 'y') {
|
|
1237
1236
|
// Latest Chrome and webkits Fix
|
|
1238
1237
|
if (window.WebKitCSSMatrix) curTransform = transformMatrix.m42; // Crazy IE10 Matrix
|
|
1239
1238
|
else if (matrix.length === 16) curTransform = parseFloat(matrix[13]); // Normal Browsers
|
|
1240
|
-
|
|
1239
|
+
else curTransform = parseFloat(matrix[5]);
|
|
1241
1240
|
}
|
|
1242
1241
|
|
|
1243
1242
|
return curTransform || 0;
|
|
1244
1243
|
}
|
|
1245
1244
|
|
|
1246
|
-
function isObject
|
|
1245
|
+
function isObject(o) {
|
|
1247
1246
|
return _typeof(o) === 'object' && o !== null && o.constructor && Object.prototype.toString.call(o).slice(8, -1) === 'Object';
|
|
1248
1247
|
}
|
|
1249
1248
|
|
|
@@ -1256,7 +1255,7 @@ function isNode(node) {
|
|
|
1256
1255
|
return node && (node.nodeType === 1 || node.nodeType === 11);
|
|
1257
1256
|
}
|
|
1258
1257
|
|
|
1259
|
-
function extend
|
|
1258
|
+
function extend() {
|
|
1260
1259
|
var to = Object(arguments.length <= 0 ? undefined : arguments[0]);
|
|
1261
1260
|
var noExtend = ['__proto__', 'constructor', 'prototype'];
|
|
1262
1261
|
|
|
@@ -1273,19 +1272,19 @@ function extend$1() {
|
|
|
1273
1272
|
var desc = Object.getOwnPropertyDescriptor(nextSource, nextKey);
|
|
1274
1273
|
|
|
1275
1274
|
if (desc !== undefined && desc.enumerable) {
|
|
1276
|
-
if (isObject
|
|
1275
|
+
if (isObject(to[nextKey]) && isObject(nextSource[nextKey])) {
|
|
1277
1276
|
if (nextSource[nextKey].__swiper__) {
|
|
1278
1277
|
to[nextKey] = nextSource[nextKey];
|
|
1279
1278
|
} else {
|
|
1280
|
-
extend
|
|
1279
|
+
extend(to[nextKey], nextSource[nextKey]);
|
|
1281
1280
|
}
|
|
1282
|
-
} else if (!isObject
|
|
1281
|
+
} else if (!isObject(to[nextKey]) && isObject(nextSource[nextKey])) {
|
|
1283
1282
|
to[nextKey] = {};
|
|
1284
1283
|
|
|
1285
1284
|
if (nextSource[nextKey].__swiper__) {
|
|
1286
1285
|
to[nextKey] = nextSource[nextKey];
|
|
1287
1286
|
} else {
|
|
1288
|
-
extend
|
|
1287
|
+
extend(to[nextKey], nextSource[nextKey]);
|
|
1289
1288
|
}
|
|
1290
1289
|
} else {
|
|
1291
1290
|
to[nextKey] = nextSource[nextKey];
|
|
@@ -1300,7 +1299,7 @@ function extend$1() {
|
|
|
1300
1299
|
|
|
1301
1300
|
function bindModuleMethods(instance, obj) {
|
|
1302
1301
|
Object.keys(obj).forEach(function (key) {
|
|
1303
|
-
if (isObject
|
|
1302
|
+
if (isObject(obj[key])) {
|
|
1304
1303
|
Object.keys(obj[key]).forEach(function (subKey) {
|
|
1305
1304
|
if (typeof obj[key][subKey] === 'function') {
|
|
1306
1305
|
obj[key][subKey] = obj[key][subKey].bind(instance);
|
|
@@ -1472,7 +1471,7 @@ var Resize = {
|
|
|
1472
1471
|
name: 'resize',
|
|
1473
1472
|
create: function create() {
|
|
1474
1473
|
var swiper = this;
|
|
1475
|
-
extend
|
|
1474
|
+
extend(swiper, {
|
|
1476
1475
|
resize: {
|
|
1477
1476
|
observer: null,
|
|
1478
1477
|
createObserver: function createObserver() {
|
|
@@ -1538,8 +1537,8 @@ var Resize = {
|
|
|
1538
1537
|
}
|
|
1539
1538
|
};
|
|
1540
1539
|
|
|
1541
|
-
function _extends() {
|
|
1542
|
-
_extends = Object.assign || function (target) {
|
|
1540
|
+
function _extends$i() {
|
|
1541
|
+
_extends$i = Object.assign || function (target) {
|
|
1543
1542
|
for (var i = 1; i < arguments.length; i++) {
|
|
1544
1543
|
var source = arguments[i];
|
|
1545
1544
|
|
|
@@ -1553,7 +1552,7 @@ function _extends() {
|
|
|
1553
1552
|
return target;
|
|
1554
1553
|
};
|
|
1555
1554
|
|
|
1556
|
-
return _extends.apply(this, arguments);
|
|
1555
|
+
return _extends$i.apply(this, arguments);
|
|
1557
1556
|
}
|
|
1558
1557
|
var Observer = {
|
|
1559
1558
|
attach: function attach(target, options) {
|
|
@@ -1629,7 +1628,7 @@ var Observer$1 = {
|
|
|
1629
1628
|
create: function create() {
|
|
1630
1629
|
var swiper = this;
|
|
1631
1630
|
bindModuleMethods(swiper, {
|
|
1632
|
-
observer: _extends({}, Observer, {
|
|
1631
|
+
observer: _extends$i({}, Observer, {
|
|
1633
1632
|
observers: []
|
|
1634
1633
|
})
|
|
1635
1634
|
});
|
|
@@ -1652,7 +1651,7 @@ var modular = {
|
|
|
1652
1651
|
var module = instance.modules[moduleName]; // Extend params
|
|
1653
1652
|
|
|
1654
1653
|
if (module.params) {
|
|
1655
|
-
extend
|
|
1654
|
+
extend(instanceParams, module.params);
|
|
1656
1655
|
}
|
|
1657
1656
|
});
|
|
1658
1657
|
},
|
|
@@ -1819,7 +1818,7 @@ function updateSize() {
|
|
|
1819
1818
|
height = height - parseInt($el.css('padding-top') || 0, 10) - parseInt($el.css('padding-bottom') || 0, 10);
|
|
1820
1819
|
if (Number.isNaN(width)) width = 0;
|
|
1821
1820
|
if (Number.isNaN(height)) height = 0;
|
|
1822
|
-
extend
|
|
1821
|
+
extend(swiper, {
|
|
1823
1822
|
width: width,
|
|
1824
1823
|
height: height,
|
|
1825
1824
|
size: swiper.isHorizontal() ? width : height
|
|
@@ -2147,7 +2146,7 @@ function updateSlides() {
|
|
|
2147
2146
|
}
|
|
2148
2147
|
}
|
|
2149
2148
|
|
|
2150
|
-
extend
|
|
2149
|
+
extend(swiper, {
|
|
2151
2150
|
slides: slides,
|
|
2152
2151
|
snapGrid: snapGrid,
|
|
2153
2152
|
slidesGrid: slidesGrid,
|
|
@@ -2300,7 +2299,7 @@ function updateProgress(translate) {
|
|
|
2300
2299
|
isEnd = progress >= 1;
|
|
2301
2300
|
}
|
|
2302
2301
|
|
|
2303
|
-
extend
|
|
2302
|
+
extend(swiper, {
|
|
2304
2303
|
progress: progress,
|
|
2305
2304
|
isBeginning: isBeginning,
|
|
2306
2305
|
isEnd: isEnd
|
|
@@ -2436,7 +2435,7 @@ function updateActiveIndex(newActiveIndex) {
|
|
|
2436
2435
|
|
|
2437
2436
|
|
|
2438
2437
|
var realIndex = parseInt(swiper.slides.eq(activeIndex).attr('data-swiper-slide-index') || activeIndex, 10);
|
|
2439
|
-
extend
|
|
2438
|
+
extend(swiper, {
|
|
2440
2439
|
snapIndex: snapIndex,
|
|
2441
2440
|
realIndex: realIndex,
|
|
2442
2441
|
previousIndex: previousIndex,
|
|
@@ -2732,7 +2731,7 @@ function transitionStart(runCallbacks, direction) {
|
|
|
2732
2731
|
}
|
|
2733
2732
|
}
|
|
2734
2733
|
|
|
2735
|
-
function transitionEnd
|
|
2734
|
+
function transitionEnd(runCallbacks, direction) {
|
|
2736
2735
|
if (runCallbacks === void 0) {
|
|
2737
2736
|
runCallbacks = true;
|
|
2738
2737
|
}
|
|
@@ -2768,10 +2767,10 @@ function transitionEnd$1(runCallbacks, direction) {
|
|
|
2768
2767
|
}
|
|
2769
2768
|
}
|
|
2770
2769
|
|
|
2771
|
-
var transition
|
|
2770
|
+
var transition = {
|
|
2772
2771
|
setTransition: setTransition,
|
|
2773
2772
|
transitionStart: transitionStart,
|
|
2774
|
-
transitionEnd: transitionEnd
|
|
2773
|
+
transitionEnd: transitionEnd
|
|
2775
2774
|
};
|
|
2776
2775
|
|
|
2777
2776
|
function slideTo(index, speed, runCallbacks, internal, initial) {
|
|
@@ -3549,7 +3548,7 @@ function onTouchStart(event) {
|
|
|
3549
3548
|
}
|
|
3550
3549
|
}
|
|
3551
3550
|
|
|
3552
|
-
extend
|
|
3551
|
+
extend(data, {
|
|
3553
3552
|
isTouched: true,
|
|
3554
3553
|
isMoved: false,
|
|
3555
3554
|
allowTouchCallbacks: true,
|
|
@@ -3618,7 +3617,7 @@ function onTouchMove(event) {
|
|
|
3618
3617
|
swiper.allowClick = false;
|
|
3619
3618
|
|
|
3620
3619
|
if (data.isTouched) {
|
|
3621
|
-
extend
|
|
3620
|
+
extend(touches, {
|
|
3622
3621
|
startX: pageX,
|
|
3623
3622
|
startY: pageY,
|
|
3624
3623
|
currentX: pageX,
|
|
@@ -4412,9 +4411,9 @@ function setBreakpoint() {
|
|
|
4412
4411
|
swiper.changeDirection();
|
|
4413
4412
|
}
|
|
4414
4413
|
|
|
4415
|
-
extend
|
|
4414
|
+
extend(swiper.params, breakpointParams);
|
|
4416
4415
|
var isEnabled = swiper.params.enabled;
|
|
4417
|
-
extend
|
|
4416
|
+
extend(swiper, {
|
|
4418
4417
|
allowTouchMove: swiper.params.allowTouchMove,
|
|
4419
4418
|
allowSlideNext: swiper.params.allowSlideNext,
|
|
4420
4419
|
allowSlidePrev: swiper.params.allowSlidePrev
|
|
@@ -4791,7 +4790,7 @@ var prototypes = {
|
|
|
4791
4790
|
eventsEmitter: eventsEmitter,
|
|
4792
4791
|
update: update,
|
|
4793
4792
|
translate: translate,
|
|
4794
|
-
transition: transition
|
|
4793
|
+
transition: transition,
|
|
4795
4794
|
slide: slide,
|
|
4796
4795
|
loop: loop,
|
|
4797
4796
|
grabCursor: grabCursor,
|
|
@@ -4804,7 +4803,7 @@ var prototypes = {
|
|
|
4804
4803
|
};
|
|
4805
4804
|
var extendedDefaults = {};
|
|
4806
4805
|
|
|
4807
|
-
var Swiper = /*#__PURE__*/function () {
|
|
4806
|
+
var Swiper$1 = /*#__PURE__*/function () {
|
|
4808
4807
|
function Swiper() {
|
|
4809
4808
|
var el;
|
|
4810
4809
|
var params;
|
|
@@ -4821,13 +4820,13 @@ var Swiper = /*#__PURE__*/function () {
|
|
|
4821
4820
|
}
|
|
4822
4821
|
|
|
4823
4822
|
if (!params) params = {};
|
|
4824
|
-
params = extend
|
|
4823
|
+
params = extend({}, params);
|
|
4825
4824
|
if (el && !params.el) params.el = el;
|
|
4826
4825
|
|
|
4827
4826
|
if (params.el && $(params.el).length > 1) {
|
|
4828
4827
|
var swipers = [];
|
|
4829
4828
|
$(params.el).each(function (containerEl) {
|
|
4830
|
-
var newParams = extend
|
|
4829
|
+
var newParams = extend({}, params, {
|
|
4831
4830
|
el: containerEl
|
|
4832
4831
|
});
|
|
4833
4832
|
swipers.push(new Swiper(newParams));
|
|
@@ -4882,12 +4881,12 @@ var Swiper = /*#__PURE__*/function () {
|
|
|
4882
4881
|
}
|
|
4883
4882
|
}); // Extend defaults with modules params
|
|
4884
4883
|
|
|
4885
|
-
var swiperParams = extend
|
|
4884
|
+
var swiperParams = extend({}, defaults);
|
|
4886
4885
|
swiper.useParams(swiperParams); // Extend defaults with passed params
|
|
4887
4886
|
|
|
4888
|
-
swiper.params = extend
|
|
4889
|
-
swiper.originalParams = extend
|
|
4890
|
-
swiper.passedParams = extend
|
|
4887
|
+
swiper.params = extend({}, swiperParams, extendedDefaults, params);
|
|
4888
|
+
swiper.originalParams = extend({}, swiper.params);
|
|
4889
|
+
swiper.passedParams = extend({}, params); // add event listeners
|
|
4891
4890
|
|
|
4892
4891
|
if (swiper.params && swiper.params.on) {
|
|
4893
4892
|
Object.keys(swiper.params.on).forEach(function (eventName) {
|
|
@@ -4902,7 +4901,7 @@ var Swiper = /*#__PURE__*/function () {
|
|
|
4902
4901
|
|
|
4903
4902
|
swiper.$ = $; // Extend Swiper
|
|
4904
4903
|
|
|
4905
|
-
extend
|
|
4904
|
+
extend(swiper, {
|
|
4906
4905
|
enabled: swiper.params.enabled,
|
|
4907
4906
|
el: el,
|
|
4908
4907
|
// Classes
|
|
@@ -5237,7 +5236,7 @@ var Swiper = /*#__PURE__*/function () {
|
|
|
5237
5236
|
});
|
|
5238
5237
|
}
|
|
5239
5238
|
|
|
5240
|
-
extend
|
|
5239
|
+
extend(swiper, {
|
|
5241
5240
|
$el: $el,
|
|
5242
5241
|
el: el,
|
|
5243
5242
|
$wrapperEl: $wrapperEl,
|
|
@@ -5360,7 +5359,7 @@ var Swiper = /*#__PURE__*/function () {
|
|
|
5360
5359
|
};
|
|
5361
5360
|
|
|
5362
5361
|
Swiper.extendDefaults = function extendDefaults(newDefaults) {
|
|
5363
|
-
extend
|
|
5362
|
+
extend(extendedDefaults, newDefaults);
|
|
5364
5363
|
};
|
|
5365
5364
|
|
|
5366
5365
|
Swiper.installModule = function installModule(module) {
|
|
@@ -5398,13 +5397,13 @@ var Swiper = /*#__PURE__*/function () {
|
|
|
5398
5397
|
|
|
5399
5398
|
Object.keys(prototypes).forEach(function (prototypeGroup) {
|
|
5400
5399
|
Object.keys(prototypes[prototypeGroup]).forEach(function (protoMethod) {
|
|
5401
|
-
Swiper.prototype[protoMethod] = prototypes[prototypeGroup][protoMethod];
|
|
5400
|
+
Swiper$1.prototype[protoMethod] = prototypes[prototypeGroup][protoMethod];
|
|
5402
5401
|
});
|
|
5403
5402
|
});
|
|
5404
|
-
Swiper.use([Resize, Observer$1]);
|
|
5403
|
+
Swiper$1.use([Resize, Observer$1]);
|
|
5405
5404
|
|
|
5406
|
-
function _extends$
|
|
5407
|
-
_extends$
|
|
5405
|
+
function _extends$h() {
|
|
5406
|
+
_extends$h = Object.assign || function (target) {
|
|
5408
5407
|
for (var i = 1; i < arguments.length; i++) {
|
|
5409
5408
|
var source = arguments[i];
|
|
5410
5409
|
|
|
@@ -5418,7 +5417,7 @@ function _extends$1() {
|
|
|
5418
5417
|
return target;
|
|
5419
5418
|
};
|
|
5420
5419
|
|
|
5421
|
-
return _extends$
|
|
5420
|
+
return _extends$h.apply(this, arguments);
|
|
5422
5421
|
}
|
|
5423
5422
|
var Virtual = {
|
|
5424
5423
|
update: function update(force) {
|
|
@@ -5455,7 +5454,7 @@ var Virtual = {
|
|
|
5455
5454
|
var from = Math.max((activeIndex || 0) - slidesBefore, 0);
|
|
5456
5455
|
var to = Math.min((activeIndex || 0) + slidesAfter, slides.length - 1);
|
|
5457
5456
|
var offset = (swiper.slidesGrid[from] || 0) - (swiper.slidesGrid[0] || 0);
|
|
5458
|
-
extend
|
|
5457
|
+
extend(swiper.virtual, {
|
|
5459
5458
|
from: from,
|
|
5460
5459
|
to: to,
|
|
5461
5460
|
offset: offset,
|
|
@@ -5660,7 +5659,7 @@ var Virtual$1 = {
|
|
|
5660
5659
|
create: function create() {
|
|
5661
5660
|
var swiper = this;
|
|
5662
5661
|
bindModuleMethods(swiper, {
|
|
5663
|
-
virtual: _extends$
|
|
5662
|
+
virtual: _extends$h({}, Virtual, {
|
|
5664
5663
|
slides: swiper.params.virtual.slides,
|
|
5665
5664
|
cache: {}
|
|
5666
5665
|
})
|
|
@@ -5673,8 +5672,8 @@ var Virtual$1 = {
|
|
|
5673
5672
|
var overwriteParams = {
|
|
5674
5673
|
watchSlidesProgress: true
|
|
5675
5674
|
};
|
|
5676
|
-
extend
|
|
5677
|
-
extend
|
|
5675
|
+
extend(swiper.params, overwriteParams);
|
|
5676
|
+
extend(swiper.originalParams, overwriteParams);
|
|
5678
5677
|
|
|
5679
5678
|
if (!swiper.params.initialSlide) {
|
|
5680
5679
|
swiper.virtual.update();
|
|
@@ -5687,8 +5686,8 @@ var Virtual$1 = {
|
|
|
5687
5686
|
}
|
|
5688
5687
|
};
|
|
5689
5688
|
|
|
5690
|
-
function _extends$
|
|
5691
|
-
_extends$
|
|
5689
|
+
function _extends$g() {
|
|
5690
|
+
_extends$g = Object.assign || function (target) {
|
|
5692
5691
|
for (var i = 1; i < arguments.length; i++) {
|
|
5693
5692
|
var source = arguments[i];
|
|
5694
5693
|
|
|
@@ -5702,7 +5701,7 @@ function _extends$2() {
|
|
|
5702
5701
|
return target;
|
|
5703
5702
|
};
|
|
5704
5703
|
|
|
5705
|
-
return _extends$
|
|
5704
|
+
return _extends$g.apply(this, arguments);
|
|
5706
5705
|
}
|
|
5707
5706
|
var Keyboard = {
|
|
5708
5707
|
handle: function handle(event) {
|
|
@@ -5814,7 +5813,7 @@ var Keyboard$1 = {
|
|
|
5814
5813
|
create: function create() {
|
|
5815
5814
|
var swiper = this;
|
|
5816
5815
|
bindModuleMethods(swiper, {
|
|
5817
|
-
keyboard: _extends$
|
|
5816
|
+
keyboard: _extends$g({
|
|
5818
5817
|
enabled: false
|
|
5819
5818
|
}, Keyboard)
|
|
5820
5819
|
});
|
|
@@ -6308,8 +6307,8 @@ var Mousewheel$1 = {
|
|
|
6308
6307
|
}
|
|
6309
6308
|
};
|
|
6310
6309
|
|
|
6311
|
-
function _extends$
|
|
6312
|
-
_extends$
|
|
6310
|
+
function _extends$f() {
|
|
6311
|
+
_extends$f = Object.assign || function (target) {
|
|
6313
6312
|
for (var i = 1; i < arguments.length; i++) {
|
|
6314
6313
|
var source = arguments[i];
|
|
6315
6314
|
|
|
@@ -6323,7 +6322,7 @@ function _extends$3() {
|
|
|
6323
6322
|
return target;
|
|
6324
6323
|
};
|
|
6325
6324
|
|
|
6326
|
-
return _extends$
|
|
6325
|
+
return _extends$f.apply(this, arguments);
|
|
6327
6326
|
}
|
|
6328
6327
|
var Navigation = {
|
|
6329
6328
|
toggleEl: function toggleEl($el, disabled) {
|
|
@@ -6411,7 +6410,7 @@ var Navigation = {
|
|
|
6411
6410
|
$prevEl.on('click', swiper.navigation.onPrevClick);
|
|
6412
6411
|
}
|
|
6413
6412
|
|
|
6414
|
-
extend
|
|
6413
|
+
extend(swiper.navigation, {
|
|
6415
6414
|
$nextEl: $nextEl,
|
|
6416
6415
|
nextEl: $nextEl && $nextEl[0],
|
|
6417
6416
|
$prevEl: $prevEl,
|
|
@@ -6455,7 +6454,7 @@ var Navigation$1 = {
|
|
|
6455
6454
|
create: function create() {
|
|
6456
6455
|
var swiper = this;
|
|
6457
6456
|
bindModuleMethods(swiper, {
|
|
6458
|
-
navigation: _extends$
|
|
6457
|
+
navigation: _extends$f({}, Navigation)
|
|
6459
6458
|
});
|
|
6460
6459
|
},
|
|
6461
6460
|
on: {
|
|
@@ -6519,8 +6518,8 @@ var Navigation$1 = {
|
|
|
6519
6518
|
}
|
|
6520
6519
|
};
|
|
6521
6520
|
|
|
6522
|
-
function _extends$
|
|
6523
|
-
_extends$
|
|
6521
|
+
function _extends$e() {
|
|
6522
|
+
_extends$e = Object.assign || function (target) {
|
|
6524
6523
|
for (var i = 1; i < arguments.length; i++) {
|
|
6525
6524
|
var source = arguments[i];
|
|
6526
6525
|
|
|
@@ -6534,7 +6533,7 @@ function _extends$4() {
|
|
|
6534
6533
|
return target;
|
|
6535
6534
|
};
|
|
6536
6535
|
|
|
6537
|
-
return _extends$
|
|
6536
|
+
return _extends$e.apply(this, arguments);
|
|
6538
6537
|
}
|
|
6539
6538
|
var Pagination = {
|
|
6540
6539
|
update: function update() {
|
|
@@ -6786,7 +6785,7 @@ var Pagination = {
|
|
|
6786
6785
|
});
|
|
6787
6786
|
}
|
|
6788
6787
|
|
|
6789
|
-
extend
|
|
6788
|
+
extend(swiper.pagination, {
|
|
6790
6789
|
$el: $el,
|
|
6791
6790
|
el: $el[0]
|
|
6792
6791
|
});
|
|
@@ -6849,7 +6848,7 @@ var Pagination$1 = {
|
|
|
6849
6848
|
create: function create() {
|
|
6850
6849
|
var swiper = this;
|
|
6851
6850
|
bindModuleMethods(swiper, {
|
|
6852
|
-
pagination: _extends$
|
|
6851
|
+
pagination: _extends$e({
|
|
6853
6852
|
dynamicBulletIndex: 0
|
|
6854
6853
|
}, Pagination)
|
|
6855
6854
|
});
|
|
@@ -6913,8 +6912,8 @@ var Pagination$1 = {
|
|
|
6913
6912
|
}
|
|
6914
6913
|
};
|
|
6915
6914
|
|
|
6916
|
-
function _extends$
|
|
6917
|
-
_extends$
|
|
6915
|
+
function _extends$d() {
|
|
6916
|
+
_extends$d = Object.assign || function (target) {
|
|
6918
6917
|
for (var i = 1; i < arguments.length; i++) {
|
|
6919
6918
|
var source = arguments[i];
|
|
6920
6919
|
|
|
@@ -6928,7 +6927,7 @@ function _extends$5() {
|
|
|
6928
6927
|
return target;
|
|
6929
6928
|
};
|
|
6930
6929
|
|
|
6931
|
-
return _extends$
|
|
6930
|
+
return _extends$d.apply(this, arguments);
|
|
6932
6931
|
}
|
|
6933
6932
|
var Scrollbar = {
|
|
6934
6933
|
setTranslate: function setTranslate() {
|
|
@@ -7018,7 +7017,7 @@ var Scrollbar = {
|
|
|
7018
7017
|
$el[0].style.opacity = 0;
|
|
7019
7018
|
}
|
|
7020
7019
|
|
|
7021
|
-
extend
|
|
7020
|
+
extend(scrollbar, {
|
|
7022
7021
|
trackSize: trackSize,
|
|
7023
7022
|
divider: divider,
|
|
7024
7023
|
moveDivider: moveDivider,
|
|
@@ -7213,7 +7212,7 @@ var Scrollbar = {
|
|
|
7213
7212
|
$el.append($dragEl);
|
|
7214
7213
|
}
|
|
7215
7214
|
|
|
7216
|
-
extend
|
|
7215
|
+
extend(scrollbar, {
|
|
7217
7216
|
$el: $el,
|
|
7218
7217
|
el: $el[0],
|
|
7219
7218
|
$dragEl: $dragEl,
|
|
@@ -7249,7 +7248,7 @@ var Scrollbar$1 = {
|
|
|
7249
7248
|
create: function create() {
|
|
7250
7249
|
var swiper = this;
|
|
7251
7250
|
bindModuleMethods(swiper, {
|
|
7252
|
-
scrollbar: _extends$
|
|
7251
|
+
scrollbar: _extends$d({
|
|
7253
7252
|
isTouched: false,
|
|
7254
7253
|
timeout: null,
|
|
7255
7254
|
dragTimeout: null
|
|
@@ -7290,8 +7289,8 @@ var Scrollbar$1 = {
|
|
|
7290
7289
|
}
|
|
7291
7290
|
};
|
|
7292
7291
|
|
|
7293
|
-
function _extends$
|
|
7294
|
-
_extends$
|
|
7292
|
+
function _extends$c() {
|
|
7293
|
+
_extends$c = Object.assign || function (target) {
|
|
7295
7294
|
for (var i = 1; i < arguments.length; i++) {
|
|
7296
7295
|
var source = arguments[i];
|
|
7297
7296
|
|
|
@@ -7305,7 +7304,7 @@ function _extends$6() {
|
|
|
7305
7304
|
return target;
|
|
7306
7305
|
};
|
|
7307
7306
|
|
|
7308
|
-
return _extends$
|
|
7307
|
+
return _extends$c.apply(this, arguments);
|
|
7309
7308
|
}
|
|
7310
7309
|
var Parallax = {
|
|
7311
7310
|
setTransform: function setTransform(el, progress) {
|
|
@@ -7401,7 +7400,7 @@ var Parallax$1 = {
|
|
|
7401
7400
|
create: function create() {
|
|
7402
7401
|
var swiper = this;
|
|
7403
7402
|
bindModuleMethods(swiper, {
|
|
7404
|
-
parallax: _extends$
|
|
7403
|
+
parallax: _extends$c({}, Parallax)
|
|
7405
7404
|
});
|
|
7406
7405
|
},
|
|
7407
7406
|
on: {
|
|
@@ -7425,8 +7424,8 @@ var Parallax$1 = {
|
|
|
7425
7424
|
}
|
|
7426
7425
|
};
|
|
7427
7426
|
|
|
7428
|
-
function _extends$
|
|
7429
|
-
_extends$
|
|
7427
|
+
function _extends$b() {
|
|
7428
|
+
_extends$b = Object.assign || function (target) {
|
|
7430
7429
|
for (var i = 1; i < arguments.length; i++) {
|
|
7431
7430
|
var source = arguments[i];
|
|
7432
7431
|
|
|
@@ -7440,7 +7439,7 @@ function _extends$7() {
|
|
|
7440
7439
|
return target;
|
|
7441
7440
|
};
|
|
7442
7441
|
|
|
7443
|
-
return _extends$
|
|
7442
|
+
return _extends$b.apply(this, arguments);
|
|
7444
7443
|
}
|
|
7445
7444
|
var Zoom = {
|
|
7446
7445
|
// Calc Scale From Multi-touches
|
|
@@ -7948,7 +7947,7 @@ var Zoom$1 = {
|
|
|
7948
7947
|
create: function create() {
|
|
7949
7948
|
var swiper = this;
|
|
7950
7949
|
bindModuleMethods(swiper, {
|
|
7951
|
-
zoom: _extends$
|
|
7950
|
+
zoom: _extends$b({
|
|
7952
7951
|
enabled: false,
|
|
7953
7952
|
scale: 1,
|
|
7954
7953
|
currentScale: 1,
|
|
@@ -8037,8 +8036,8 @@ var Zoom$1 = {
|
|
|
8037
8036
|
}
|
|
8038
8037
|
};
|
|
8039
8038
|
|
|
8040
|
-
function _extends$
|
|
8041
|
-
_extends$
|
|
8039
|
+
function _extends$a() {
|
|
8040
|
+
_extends$a = Object.assign || function (target) {
|
|
8042
8041
|
for (var i = 1; i < arguments.length; i++) {
|
|
8043
8042
|
var source = arguments[i];
|
|
8044
8043
|
|
|
@@ -8052,7 +8051,7 @@ function _extends$8() {
|
|
|
8052
8051
|
return target;
|
|
8053
8052
|
};
|
|
8054
8053
|
|
|
8055
|
-
return _extends$
|
|
8054
|
+
return _extends$a.apply(this, arguments);
|
|
8056
8055
|
}
|
|
8057
8056
|
var Lazy = {
|
|
8058
8057
|
loadInSlide: function loadInSlide(index, loadInDuplicate) {
|
|
@@ -8266,7 +8265,7 @@ var Lazy$1 = {
|
|
|
8266
8265
|
create: function create() {
|
|
8267
8266
|
var swiper = this;
|
|
8268
8267
|
bindModuleMethods(swiper, {
|
|
8269
|
-
lazy: _extends$
|
|
8268
|
+
lazy: _extends$a({
|
|
8270
8269
|
initialImageLoaded: false
|
|
8271
8270
|
}, Lazy)
|
|
8272
8271
|
});
|
|
@@ -8535,8 +8534,8 @@ var Controller$1 = {
|
|
|
8535
8534
|
}
|
|
8536
8535
|
};
|
|
8537
8536
|
|
|
8538
|
-
function _extends$
|
|
8539
|
-
_extends$
|
|
8537
|
+
function _extends$8() {
|
|
8538
|
+
_extends$8 = Object.assign || function (target) {
|
|
8540
8539
|
for (var i = 1; i < arguments.length; i++) {
|
|
8541
8540
|
var source = arguments[i];
|
|
8542
8541
|
|
|
@@ -8550,7 +8549,7 @@ function _extends$a() {
|
|
|
8550
8549
|
return target;
|
|
8551
8550
|
};
|
|
8552
8551
|
|
|
8553
|
-
return _extends$
|
|
8552
|
+
return _extends$8.apply(this, arguments);
|
|
8554
8553
|
}
|
|
8555
8554
|
var A11y = {
|
|
8556
8555
|
getRandomNumber: function getRandomNumber(size) {
|
|
@@ -8814,7 +8813,7 @@ var A11y$1 = {
|
|
|
8814
8813
|
create: function create() {
|
|
8815
8814
|
var swiper = this;
|
|
8816
8815
|
bindModuleMethods(swiper, {
|
|
8817
|
-
a11y: _extends$
|
|
8816
|
+
a11y: _extends$8({}, A11y, {
|
|
8818
8817
|
liveRegion: $("<span class=\"" + swiper.params.a11y.notificationClass + "\" aria-live=\"assertive\" aria-atomic=\"true\"></span>")
|
|
8819
8818
|
})
|
|
8820
8819
|
});
|
|
@@ -8844,8 +8843,8 @@ var A11y$1 = {
|
|
|
8844
8843
|
}
|
|
8845
8844
|
};
|
|
8846
8845
|
|
|
8847
|
-
function _extends$
|
|
8848
|
-
_extends$
|
|
8846
|
+
function _extends$7() {
|
|
8847
|
+
_extends$7 = Object.assign || function (target) {
|
|
8849
8848
|
for (var i = 1; i < arguments.length; i++) {
|
|
8850
8849
|
var source = arguments[i];
|
|
8851
8850
|
|
|
@@ -8859,7 +8858,7 @@ function _extends$b() {
|
|
|
8859
8858
|
return target;
|
|
8860
8859
|
};
|
|
8861
8860
|
|
|
8862
|
-
return _extends$
|
|
8861
|
+
return _extends$7.apply(this, arguments);
|
|
8863
8862
|
}
|
|
8864
8863
|
var History = {
|
|
8865
8864
|
init: function init() {
|
|
@@ -8990,7 +8989,7 @@ var History$1 = {
|
|
|
8990
8989
|
create: function create() {
|
|
8991
8990
|
var swiper = this;
|
|
8992
8991
|
bindModuleMethods(swiper, {
|
|
8993
|
-
history: _extends$
|
|
8992
|
+
history: _extends$7({}, History)
|
|
8994
8993
|
});
|
|
8995
8994
|
},
|
|
8996
8995
|
on: {
|
|
@@ -9017,8 +9016,8 @@ var History$1 = {
|
|
|
9017
9016
|
}
|
|
9018
9017
|
};
|
|
9019
9018
|
|
|
9020
|
-
function _extends$
|
|
9021
|
-
_extends$
|
|
9019
|
+
function _extends$6() {
|
|
9020
|
+
_extends$6 = Object.assign || function (target) {
|
|
9022
9021
|
for (var i = 1; i < arguments.length; i++) {
|
|
9023
9022
|
var source = arguments[i];
|
|
9024
9023
|
|
|
@@ -9032,7 +9031,7 @@ function _extends$c() {
|
|
|
9032
9031
|
return target;
|
|
9033
9032
|
};
|
|
9034
9033
|
|
|
9035
|
-
return _extends$
|
|
9034
|
+
return _extends$6.apply(this, arguments);
|
|
9036
9035
|
}
|
|
9037
9036
|
var HashNavigation = {
|
|
9038
9037
|
onHashChange: function onHashChange() {
|
|
@@ -9111,7 +9110,7 @@ var HashNavigation$1 = {
|
|
|
9111
9110
|
create: function create() {
|
|
9112
9111
|
var swiper = this;
|
|
9113
9112
|
bindModuleMethods(swiper, {
|
|
9114
|
-
hashNavigation: _extends$
|
|
9113
|
+
hashNavigation: _extends$6({
|
|
9115
9114
|
initialized: false
|
|
9116
9115
|
}, HashNavigation)
|
|
9117
9116
|
});
|
|
@@ -9140,8 +9139,8 @@ var HashNavigation$1 = {
|
|
|
9140
9139
|
}
|
|
9141
9140
|
};
|
|
9142
9141
|
|
|
9143
|
-
function _extends$
|
|
9144
|
-
_extends$
|
|
9142
|
+
function _extends$5() {
|
|
9143
|
+
_extends$5 = Object.assign || function (target) {
|
|
9145
9144
|
for (var i = 1; i < arguments.length; i++) {
|
|
9146
9145
|
var source = arguments[i];
|
|
9147
9146
|
|
|
@@ -9155,7 +9154,7 @@ function _extends$d() {
|
|
|
9155
9154
|
return target;
|
|
9156
9155
|
};
|
|
9157
9156
|
|
|
9158
|
-
return _extends$
|
|
9157
|
+
return _extends$5.apply(this, arguments);
|
|
9159
9158
|
}
|
|
9160
9159
|
var Autoplay = {
|
|
9161
9160
|
run: function run() {
|
|
@@ -9324,7 +9323,7 @@ var Autoplay$1 = {
|
|
|
9324
9323
|
create: function create() {
|
|
9325
9324
|
var swiper = this;
|
|
9326
9325
|
bindModuleMethods(swiper, {
|
|
9327
|
-
autoplay: _extends$
|
|
9326
|
+
autoplay: _extends$5({}, Autoplay, {
|
|
9328
9327
|
running: false,
|
|
9329
9328
|
paused: false
|
|
9330
9329
|
})
|
|
@@ -9375,8 +9374,8 @@ var Autoplay$1 = {
|
|
|
9375
9374
|
}
|
|
9376
9375
|
};
|
|
9377
9376
|
|
|
9378
|
-
function _extends$
|
|
9379
|
-
_extends$
|
|
9377
|
+
function _extends$4() {
|
|
9378
|
+
_extends$4 = Object.assign || function (target) {
|
|
9380
9379
|
for (var i = 1; i < arguments.length; i++) {
|
|
9381
9380
|
var source = arguments[i];
|
|
9382
9381
|
|
|
@@ -9390,7 +9389,7 @@ function _extends$e() {
|
|
|
9390
9389
|
return target;
|
|
9391
9390
|
};
|
|
9392
9391
|
|
|
9393
|
-
return _extends$
|
|
9392
|
+
return _extends$4.apply(this, arguments);
|
|
9394
9393
|
}
|
|
9395
9394
|
var Fade = {
|
|
9396
9395
|
setTranslate: function setTranslate() {
|
|
@@ -9447,7 +9446,7 @@ var EffectFade = {
|
|
|
9447
9446
|
create: function create() {
|
|
9448
9447
|
var swiper = this;
|
|
9449
9448
|
bindModuleMethods(swiper, {
|
|
9450
|
-
fadeEffect: _extends$
|
|
9449
|
+
fadeEffect: _extends$4({}, Fade)
|
|
9451
9450
|
});
|
|
9452
9451
|
},
|
|
9453
9452
|
on: {
|
|
@@ -9462,8 +9461,8 @@ var EffectFade = {
|
|
|
9462
9461
|
spaceBetween: 0,
|
|
9463
9462
|
virtualTranslate: true
|
|
9464
9463
|
};
|
|
9465
|
-
extend
|
|
9466
|
-
extend
|
|
9464
|
+
extend(swiper.params, overwriteParams);
|
|
9465
|
+
extend(swiper.originalParams, overwriteParams);
|
|
9467
9466
|
},
|
|
9468
9467
|
setTranslate: function setTranslate(swiper) {
|
|
9469
9468
|
if (swiper.params.effect !== 'fade') return;
|
|
@@ -9476,8 +9475,8 @@ var EffectFade = {
|
|
|
9476
9475
|
}
|
|
9477
9476
|
};
|
|
9478
9477
|
|
|
9479
|
-
function _extends$
|
|
9480
|
-
_extends$
|
|
9478
|
+
function _extends$3() {
|
|
9479
|
+
_extends$3 = Object.assign || function (target) {
|
|
9481
9480
|
for (var i = 1; i < arguments.length; i++) {
|
|
9482
9481
|
var source = arguments[i];
|
|
9483
9482
|
|
|
@@ -9491,7 +9490,7 @@ function _extends$f() {
|
|
|
9491
9490
|
return target;
|
|
9492
9491
|
};
|
|
9493
9492
|
|
|
9494
|
-
return _extends$
|
|
9493
|
+
return _extends$3.apply(this, arguments);
|
|
9495
9494
|
}
|
|
9496
9495
|
var Cube = {
|
|
9497
9496
|
setTranslate: function setTranslate() {
|
|
@@ -9652,7 +9651,7 @@ var EffectCube = {
|
|
|
9652
9651
|
create: function create() {
|
|
9653
9652
|
var swiper = this;
|
|
9654
9653
|
bindModuleMethods(swiper, {
|
|
9655
|
-
cubeEffect: _extends$
|
|
9654
|
+
cubeEffect: _extends$3({}, Cube)
|
|
9656
9655
|
});
|
|
9657
9656
|
},
|
|
9658
9657
|
on: {
|
|
@@ -9670,8 +9669,8 @@ var EffectCube = {
|
|
|
9670
9669
|
centeredSlides: false,
|
|
9671
9670
|
virtualTranslate: true
|
|
9672
9671
|
};
|
|
9673
|
-
extend
|
|
9674
|
-
extend
|
|
9672
|
+
extend(swiper.params, overwriteParams);
|
|
9673
|
+
extend(swiper.originalParams, overwriteParams);
|
|
9675
9674
|
},
|
|
9676
9675
|
setTranslate: function setTranslate(swiper) {
|
|
9677
9676
|
if (swiper.params.effect !== 'cube') return;
|
|
@@ -9684,8 +9683,8 @@ var EffectCube = {
|
|
|
9684
9683
|
}
|
|
9685
9684
|
};
|
|
9686
9685
|
|
|
9687
|
-
function _extends$
|
|
9688
|
-
_extends$
|
|
9686
|
+
function _extends$2() {
|
|
9687
|
+
_extends$2 = Object.assign || function (target) {
|
|
9689
9688
|
for (var i = 1; i < arguments.length; i++) {
|
|
9690
9689
|
var source = arguments[i];
|
|
9691
9690
|
|
|
@@ -9699,7 +9698,7 @@ function _extends$g() {
|
|
|
9699
9698
|
return target;
|
|
9700
9699
|
};
|
|
9701
9700
|
|
|
9702
|
-
return _extends$
|
|
9701
|
+
return _extends$2.apply(this, arguments);
|
|
9703
9702
|
}
|
|
9704
9703
|
var Flip = {
|
|
9705
9704
|
setTranslate: function setTranslate() {
|
|
@@ -9791,7 +9790,7 @@ var EffectFlip = {
|
|
|
9791
9790
|
create: function create() {
|
|
9792
9791
|
var swiper = this;
|
|
9793
9792
|
bindModuleMethods(swiper, {
|
|
9794
|
-
flipEffect: _extends$
|
|
9793
|
+
flipEffect: _extends$2({}, Flip)
|
|
9795
9794
|
});
|
|
9796
9795
|
},
|
|
9797
9796
|
on: {
|
|
@@ -9807,8 +9806,8 @@ var EffectFlip = {
|
|
|
9807
9806
|
spaceBetween: 0,
|
|
9808
9807
|
virtualTranslate: true
|
|
9809
9808
|
};
|
|
9810
|
-
extend
|
|
9811
|
-
extend
|
|
9809
|
+
extend(swiper.params, overwriteParams);
|
|
9810
|
+
extend(swiper.originalParams, overwriteParams);
|
|
9812
9811
|
},
|
|
9813
9812
|
setTranslate: function setTranslate(swiper) {
|
|
9814
9813
|
if (swiper.params.effect !== 'flip') return;
|
|
@@ -9821,8 +9820,8 @@ var EffectFlip = {
|
|
|
9821
9820
|
}
|
|
9822
9821
|
};
|
|
9823
9822
|
|
|
9824
|
-
function _extends$
|
|
9825
|
-
_extends$
|
|
9823
|
+
function _extends$1() {
|
|
9824
|
+
_extends$1 = Object.assign || function (target) {
|
|
9826
9825
|
for (var i = 1; i < arguments.length; i++) {
|
|
9827
9826
|
var source = arguments[i];
|
|
9828
9827
|
|
|
@@ -9836,7 +9835,7 @@ function _extends$h() {
|
|
|
9836
9835
|
return target;
|
|
9837
9836
|
};
|
|
9838
9837
|
|
|
9839
|
-
return _extends$
|
|
9838
|
+
return _extends$1.apply(this, arguments);
|
|
9840
9839
|
}
|
|
9841
9840
|
var Coverflow = {
|
|
9842
9841
|
setTranslate: function setTranslate() {
|
|
@@ -9921,7 +9920,7 @@ var EffectCoverflow = {
|
|
|
9921
9920
|
create: function create() {
|
|
9922
9921
|
var swiper = this;
|
|
9923
9922
|
bindModuleMethods(swiper, {
|
|
9924
|
-
coverflowEffect: _extends$
|
|
9923
|
+
coverflowEffect: _extends$1({}, Coverflow)
|
|
9925
9924
|
});
|
|
9926
9925
|
},
|
|
9927
9926
|
on: {
|
|
@@ -9943,8 +9942,8 @@ var EffectCoverflow = {
|
|
|
9943
9942
|
}
|
|
9944
9943
|
};
|
|
9945
9944
|
|
|
9946
|
-
function _extends
|
|
9947
|
-
_extends
|
|
9945
|
+
function _extends() {
|
|
9946
|
+
_extends = Object.assign || function (target) {
|
|
9948
9947
|
for (var i = 1; i < arguments.length; i++) {
|
|
9949
9948
|
var source = arguments[i];
|
|
9950
9949
|
|
|
@@ -9958,7 +9957,7 @@ function _extends$i() {
|
|
|
9958
9957
|
return target;
|
|
9959
9958
|
};
|
|
9960
9959
|
|
|
9961
|
-
return _extends
|
|
9960
|
+
return _extends.apply(this, arguments);
|
|
9962
9961
|
}
|
|
9963
9962
|
var Thumbs = {
|
|
9964
9963
|
init: function init() {
|
|
@@ -9970,16 +9969,16 @@ var Thumbs = {
|
|
|
9970
9969
|
|
|
9971
9970
|
if (thumbsParams.swiper instanceof SwiperClass) {
|
|
9972
9971
|
swiper.thumbs.swiper = thumbsParams.swiper;
|
|
9973
|
-
extend
|
|
9972
|
+
extend(swiper.thumbs.swiper.originalParams, {
|
|
9974
9973
|
watchSlidesProgress: true,
|
|
9975
9974
|
slideToClickedSlide: false
|
|
9976
9975
|
});
|
|
9977
|
-
extend
|
|
9976
|
+
extend(swiper.thumbs.swiper.params, {
|
|
9978
9977
|
watchSlidesProgress: true,
|
|
9979
9978
|
slideToClickedSlide: false
|
|
9980
9979
|
});
|
|
9981
|
-
} else if (isObject
|
|
9982
|
-
swiper.thumbs.swiper = new SwiperClass(extend
|
|
9980
|
+
} else if (isObject(thumbsParams.swiper)) {
|
|
9981
|
+
swiper.thumbs.swiper = new SwiperClass(extend({}, thumbsParams.swiper, {
|
|
9983
9982
|
watchSlidesVisibility: true,
|
|
9984
9983
|
watchSlidesProgress: true,
|
|
9985
9984
|
slideToClickedSlide: false
|
|
@@ -10124,7 +10123,7 @@ var Thumbs$1 = {
|
|
|
10124
10123
|
create: function create() {
|
|
10125
10124
|
var swiper = this;
|
|
10126
10125
|
bindModuleMethods(swiper, {
|
|
10127
|
-
thumbs: _extends
|
|
10126
|
+
thumbs: _extends({
|
|
10128
10127
|
swiper: null,
|
|
10129
10128
|
initialized: false
|
|
10130
10129
|
}, Thumbs)
|
|
@@ -10182,19 +10181,15 @@ var Thumbs$1 = {
|
|
|
10182
10181
|
*/
|
|
10183
10182
|
|
|
10184
10183
|
var components = [Virtual$1, Keyboard$1, Mousewheel$1, Navigation$1, Pagination$1, Scrollbar$1, Parallax$1, Zoom$1, Lazy$1, Controller$1, A11y$1, History$1, HashNavigation$1, Autoplay$1, EffectFade, EffectCube, EffectFlip, EffectCoverflow, Thumbs$1];
|
|
10185
|
-
Swiper.use(components);
|
|
10184
|
+
Swiper$1.use(components);
|
|
10186
10185
|
|
|
10187
|
-
var css_248z = "/**\n * Swiper 6.8.0\n * Most modern mobile touch slider and framework with hardware accelerated transitions\n * https://swiperjs.com\n *\n * Copyright 2014-2021 Vladimir Kharlampidi\n *\n * Released under the MIT License\n *\n * Released on: July 22, 2021\n */\n\n@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, 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') format('woff');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-container-multirow>.swiper-wrapper{flex-wrap:wrap}.swiper-container-multirow-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-container-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-container-pointer-events{touch-action:pan-y}.swiper-container-pointer-events.swiper-container-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-container-3d{perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-container-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-container-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after{content:'next'}.swiper-button-next.swiper-button-white,.swiper-button-prev.swiper-button-white{--swiper-navigation-color:#ffffff}.swiper-button-next.swiper-button-black,.swiper-button-prev.swiper-button-black{--swiper-navigation-color:#000000}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:50%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{opacity:1;background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;display:block}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-white{--swiper-pagination-color:#ffffff}.swiper-pagination-black{--swiper-pagination-color:#000000}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;animation:swiper-preloader-spin 1s infinite linear;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-container-fade.swiper-container-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube.swiper-container-rtl .swiper-slide{transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-container-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-container-flip{overflow:visible}.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}";
|
|
10188
|
-
styleInject(css_248z,{"insertAt":"top"});
|
|
10189
|
-
|
|
10190
|
-
var css_248z$1 = ".swiper-container-wrapper {\n height: 150px;\n}\n\n.swiper-container {\n height: 100%;\n}\n\n.swiper-pagination {\n font-size: 0;\n}\n\n.swiper-pagination-bullet {\n opacity: 1\n}\n";
|
|
10186
|
+
var css_248z$1 = "/**\n * Swiper 6.8.0\n * Most modern mobile touch slider and framework with hardware accelerated transitions\n * https://swiperjs.com\n *\n * Copyright 2014-2021 Vladimir Kharlampidi\n *\n * Released under the MIT License\n *\n * Released on: July 22, 2021\n */\n\n@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, 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') format('woff');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-container-multirow>.swiper-wrapper{flex-wrap:wrap}.swiper-container-multirow-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-container-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-container-pointer-events{touch-action:pan-y}.swiper-container-pointer-events.swiper-container-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-container-3d{perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-container-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-container-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after{content:'next'}.swiper-button-next.swiper-button-white,.swiper-button-prev.swiper-button-white{--swiper-navigation-color:#ffffff}.swiper-button-next.swiper-button-black,.swiper-button-prev.swiper-button-black{--swiper-navigation-color:#000000}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:50%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{opacity:1;background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;display:block}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-white{--swiper-pagination-color:#ffffff}.swiper-pagination-black{--swiper-pagination-color:#000000}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;animation:swiper-preloader-spin 1s infinite linear;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-container-fade.swiper-container-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube.swiper-container-rtl .swiper-slide{transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-container-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-container-flip{overflow:visible}.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}";
|
|
10191
10187
|
styleInject(css_248z$1,{"insertAt":"top"});
|
|
10192
10188
|
|
|
10193
|
-
var
|
|
10194
|
-
|
|
10195
|
-
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1(); return function _createSuperInternal() { var Super = _getPrototypeOf$1(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf$1(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
10189
|
+
var css_248z = ".swiper-container-wrapper {\n height: 150px;\n}\n\n.swiper-container {\n height: 100%;\n}\n\n.swiper-pagination {\n font-size: 0;\n}\n\n.swiper-pagination-bullet {\n opacity: 1\n}\n";
|
|
10190
|
+
styleInject(css_248z,{"insertAt":"top"});
|
|
10196
10191
|
|
|
10197
|
-
|
|
10192
|
+
var _excluded = ["className", "style", "itemId", "children"];
|
|
10198
10193
|
var INSTANCE_ID = 0;
|
|
10199
10194
|
|
|
10200
10195
|
var createEvent = function createEvent(type) {
|
|
@@ -10243,15 +10238,15 @@ var SwiperItem = /*#__PURE__*/function (_React$Component) {
|
|
|
10243
10238
|
return SwiperItem;
|
|
10244
10239
|
}(React.Component);
|
|
10245
10240
|
|
|
10246
|
-
var Swiper
|
|
10247
|
-
_inherits(Swiper
|
|
10241
|
+
var Swiper = /*#__PURE__*/function (_React$Component2) {
|
|
10242
|
+
_inherits(Swiper, _React$Component2);
|
|
10248
10243
|
|
|
10249
|
-
var _super2 = _createSuper(Swiper
|
|
10244
|
+
var _super2 = _createSuper(Swiper);
|
|
10250
10245
|
|
|
10251
|
-
function Swiper
|
|
10246
|
+
function Swiper() {
|
|
10252
10247
|
var _this;
|
|
10253
10248
|
|
|
10254
|
-
_classCallCheck(this, Swiper
|
|
10249
|
+
_classCallCheck(this, Swiper);
|
|
10255
10250
|
|
|
10256
10251
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
10257
10252
|
args[_key] = arguments[_key];
|
|
@@ -10311,7 +10306,7 @@ var Swiper$1 = /*#__PURE__*/function (_React$Component2) {
|
|
|
10311
10306
|
return _this;
|
|
10312
10307
|
}
|
|
10313
10308
|
|
|
10314
|
-
_createClass$1(Swiper
|
|
10309
|
+
_createClass$1(Swiper, [{
|
|
10315
10310
|
key: "componentDidMount",
|
|
10316
10311
|
value: function componentDidMount() {
|
|
10317
10312
|
var _this2 = this;
|
|
@@ -10404,7 +10399,7 @@ var Swiper$1 = /*#__PURE__*/function (_React$Component2) {
|
|
|
10404
10399
|
opt.spaceBetween = spaceBetween;
|
|
10405
10400
|
}
|
|
10406
10401
|
|
|
10407
|
-
this.mySwiper = new Swiper(this.$el, opt);
|
|
10402
|
+
this.mySwiper = new Swiper$1(this.$el, opt);
|
|
10408
10403
|
setTimeout(function () {
|
|
10409
10404
|
_this2.mySwiper.update();
|
|
10410
10405
|
}, 500);
|
|
@@ -10546,7 +10541,7 @@ var Swiper$1 = /*#__PURE__*/function (_React$Component2) {
|
|
|
10546
10541
|
}
|
|
10547
10542
|
}]);
|
|
10548
10543
|
|
|
10549
|
-
return Swiper
|
|
10544
|
+
return Swiper;
|
|
10550
10545
|
}(React.Component);
|
|
10551
10546
|
|
|
10552
10547
|
function debounce(fn, delay) {
|
|
@@ -10563,5 +10558,5 @@ function debounce(fn, delay) {
|
|
|
10563
10558
|
};
|
|
10564
10559
|
}
|
|
10565
10560
|
|
|
10566
|
-
export { Swiper
|
|
10561
|
+
export { Swiper, SwiperItem };
|
|
10567
10562
|
//# sourceMappingURL=index.js.map
|