@egjs/flicking 4.10.0 → 4.10.1
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/flicking.esm.js +3 -2
- package/dist/flicking.esm.js.map +1 -1
- package/dist/flicking.js +3 -2
- package/dist/flicking.js.map +1 -1
- package/dist/flicking.min.js +2 -2
- package/dist/flicking.min.js.map +1 -1
- package/dist/flicking.pkgd.js +3 -2
- package/dist/flicking.pkgd.js.map +1 -1
- package/dist/flicking.pkgd.min.js +2 -2
- package/dist/flicking.pkgd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/control/AxesController.ts +1 -0
package/dist/flicking.esm.js
CHANGED
|
@@ -4,7 +4,7 @@ name: @egjs/flicking
|
|
|
4
4
|
license: MIT
|
|
5
5
|
author: NAVER Corp.
|
|
6
6
|
repository: https://github.com/naver/egjs-flicking
|
|
7
|
-
version: 4.10.
|
|
7
|
+
version: 4.10.1
|
|
8
8
|
*/
|
|
9
9
|
import Component, { ComponentEvent } from '@egjs/component';
|
|
10
10
|
import Axes, { PanInput } from '@egjs/axes';
|
|
@@ -2375,6 +2375,7 @@ function () {
|
|
|
2375
2375
|
});
|
|
2376
2376
|
this._panInput = new PanInput(flicking.viewport.element, {
|
|
2377
2377
|
inputType: flicking.inputType,
|
|
2378
|
+
threshold: 1,
|
|
2378
2379
|
iOSEdgeSwipeThreshold: flicking.iOSEdgeSwipeThreshold,
|
|
2379
2380
|
scale: flicking.horizontal ? [-1, 0] : [0, -1],
|
|
2380
2381
|
releaseOnScroll: true
|
|
@@ -8707,7 +8708,7 @@ function (_super) {
|
|
|
8707
8708
|
*/
|
|
8708
8709
|
|
|
8709
8710
|
|
|
8710
|
-
Flicking.VERSION = "4.10.
|
|
8711
|
+
Flicking.VERSION = "4.10.1";
|
|
8711
8712
|
return Flicking;
|
|
8712
8713
|
}(Component);
|
|
8713
8714
|
|