Skip to content

Commit 9bfda52

Browse files
committed
build: release 4.5.15
Hot Fix: Vuescroll's width and height should default to `100%` in case of getting an incorrect size in slide mode .
1 parent 76ec8a4 commit 9bfda52

File tree

8 files changed

+21
-21
lines changed

8 files changed

+21
-21
lines changed

dist/vuescroll.common.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* @name: vuescroll 4.5.14
2+
* @name: vuescroll 4.5.15
33
* @author: (c) 2018-2018 wangyi7099
44
* @description: A reactive virtual scrollbar based on vue.js 2.X
55
* @license: MIT
@@ -3098,8 +3098,8 @@ var vueScrollCore = {
30983098
internalScrollLeft: 0,
30993099
refreshStage: 'deactive',
31003100
loadStage: 'deactive',
3101-
height: '',
3102-
width: ''
3101+
height: '100%',
3102+
width: '100%'
31033103
}
31043104
},
31053105
scrollPanel: {},
@@ -3469,7 +3469,7 @@ var scroll = {
34693469

34703470
Vue$$1.prototype.$vuescrollConfig = deepMerge(GCF, {});
34713471
scroll.isInstalled = true;
3472-
scroll.version = '4.5.14';
3472+
scroll.version = '4.5.15';
34733473
}
34743474
};
34753475
/* istanbul ignore if */

dist/vuescroll.common.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vuescroll.esm.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* @name: vuescroll 4.5.14
2+
* @name: vuescroll 4.5.15
33
* @author: (c) 2018-2018 wangyi7099
44
* @description: A reactive virtual scrollbar based on vue.js 2.X
55
* @license: MIT
@@ -3094,8 +3094,8 @@ var vueScrollCore = {
30943094
internalScrollLeft: 0,
30953095
refreshStage: 'deactive',
30963096
loadStage: 'deactive',
3097-
height: '',
3098-
width: ''
3097+
height: '100%',
3098+
width: '100%'
30993099
}
31003100
},
31013101
scrollPanel: {},
@@ -3465,7 +3465,7 @@ var scroll = {
34653465

34663466
Vue$$1.prototype.$vuescrollConfig = deepMerge(GCF, {});
34673467
scroll.isInstalled = true;
3468-
scroll.version = '4.5.14';
3468+
scroll.version = '4.5.15';
34693469
}
34703470
};
34713471
/* istanbul ignore if */

dist/vuescroll.esm.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vuescroll.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* @name: vuescroll 4.5.14
2+
* @name: vuescroll 4.5.15
33
* @author: (c) 2018-2018 wangyi7099
44
* @description: A reactive virtual scrollbar based on vue.js 2.X
55
* @license: MIT
@@ -3100,8 +3100,8 @@ var vueScrollCore = {
31003100
internalScrollLeft: 0,
31013101
refreshStage: 'deactive',
31023102
loadStage: 'deactive',
3103-
height: '',
3104-
width: ''
3103+
height: '100%',
3104+
width: '100%'
31053105
}
31063106
},
31073107
scrollPanel: {},
@@ -3471,7 +3471,7 @@ var scroll = {
34713471

34723472
Vue$$1.prototype.$vuescrollConfig = deepMerge(GCF, {});
34733473
scroll.isInstalled = true;
3474-
scroll.version = '4.5.14';
3474+
scroll.version = '4.5.15';
34753475
}
34763476
};
34773477
/* istanbul ignore if */

dist/vuescroll.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"report-coverage": "codecov",
3535
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
3636
},
37-
"version": "4.5.14",
37+
"version": "4.5.15",
3838
"devDependencies": {
3939
"babel-core": "^6.26.0",
4040
"babel-helper-vue-jsx-merge-props": "^2.0.3",

src/components/vuescroll.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ const vueScrollCore = {
5353
internalScrollLeft: 0,
5454
refreshStage: 'deactive',
5555
loadStage: 'deactive',
56-
height: '',
57-
width: ''
56+
height: '100%',
57+
width: '100%'
5858
}
5959
},
6060
scrollPanel: {},

0 commit comments

Comments
 (0)