mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
build: compile 0.5.20
This commit is contained in:
parent
6df1bd191b
commit
b1cdd7733a
4
dist/area/index.js
vendored
4
dist/area/index.js
vendored
@ -27,8 +27,8 @@ VantComponent({
|
||||
},
|
||||
mounted() {
|
||||
setTimeout(() => {
|
||||
this.setValues()
|
||||
}, 0)
|
||||
this.setValues();
|
||||
}, 0);
|
||||
},
|
||||
methods: {
|
||||
getPicker() {
|
||||
|
1
dist/button/index.js
vendored
1
dist/button/index.js
vendored
@ -6,6 +6,7 @@ VantComponent({
|
||||
classes: ['hover-class', 'loading-class'],
|
||||
props: {
|
||||
icon: String,
|
||||
color: String,
|
||||
plain: Boolean,
|
||||
block: Boolean,
|
||||
round: Boolean,
|
||||
|
1
dist/button/index.wxml
vendored
1
dist/button/index.wxml
vendored
@ -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
8
dist/field/index.js
vendored
@ -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
|
||||
|
4
dist/field/index.wxml
vendored
4
dist/field/index.wxml
vendored
@ -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"
|
||||
|
2
dist/info/index.wxml
vendored
2
dist/info/index.wxml
vendored
@ -1,5 +1,5 @@
|
||||
<view
|
||||
wx:if="{{ info !== null }}"
|
||||
wx:if="{{ info !== null && info !== '' }}"
|
||||
class="custom-class van-info"
|
||||
style="{{ customStyle }}"
|
||||
>{{ info }}</view>
|
||||
|
2
dist/mixins/transition.js
vendored
2
dist/mixins/transition.js
vendored
@ -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)
|
||||
|
6
dist/search/index.js
vendored
6
dist/search/index.js
vendored
@ -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) {
|
||||
|
2
dist/search/index.wxml
vendored
2
dist/search/index.wxml
vendored
@ -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
2
dist/wxs/utils.wxs
vendored
@ -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 = {
|
||||
|
@ -39,7 +39,10 @@ component_1.VantComponent({
|
||||
}
|
||||
},
|
||||
mounted: function () {
|
||||
this.setValues();
|
||||
var _this = this;
|
||||
setTimeout(function () {
|
||||
_this.setValues();
|
||||
}, 0);
|
||||
},
|
||||
methods: {
|
||||
getPicker: function () {
|
||||
|
@ -8,6 +8,7 @@ component_1.VantComponent({
|
||||
classes: ['hover-class', 'loading-class'],
|
||||
props: {
|
||||
icon: String,
|
||||
color: String,
|
||||
plain: Boolean,
|
||||
block: Boolean,
|
||||
round: Boolean,
|
||||
|
@ -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 }}"
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
|
@ -1,5 +1,5 @@
|
||||
<view
|
||||
wx:if="{{ info !== null }}"
|
||||
wx:if="{{ info !== null && info !== '' }}"
|
||||
class="custom-class van-info"
|
||||
style="{{ customStyle }}"
|
||||
>{{ info }}</view>
|
||||
|
@ -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)
|
||||
|
@ -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) {
|
||||
|
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user