Skip to content

Commit cf18be5

Browse files
committed
Merge 4.10.2 changes
1 parent c964030 commit cf18be5

File tree

71 files changed

+1729
-742
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+1729
-742
lines changed

.babelrc

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
{
2-
"presets": [
3-
"@babel/preset-react",
4-
[
5-
"@babel/preset-env",
6-
{
7-
"modules": false
8-
}
2+
"presets": [
3+
"@babel/preset-react",
4+
[
5+
"@babel/preset-env",
6+
{
7+
"loose": true,
8+
"modules": false
9+
}
10+
]
11+
],
12+
"plugins": [
13+
"@babel/plugin-proposal-class-properties"
914
]
10-
],
11-
"plugins": [
12-
"@babel/plugin-proposal-class-properties"
13-
]
1415
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mobiscroll",
3-
"version": "4.9.0",
3+
"version": "4.10.2",
44
"description": "Cross platform UI controls for progressive web an hybrid apps",
55
"homepage": "https://mobiscroll.com/",
66
"license": "Apache-2.0",

packages/angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mobiscroll/angular-lite",
3-
"version": "4.9.0",
3+
"version": "4.10.2",
44
"description": "Angular UI library for progressive web and hybrid apps",
55
"homepage": "https://mobiscroll.com/",
66
"license": "Apache-2.0",

packages/angularjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mobiscroll/angularjs-lite",
3-
"version": "4.9.0",
3+
"version": "4.10.2",
44
"description": "AngularJS UI library for progressive web and hybrid apps",
55
"homepage": "https://mobiscroll.com/",
66
"license": "Apache-2.0",

packages/javascript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mobiscroll/javascript-lite",
3-
"version": "4.9.0",
3+
"version": "4.10.2",
44
"description": "Framework agnostic UI library for progressive web and hybrid apps",
55
"homepage": "https://mobiscroll.com/",
66
"license": "Apache-2.0",

packages/jquery/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mobiscroll/jquery-lite",
3-
"version": "4.9.0",
3+
"version": "4.10.2",
44
"description": "jQuery and jQuery Mobile UI library for progressive web and hybrid apps",
55
"homepage": "https://mobiscroll.com/",
66
"license": "Apache-2.0",

packages/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mobiscroll/react-lite",
3-
"version": "4.9.0",
3+
"version": "4.10.2",
44
"description": "React UI library for progressive web and hybrid apps",
55
"homepage": "https://mobiscroll.com/",
66
"license": "Apache-2.0",

src/js/classes/progress.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
/* eslint-disable no-unused-vars */
1+
// eslint-disable-next-line no-unused-vars
22
import { mobiscroll } from '../core/core'; // mobiscroll needed for trial
3-
/* eslint-enable no-unused-vars */
43
import { $, classes, autoInit } from '../core/core';
54
import { ProgressBase } from './progress-base';
65
import { addIcon, wrapLabel } from './form-control';
@@ -210,4 +209,4 @@ Progress.prototype = {
210209
classes.Progress = Progress;
211210

212211
// Init mbsc-progress elements on page load
213-
autoInit('[mbsc-progress]', Progress);
212+
autoInit('[mbsc-progress]', Progress);

src/js/classes/scroller.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
/* eslint-disable no-unused-vars */
1+
// eslint-disable-next-line no-unused-vars
22
import { mobiscroll } from '../core/core'; // mobiscroll needed for trial
3-
/* eslint-enable no-unused-vars */
43
import { $, extend, classes } from '../core/core';
54
import { cssPrefix, jsPrefix } from '../util/dom';
65
import { isNumeric, objectToArray } from '../util/misc';

src/js/classes/scrollview-base.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
/* eslint-disable no-unused-vars */
1+
// eslint-disable-next-line no-unused-vars
22
import { $, Base, mobiscroll } from '../core/core'; // mobiscroll needed for trial
3-
/* eslint-enable no-unused-vars */
43
import { os, raf, rafc } from '../util/platform';
54
import { getCoord } from '../util/tap';
65
import { cssPrefix, jsPrefix, getPosition, testTouch } from '../util/dom';

0 commit comments

Comments
 (0)