build: compile 0.5.20

This commit is contained in:
陈嘉涵 2019-08-24 09:37:19 +08:00
parent 6df1bd191b
commit b1cdd7733a
19 changed files with 51 additions and 12 deletions

4
dist/area/index.js vendored
View File

@ -27,8 +27,8 @@ VantComponent({
},
mounted() {
setTimeout(() => {
this.setValues()
}, 0)
this.setValues();
}, 0);
},
methods: {
getPicker() {

View File

@ -6,6 +6,7 @@ VantComponent({
classes: ['hover-class', 'loading-class'],
props: {
icon: String,
color: String,
plain: Boolean,
block: Boolean,
round: Boolean,

View File

@ -5,6 +5,7 @@
class="custom-class {{ utils.bem('button', [type, size, { block, round, plain, square, loading, disabled, hairline, unclickable: disabled || loading }]) }} {{ hairline ? 'van-hairline--surround' : '' }}"
open-type="{{ openType }}"
hover-class="van-button--active hover-class"
style="{{ color ? 'border-color: ' + color + ';' + (plain ? 'color: ' + color : 'color: #fff; background-color: ' + color) : '' }}"
lang="{{ lang }}"
business-id="{{ businessId }}"
session-from="{{ sessionFrom }}"

8
dist/field/index.js vendored
View File

@ -28,6 +28,14 @@ VantComponent({
placeholder: String,
placeholderStyle: String,
errorMessageAlign: String,
selectionEnd: {
type: Number,
value: -1
},
selectionStart: {
type: Number,
value: -1
},
showConfirmBar: {
type: Boolean,
value: true

View File

@ -27,6 +27,8 @@
cursor-spacing="{{ cursorSpacing }}"
adjust-position="{{ adjustPosition }}"
show-confirm-bar="{{ showConfirmBar }}"
selection-end="{{ selectionEnd }}"
selection-start="{{ selectionStart }}"
bindinput="onInput"
bind:blur="onBlur"
bind:focus="onFocus"
@ -51,6 +53,8 @@
confirm-hold="{{ confirmHold }}"
cursor-spacing="{{ cursorSpacing }}"
adjust-position="{{ adjustPosition }}"
selection-end="{{ selectionEnd }}"
selection-start="{{ selectionStart }}"
password="{{ password || type === 'password' }}"
bindinput="onInput"
bind:blur="onBlur"

View File

@ -1,5 +1,5 @@
<view
wx:if="{{ info !== null }}"
wx:if="{{ info !== null && info !== '' }}"
class="custom-class van-info"
style="{{ customStyle }}"
>{{ info }}</view>

View File

@ -49,7 +49,7 @@ export const transition = function (showDefaultValue) {
enter() {
const { duration, name } = this.data;
const classNames = getClassNames(name);
const currentDuration = isObj(duration) ? duration.leave : duration;
const currentDuration = isObj(duration) ? duration.enter : duration;
this.status = 'enter';
Promise.resolve()
.then(nextTick)

View File

@ -3,6 +3,7 @@ VantComponent({
field: true,
classes: ['field-class', 'input-class', 'cancel-class'],
props: {
label: String,
focus: Boolean,
error: Boolean,
disabled: Boolean,
@ -24,7 +25,10 @@ VantComponent({
type: String,
value: 'square'
},
label: String
clearable: {
type: Boolean,
value: true
}
},
methods: {
onChange(event) {

View File

@ -9,7 +9,6 @@
<slot wx:else name="label" />
<van-field
clearable
type="search"
left-icon="search"
focus="{{ focus }}"
@ -20,6 +19,7 @@
value="{{ value }}"
disabled="{{ disabled }}"
readonly="{{ readonly }}"
clearable="{{ clearable }}"
maxlength="{{ maxlength }}"
input-align="{{ inputAlign }}"
input-class="input-class"

2
dist/wxs/utils.wxs vendored
View File

@ -2,7 +2,7 @@ var bem = require('./bem.wxs').bem;
var memoize = require('./memoize.wxs').memoize;
function isSrc(url) {
return url.indexOf(".") === 0 || url.indexOf("/") === 0 || url.indexOf('http') === 0 || url.indexOf('data:image') === 0 || url.indexOf('//') === 0;
return url.indexOf('http') === 0 || url.indexOf('data:image') === 0 || url.indexOf('//') === 0;
}
module.exports = {

View File

@ -39,7 +39,10 @@ component_1.VantComponent({
}
},
mounted: function () {
this.setValues();
var _this = this;
setTimeout(function () {
_this.setValues();
}, 0);
},
methods: {
getPicker: function () {

View File

@ -8,6 +8,7 @@ component_1.VantComponent({
classes: ['hover-class', 'loading-class'],
props: {
icon: String,
color: String,
plain: Boolean,
block: Boolean,
round: Boolean,

View File

@ -5,6 +5,7 @@
class="custom-class {{ utils.bem('button', [type, size, { block, round, plain, square, loading, disabled, hairline, unclickable: disabled || loading }]) }} {{ hairline ? 'van-hairline--surround' : '' }}"
open-type="{{ openType }}"
hover-class="van-button--active hover-class"
style="{{ color ? 'border-color: ' + color + ';' + (plain ? 'color: ' + color : 'color: #fff; background-color: ' + color) : '' }}"
lang="{{ lang }}"
business-id="{{ businessId }}"
session-from="{{ sessionFrom }}"

View File

@ -30,6 +30,14 @@ component_1.VantComponent({
placeholder: String,
placeholderStyle: String,
errorMessageAlign: String,
selectionEnd: {
type: Number,
value: -1
},
selectionStart: {
type: Number,
value: -1
},
showConfirmBar: {
type: Boolean,
value: true

View File

@ -27,6 +27,8 @@
cursor-spacing="{{ cursorSpacing }}"
adjust-position="{{ adjustPosition }}"
show-confirm-bar="{{ showConfirmBar }}"
selection-end="{{ selectionEnd }}"
selection-start="{{ selectionStart }}"
bindinput="onInput"
bind:blur="onBlur"
bind:focus="onFocus"
@ -51,6 +53,8 @@
confirm-hold="{{ confirmHold }}"
cursor-spacing="{{ cursorSpacing }}"
adjust-position="{{ adjustPosition }}"
selection-end="{{ selectionEnd }}"
selection-start="{{ selectionStart }}"
password="{{ password || type === 'password' }}"
bindinput="onInput"
bind:blur="onBlur"

View File

@ -1,5 +1,5 @@
<view
wx:if="{{ info !== null }}"
wx:if="{{ info !== null && info !== '' }}"
class="custom-class van-info"
style="{{ customStyle }}"
>{{ info }}</view>

View File

@ -52,7 +52,7 @@ exports.transition = function (showDefaultValue) {
var _this = this;
var _a = this.data, duration = _a.duration, name = _a.name;
var classNames = getClassNames(name);
var currentDuration = utils_1.isObj(duration) ? duration.leave : duration;
var currentDuration = utils_1.isObj(duration) ? duration.enter : duration;
this.status = 'enter';
Promise.resolve()
.then(nextTick)

View File

@ -5,6 +5,7 @@ component_1.VantComponent({
field: true,
classes: ['field-class', 'input-class', 'cancel-class'],
props: {
label: String,
focus: Boolean,
error: Boolean,
disabled: Boolean,
@ -26,7 +27,10 @@ component_1.VantComponent({
type: String,
value: 'square'
},
label: String
clearable: {
type: Boolean,
value: true
}
},
methods: {
onChange: function (event) {

View File

@ -9,7 +9,6 @@
<slot wx:else name="label" />
<van-field
clearable
type="search"
left-icon="search"
focus="{{ focus }}"
@ -20,6 +19,7 @@
value="{{ value }}"
disabled="{{ disabled }}"
readonly="{{ readonly }}"
clearable="{{ clearable }}"
maxlength="{{ maxlength }}"
input-align="{{ inputAlign }}"
input-class="input-class"