mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[build] 0.4.4
This commit is contained in:
parent
15f7a81773
commit
975c64f48b
2
dist/common/index.wxss
vendored
2
dist/common/index.wxss
vendored
@ -1 +1 @@
|
|||||||
.van-ellipsis{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.van-multi-ellipsis--l2{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2}.van-multi-ellipsis--l3{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3}.van-clearfix::after{content:'';display:table;clear:both}.van-hairline,.van-hairline--bottom,.van-hairline--left,.van-hairline--right,.van-hairline--surround,.van-hairline--top,.van-hairline--top-bottom{position:relative}.van-hairline--bottom::after,.van-hairline--left::after,.van-hairline--right::after,.van-hairline--surround::after,.van-hairline--top-bottom::after,.van-hairline--top::after,.van-hairline::after{content:' ';position:absolute;pointer-events:none;box-sizing:border-box;-webkit-transform-origin:center;transform-origin:center;top:-50%;left:-50%;right:-50%;bottom:-50%;-webkit-transform:scale(.5);transform:scale(.5);border:0 solid #eee}.van-hairline--top::after{border-top-width:1px}.van-hairline--left::after{border-left-width:1px}.van-hairline--right::after{border-right-width:1px}.van-hairline--bottom::after{border-bottom-width:1px}.van-hairline--top-bottom::after{border-width:1px 0}.van-hairline--surround::after{border-width:1px}
|
.van-ellipsis{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.van-multi-ellipsis--l2{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.van-multi-ellipsis--l3{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical}.van-clearfix::after{content:'';display:table;clear:both}.van-hairline,.van-hairline--bottom,.van-hairline--left,.van-hairline--right,.van-hairline--surround,.van-hairline--top,.van-hairline--top-bottom{position:relative}.van-hairline--bottom::after,.van-hairline--left::after,.van-hairline--right::after,.van-hairline--surround::after,.van-hairline--top-bottom::after,.van-hairline--top::after,.van-hairline::after{content:' ';position:absolute;pointer-events:none;box-sizing:border-box;-webkit-transform-origin:center;transform-origin:center;top:-50%;left:-50%;right:-50%;bottom:-50%;-webkit-transform:scale(.5);transform:scale(.5);border:0 solid #eee}.van-hairline--top::after{border-top-width:1px}.van-hairline--left::after{border-left-width:1px}.van-hairline--right::after{border-right-width:1px}.van-hairline--bottom::after{border-bottom-width:1px}.van-hairline--top-bottom::after{border-width:1px 0}.van-hairline--surround::after{border-width:1px}
|
2
dist/common/style/ellipsis.wxss
vendored
2
dist/common/style/ellipsis.wxss
vendored
@ -1 +1 @@
|
|||||||
.van-ellipsis{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.van-multi-ellipsis--l2{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2}.van-multi-ellipsis--l3{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3}
|
.van-ellipsis{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.van-multi-ellipsis--l2{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.van-multi-ellipsis--l3{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical}
|
3
dist/panel/index.js
vendored
3
dist/panel/index.js
vendored
@ -1,11 +1,10 @@
|
|||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
VantComponent({
|
VantComponent({
|
||||||
classes: ['footer-class'],
|
classes: ['header-class', 'footer-class'],
|
||||||
props: {
|
props: {
|
||||||
desc: String,
|
desc: String,
|
||||||
title: String,
|
title: String,
|
||||||
status: String,
|
status: String,
|
||||||
headerClass: String,
|
|
||||||
useFooterSlot: Boolean
|
useFooterSlot: Boolean
|
||||||
}
|
}
|
||||||
});
|
});
|
2
dist/panel/index.wxml
vendored
2
dist/panel/index.wxml
vendored
@ -4,7 +4,7 @@
|
|||||||
title="{{ title }}"
|
title="{{ title }}"
|
||||||
label="{{ desc }}"
|
label="{{ desc }}"
|
||||||
value="{{ status }}"
|
value="{{ status }}"
|
||||||
custom-class="{{ headerClass }}"
|
custom-class="header-class"
|
||||||
value-class="van-panel__header-value"
|
value-class="van-panel__header-value"
|
||||||
/>
|
/>
|
||||||
<slot wx:else name="header" />
|
<slot wx:else name="header" />
|
||||||
|
2
dist/search/index.js
vendored
2
dist/search/index.js
vendored
@ -4,8 +4,10 @@ VantComponent({
|
|||||||
classes: ['cancel-class'],
|
classes: ['cancel-class'],
|
||||||
props: {
|
props: {
|
||||||
focus: Boolean,
|
focus: Boolean,
|
||||||
|
error: Boolean,
|
||||||
disabled: Boolean,
|
disabled: Boolean,
|
||||||
readonly: Boolean,
|
readonly: Boolean,
|
||||||
|
inputAlign: String,
|
||||||
showAction: Boolean,
|
showAction: Boolean,
|
||||||
useActionSlot: Boolean,
|
useActionSlot: Boolean,
|
||||||
placeholder: String,
|
placeholder: String,
|
||||||
|
2
dist/search/index.wxml
vendored
2
dist/search/index.wxml
vendored
@ -8,12 +8,14 @@
|
|||||||
type="search"
|
type="search"
|
||||||
left-icon="search"
|
left-icon="search"
|
||||||
focus="{{ focus }}"
|
focus="{{ focus }}"
|
||||||
|
error="{{ error }}"
|
||||||
border="{{ false }}"
|
border="{{ false }}"
|
||||||
confirm-type="search"
|
confirm-type="search"
|
||||||
value="{{ value }}"
|
value="{{ value }}"
|
||||||
disabled="{{ disabled }}"
|
disabled="{{ disabled }}"
|
||||||
readonly="{{ readony }}"
|
readonly="{{ readony }}"
|
||||||
maxlength="{{ maxlength }}"
|
maxlength="{{ maxlength }}"
|
||||||
|
input-align="{{ inputAlign }}"
|
||||||
placeholder="{{ placeholder }}"
|
placeholder="{{ placeholder }}"
|
||||||
placeholder-style="{{ placeholderStyle }}"
|
placeholder-style="{{ placeholderStyle }}"
|
||||||
custom-style="padding: 3px 10px"
|
custom-style="padding: 3px 10px"
|
||||||
|
142
dist/swipe-cell/index.js
vendored
Normal file
142
dist/swipe-cell/index.js
vendored
Normal file
@ -0,0 +1,142 @@
|
|||||||
|
import { VantComponent } from '../common/component';
|
||||||
|
import { touch } from '../mixins/touch';
|
||||||
|
var THRESHOLD = 0.15;
|
||||||
|
VantComponent({
|
||||||
|
props: {
|
||||||
|
disabled: Boolean,
|
||||||
|
leftWidth: {
|
||||||
|
type: Number,
|
||||||
|
value: 0
|
||||||
|
},
|
||||||
|
rightWidth: {
|
||||||
|
type: Number,
|
||||||
|
value: 0
|
||||||
|
},
|
||||||
|
asyncClose: Boolean
|
||||||
|
},
|
||||||
|
mixins: [touch],
|
||||||
|
data: {
|
||||||
|
offset: 0,
|
||||||
|
draging: false
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
wrapperStyle: function wrapperStyle() {
|
||||||
|
var _this$data = this.data,
|
||||||
|
offset = _this$data.offset,
|
||||||
|
draging = _this$data.draging;
|
||||||
|
return "\n transform: translate3d(" + offset + "px, 0, 0);\n transition: " + (draging ? 'none' : '.6s cubic-bezier(0.18, 0.89, 0.32, 1)') + ";\n ";
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
onTransitionend: function onTransitionend() {
|
||||||
|
this.swipe = false;
|
||||||
|
},
|
||||||
|
open: function open(position) {
|
||||||
|
var _this$data2 = this.data,
|
||||||
|
leftWidth = _this$data2.leftWidth,
|
||||||
|
rightWidth = _this$data2.rightWidth;
|
||||||
|
var offset = position === 'left' ? leftWidth : -rightWidth;
|
||||||
|
this.swipeMove(offset);
|
||||||
|
this.resetSwipeStatus();
|
||||||
|
},
|
||||||
|
close: function close() {
|
||||||
|
this.setData({
|
||||||
|
offset: 0
|
||||||
|
});
|
||||||
|
},
|
||||||
|
resetSwipeStatus: function resetSwipeStatus() {
|
||||||
|
this.swiping = false;
|
||||||
|
this.opened = true;
|
||||||
|
},
|
||||||
|
swipeMove: function swipeMove(offset) {
|
||||||
|
if (offset === void 0) {
|
||||||
|
offset = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.setData({
|
||||||
|
offset: offset
|
||||||
|
});
|
||||||
|
offset && (this.swiping = true);
|
||||||
|
!offset && (this.opened = false);
|
||||||
|
},
|
||||||
|
swipeLeaveTransition: function swipeLeaveTransition(direction) {
|
||||||
|
var _this$data3 = this.data,
|
||||||
|
offset = _this$data3.offset,
|
||||||
|
leftWidth = _this$data3.leftWidth,
|
||||||
|
rightWidth = _this$data3.rightWidth;
|
||||||
|
var threshold = this.opened ? 1 - THRESHOLD : THRESHOLD; // right
|
||||||
|
|
||||||
|
if (direction > 0 && -offset > rightWidth * threshold && rightWidth > 0) {
|
||||||
|
this.open('right'); // left
|
||||||
|
} else if (direction < 0 && offset > leftWidth * threshold && leftWidth > 0) {
|
||||||
|
this.open('left');
|
||||||
|
} else {
|
||||||
|
this.swipeMove();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
startDrag: function startDrag(event) {
|
||||||
|
if (this.data.disabled) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.setData({
|
||||||
|
draging: true
|
||||||
|
});
|
||||||
|
this.touchStart(event);
|
||||||
|
|
||||||
|
if (this.opened) {
|
||||||
|
this.startX -= this.data.offset;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onDrag: function onDrag(event) {
|
||||||
|
if (this.data.disabled) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.touchMove(event);
|
||||||
|
var deltaX = this.deltaX;
|
||||||
|
var _this$data4 = this.data,
|
||||||
|
leftWidth = _this$data4.leftWidth,
|
||||||
|
rightWidth = _this$data4.rightWidth;
|
||||||
|
|
||||||
|
if (deltaX < 0 && (-deltaX > rightWidth || !rightWidth) || deltaX > 0 && (deltaX > leftWidth || deltaX > 0 && !leftWidth)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this.direction === 'horizontal') {
|
||||||
|
this.swipeMove(deltaX);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
endDrag: function endDrag() {
|
||||||
|
if (this.data.disabled) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.setData({
|
||||||
|
draging: false
|
||||||
|
});
|
||||||
|
|
||||||
|
if (this.swiping) {
|
||||||
|
this.swipeLeaveTransition(this.data.offset > 0 ? -1 : 1);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onClick: function onClick(event) {
|
||||||
|
var _event$currentTarget$ = event.currentTarget.dataset.key,
|
||||||
|
position = _event$currentTarget$ === void 0 ? 'outside' : _event$currentTarget$;
|
||||||
|
this.$emit('click', position);
|
||||||
|
|
||||||
|
if (!this.data.offset) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this.data.asyncClose) {
|
||||||
|
this.$emit('close', {
|
||||||
|
position: position,
|
||||||
|
instance: this
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
this.swipeMove(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
3
dist/swipe-cell/index.json
vendored
Normal file
3
dist/swipe-cell/index.json
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"component": true
|
||||||
|
}
|
22
dist/swipe-cell/index.wxml
vendored
Normal file
22
dist/swipe-cell/index.wxml
vendored
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
<view
|
||||||
|
class="van-swipe-cell"
|
||||||
|
data-key="cell"
|
||||||
|
bindtap="onClick"
|
||||||
|
bindtouchstart="startDrag"
|
||||||
|
bindtouchmove="onDrag"
|
||||||
|
bindtouchend="endDrag"
|
||||||
|
bindtouchcancel="endDrag"
|
||||||
|
>
|
||||||
|
<view
|
||||||
|
style="{{ wrapperStyle }}"
|
||||||
|
bindtransitionend="onTransitionend"
|
||||||
|
>
|
||||||
|
<view wx:if="{{ leftWidth }}" class="van-swipe-cell__left" data-key="left" catch:tap="onClick">
|
||||||
|
<slot name="left" />
|
||||||
|
</view>
|
||||||
|
<slot />
|
||||||
|
<view wx:if="{{ rightWidth }}" class="van-swipe-cell__right" data-key="right" catch:tap="onClick">
|
||||||
|
<slot name="right" />
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
1
dist/swipe-cell/index.wxss
vendored
Normal file
1
dist/swipe-cell/index.wxss
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
@import '../common/index.wxss';.van-swipe-cell{position:relative;overflow:hidden}.van-swipe-cell__left,.van-swipe-cell__right{position:absolute;top:0;height:100%}.van-swipe-cell__left{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.van-swipe-cell__right{right:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}
|
1
dist/tab/index.js
vendored
1
dist/tab/index.js
vendored
@ -24,7 +24,6 @@ VantComponent({
|
|||||||
var parent = this.getRelationNodes('../tabs/index')[0];
|
var parent = this.getRelationNodes('../tabs/index')[0];
|
||||||
|
|
||||||
if (parent) {
|
if (parent) {
|
||||||
parent.setLine();
|
|
||||||
parent.updateTabs();
|
parent.updateTabs();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
7
dist/tabs/index.js
vendored
7
dist/tabs/index.js
vendored
@ -139,8 +139,11 @@ VantComponent({
|
|||||||
item.instance.setData(data);
|
item.instance.setData(data);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
this.setLine();
|
this.setData({}, function () {
|
||||||
this.scrollIntoView();
|
_this2.setLine();
|
||||||
|
|
||||||
|
_this2.scrollIntoView();
|
||||||
|
});
|
||||||
},
|
},
|
||||||
// scroll active tab into view
|
// scroll active tab into view
|
||||||
scrollIntoView: function scrollIntoView() {
|
scrollIntoView: function scrollIntoView() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user