Skip to content

Commit

Permalink
feat: add border-radius to rail
Browse files Browse the repository at this point in the history
  • Loading branch information
wangyi7099 committed Jun 4, 2018
1 parent b8d8884 commit 1d9f418
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions dist/vuescroll.common.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* vuescroll 4.6.0
* vuescroll 4.6.1
* (c) 2018-2018 wangyi7099
* Released under the MIT License
*/
Expand Down Expand Up @@ -2853,7 +2853,7 @@ var bar = {
style: (_style2 = {
position: 'absolute',
zIndex: 1,
// borderRadius: vm.ops.rail[vm.bar.opsSize],
borderRadius: vm.ops.rail[vm.bar.opsSize],
background: railBackgroundColor
}, _defineProperty$1(_style2, vm.bar.opsSize, vm.ops.rail[vm.bar.opsSize]), _defineProperty$1(_style2, vm.bar.posName, '2px'), _defineProperty$1(_style2, vm.bar.opposName, '2px'), _defineProperty$1(_style2, vm.ops.rail.pos, 0), _style2),
on: {
Expand Down Expand Up @@ -3734,7 +3734,7 @@ var Vuescroll = {
Vue$$1.prototype.$vuescrollConfig = deepMerge(GCF, {});
},

version: '4.6.0'
version: '4.6.1'
};

/* istanbul ignore if */
Expand Down
2 changes: 1 addition & 1 deletion dist/vuescroll.common.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/vuescroll.esm.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* vuescroll 4.6.0
* vuescroll 4.6.1
* (c) 2018-2018 wangyi7099
* Released under the MIT License
*/
Expand Down Expand Up @@ -2849,7 +2849,7 @@ var bar = {
style: (_style2 = {
position: 'absolute',
zIndex: 1,
// borderRadius: vm.ops.rail[vm.bar.opsSize],
borderRadius: vm.ops.rail[vm.bar.opsSize],
background: railBackgroundColor
}, _defineProperty$1(_style2, vm.bar.opsSize, vm.ops.rail[vm.bar.opsSize]), _defineProperty$1(_style2, vm.bar.posName, '2px'), _defineProperty$1(_style2, vm.bar.opposName, '2px'), _defineProperty$1(_style2, vm.ops.rail.pos, 0), _style2),
on: {
Expand Down Expand Up @@ -3730,7 +3730,7 @@ var Vuescroll = {
Vue$$1.prototype.$vuescrollConfig = deepMerge(GCF, {});
},

version: '4.6.0'
version: '4.6.1'
};

/* istanbul ignore if */
Expand Down
2 changes: 1 addition & 1 deletion dist/vuescroll.esm.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/vuescroll.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* vuescroll 4.6.0
* vuescroll 4.6.1
* (c) 2018-2018 wangyi7099
* Released under the MIT License
*/
Expand Down Expand Up @@ -2855,7 +2855,7 @@ var bar = {
style: (_style2 = {
position: 'absolute',
zIndex: 1,
// borderRadius: vm.ops.rail[vm.bar.opsSize],
borderRadius: vm.ops.rail[vm.bar.opsSize],
background: railBackgroundColor
}, _defineProperty$1(_style2, vm.bar.opsSize, vm.ops.rail[vm.bar.opsSize]), _defineProperty$1(_style2, vm.bar.posName, '2px'), _defineProperty$1(_style2, vm.bar.opposName, '2px'), _defineProperty$1(_style2, vm.ops.rail.pos, 0), _style2),
on: {
Expand Down Expand Up @@ -3736,7 +3736,7 @@ var Vuescroll = {
Vue$$1.prototype.$vuescrollConfig = deepMerge(GCF, {});
},

version: '4.6.0'
version: '4.6.1'
};

/* istanbul ignore if */
Expand Down
2 changes: 1 addition & 1 deletion dist/vuescroll.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"report-coverage": "codecov",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"version": "4.6.0",
"version": "4.6.1",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
Expand Down
2 changes: 1 addition & 1 deletion src/components/child-components/vuescroll-bar.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ export default {
style: {
position: 'absolute',
zIndex: 1,
// borderRadius: vm.ops.rail[vm.bar.opsSize],
borderRadius: vm.ops.rail[vm.bar.opsSize],
background: railBackgroundColor,
[vm.bar.opsSize]: vm.ops.rail[vm.bar.opsSize],
[vm.bar.posName]: '2px',
Expand Down

0 comments on commit 1d9f418

Please sign in to comment.