[build] 0.5.17

This commit is contained in:
rex-zsd 2019-07-30 20:29:34 +08:00
parent 2a6916be2d
commit fa5458ba31
29 changed files with 86 additions and 66 deletions

View File

@ -67,11 +67,9 @@ VantComponent({
contentHeight: height ? `${height}px` : 'auto' contentHeight: height ? `${height}px` : 'auto'
}); });
} }
else { return this.set({ contentHeight: `${height}px` })
return this.set({ contentHeight: `${height}px` }) .then(nextTick)
.then(nextTick) .then(() => this.set({ contentHeight: 0 }));
.then(() => this.set({ contentHeight: 0 }));
}
}); });
}, },
onClick() { onClick() {

View File

@ -91,7 +91,8 @@ VantComponent({
}, },
getPicker() { getPicker() {
if (this.picker == null) { if (this.picker == null) {
const picker = (this.picker = this.selectComponent('.van-datetime-picker')); this.picker = this.selectComponent('.van-datetime-picker');
const { picker } = this;
const { setColumnValues } = picker; const { setColumnValues } = picker;
picker.setColumnValues = (...args) => setColumnValues.apply(picker, [...args, false]); picker.setColumnValues = (...args) => setColumnValues.apply(picker, [...args, false]);
} }
@ -99,7 +100,7 @@ VantComponent({
}, },
updateColumns() { updateColumns() {
const { formatter = defaultFormatter } = this.data; const { formatter = defaultFormatter } = this.data;
const results = this.getRanges().map(({ type, range }, index) => { const results = this.getRanges().map(({ type, range }) => {
const values = times(range[1] - range[0] + 1, index => { const values = times(range[1] - range[0] + 1, index => {
let value = range[0] + index; let value = range[0] + index;
value = type === 'year' ? `${value}` : padZero(value); value = type === 'year' ? `${value}` : padZero(value);

View File

@ -10,6 +10,7 @@ declare type DialogOptions = {
selector?: string; selector?: string;
ariaLabel?: string; ariaLabel?: string;
className?: string; className?: string;
customStyle?: string;
transition?: string; transition?: string;
asyncClose?: boolean; asyncClose?: boolean;
businessId?: number; businessId?: number;

View File

@ -25,6 +25,7 @@ Dialog.defaultOptions = {
zIndex: 100, zIndex: 100,
overlay: true, overlay: true,
className: '', className: '',
customStyle: '',
asyncClose: false, asyncClose: false,
messageAlign: '', messageAlign: '',
transition: 'scale', transition: 'scale',

View File

@ -9,6 +9,7 @@ VantComponent({
message: String, message: String,
useSlot: Boolean, useSlot: Boolean,
className: String, className: String,
customStyle: String,
asyncClose: Boolean, asyncClose: Boolean,
messageAlign: String, messageAlign: String,
showCancelButton: Boolean, showCancelButton: Boolean,

View File

@ -4,6 +4,7 @@
overlay="{{ overlay }}" overlay="{{ overlay }}"
custom-class="van-dialog {{ className }}" custom-class="van-dialog {{ className }}"
transition="{{ transition }}" transition="{{ transition }}"
custom-style="{{ customStyle }}"
close-on-click-overlay="{{ closeOnClickOverlay }}" close-on-click-overlay="{{ closeOnClickOverlay }}"
bind:close="onClickOverlay" bind:close="onClickOverlay"
> >

View File

@ -1 +1 @@
@import '../common/index.wxss';.van-dialog{width:85%;overflow:hidden;font-size:16px;background-color:#fff;border-radius:4px}.van-dialog__header{padding-top:25px;font-weight:500;text-align:center}.van-dialog__header--isolated{padding:25px 0}.van-dialog__message{max-height:60vh;padding:25px;overflow-y:auto;font-size:14px;line-height:1.5;text-align:center;-webkit-overflow-scrolling:touch}.van-dialog__message--has-title{padding-top:12px;color:#7d7e80}.van-dialog__message--left{text-align:left}.van-dialog__message--right{text-align:right}.van-dialog__footer{display:-webkit-flex;display:flex}.van-dialog__button{-webkit-flex:1;flex:1}.van-dialog__cancel,.van-dialog__confirm{border:0!important}.van-dialog__confirm{color:#1989fa!important}.van-dialog-bounce-enter{opacity:0;-webkit-transform:translate3d(-50%,-50%,0) scale(.7);transform:translate3d(-50%,-50%,0) scale(.7)}.van-dialog-bounce-leave-active{opacity:0;-webkit-transform:translate3d(-50%,-50%,0) scale(.9);transform:translate3d(-50%,-50%,0) scale(.9)} @import '../common/index.wxss';.van-dialog{top:45%!important;width:85%;overflow:hidden;font-size:16px;background-color:#fff;border-radius:4px}.van-dialog__header{padding-top:25px;font-weight:500;line-height:24px;text-align:center}.van-dialog__header--isolated{padding:25px 0}.van-dialog__message{max-height:60vh;padding:25px;overflow-y:auto;font-size:14px;line-height:20px;text-align:center;-webkit-overflow-scrolling:touch}.van-dialog__message--has-title{padding-top:12px;color:#7d7e80}.van-dialog__message--left{text-align:left}.van-dialog__message--right{text-align:right}.van-dialog__footer{display:-webkit-flex;display:flex}.van-dialog__button{-webkit-flex:1;flex:1}.van-dialog__cancel,.van-dialog__confirm{border:0!important}.van-dialog__confirm{color:#1989fa!important}.van-dialog-bounce-enter{opacity:0;-webkit-transform:translate3d(-50%,-50%,0) scale(.7);transform:translate3d(-50%,-50%,0) scale(.7)}.van-dialog-bounce-leave-active{opacity:0;-webkit-transform:translate3d(-50%,-50%,0) scale(.9);transform:translate3d(-50%,-50%,0) scale(.9)}

View File

@ -1,7 +1,7 @@
export const basic = Behavior({ export const basic = Behavior({
methods: { methods: {
$emit() { $emit(...args) {
this.triggerEvent.apply(this, arguments); this.triggerEvent(...args);
}, },
getRect(selector, all) { getRect(selector, all) {
return new Promise(resolve => { return new Promise(resolve => {

View File

@ -3,7 +3,6 @@ function setAsync(context, data) {
context.setData(data, resolve); context.setData(data, resolve);
}); });
} }
;
export const behavior = Behavior({ export const behavior = Behavior({
created() { created() {
if (!this.$options) { if (!this.$options) {
@ -17,7 +16,8 @@ export const behavior = Behavior({
keys.forEach(key => { keys.forEach(key => {
const value = computed[key].call(this); const value = computed[key].call(this);
if (cache[key] !== value) { if (cache[key] !== value) {
cache[key] = needUpdate[key] = value; cache[key] = value;
needUpdate[key] = value;
} }
}); });
return needUpdate; return needUpdate;

View File

@ -8,12 +8,12 @@ export function observeProps(props) {
prop = { type: prop }; prop = { type: prop };
} }
let { observer } = prop; let { observer } = prop;
prop.observer = function () { prop.observer = function (...args) {
if (observer) { if (observer) {
if (typeof observer === 'string') { if (typeof observer === 'string') {
observer = this[observer]; observer = this[observer];
} }
observer.apply(this, arguments); observer.apply(this, args);
} }
this.set(); this.set();
}; };

View File

@ -115,9 +115,7 @@ VantComponent({
userAction && this.$emit('change', index); userAction && this.$emit('change', index);
}); });
} }
else { return this.set({ offset });
return this.set({ offset });
}
}, },
setValue(value) { setValue(value) {
const { options } = this.data; const { options } = this.data;

View File

@ -1,3 +1,5 @@
<wxs src="./index.wxs" module="getOptionText" />
<view <view
class="van-picker-column custom-class" class="van-picker-column custom-class"
style="height: {{ itemHeight * visibleItemCount }}px" style="height: {{ itemHeight * visibleItemCount }}px"
@ -18,14 +20,3 @@
>{{ getOptionText(option, valueKey) }}</view> >{{ getOptionText(option, valueKey) }}</view>
</view> </view>
</view> </view>
<wxs module="getOptionText">
function isObj(x) {
var type = typeof x;
return x !== null && (type === 'object' || type === 'function');
}
module.exports = function (option, valueKey) {
return isObj(option) && option[valueKey] ? option[valueKey] : option;
}
</wxs>

8
dist/picker-column/index.wxs vendored Normal file
View File

@ -0,0 +1,8 @@
function isObj(x) {
var type = typeof x;
return x !== null && (type === 'object' || type === 'function');
}
module.exports = function (option, valueKey) {
return isObj(option) && option[valueKey] != null ? option[valueKey] : option;
}

View File

@ -74,7 +74,7 @@ VantComponent({
setColumnValue(index, value) { setColumnValue(index, value) {
const column = this.getColumn(index); const column = this.getColumn(index);
if (column == null) { if (column == null) {
return Promise.reject('setColumnValue: 对应列不存在'); return Promise.reject(new Error('setColumnValue: 对应列不存在'));
} }
return column.setValue(value); return column.setValue(value);
}, },
@ -86,7 +86,7 @@ VantComponent({
setColumnIndex(columnIndex, optionIndex) { setColumnIndex(columnIndex, optionIndex) {
const column = this.getColumn(columnIndex); const column = this.getColumn(columnIndex);
if (column == null) { if (column == null) {
return Promise.reject('setColumnIndex: 对应列不存在'); return Promise.reject(new Error('setColumnIndex: 对应列不存在'));
} }
return column.setIndex(optionIndex); return column.setIndex(optionIndex);
}, },
@ -98,7 +98,7 @@ VantComponent({
setColumnValues(index, options, needReset = true) { setColumnValues(index, options, needReset = true) {
const column = this.children[index]; const column = this.children[index];
if (column == null) { if (column == null) {
return Promise.reject('setColumnValues: 对应列不存在'); return Promise.reject(new Error('setColumnValues: 对应列不存在'));
} }
const isSame = JSON.stringify(column.data.options) === JSON.stringify(options); const isSame = JSON.stringify(column.data.options) === JSON.stringify(options);
if (isSame) { if (isSame) {

12
dist/search/index.js vendored
View File

@ -32,9 +32,15 @@ VantComponent({
this.$emit('change', event.detail); this.$emit('change', event.detail);
}, },
onCancel() { onCancel() {
this.set({ value: '' }); /**
this.$emit('cancel'); * 修复修改输入框值时输入框失焦和赋值同时触发赋值失效
this.$emit('change', ''); * // https://github.com/youzan/vant-weapp/issues/1768
*/
setTimeout(() => {
this.set({ value: '' });
this.$emit('cancel');
this.$emit('change', '');
}, 200);
}, },
onSearch() { onSearch() {
this.$emit('search', this.data.value); this.$emit('search', this.data.value);

View File

@ -71,11 +71,9 @@ component_1.VantComponent({
contentHeight: height ? height + "px" : 'auto' contentHeight: height ? height + "px" : 'auto'
}); });
} }
else { return _this.set({ contentHeight: height + "px" })
return _this.set({ contentHeight: height + "px" }) .then(nextTick)
.then(nextTick) .then(function () { return _this.set({ contentHeight: 0 }); });
.then(function () { return _this.set({ contentHeight: 0 }); });
}
}); });
}, },
onClick: function () { onClick: function () {

View File

@ -105,7 +105,8 @@ component_1.VantComponent({
}, },
getPicker: function () { getPicker: function () {
if (this.picker == null) { if (this.picker == null) {
var picker_1 = (this.picker = this.selectComponent('.van-datetime-picker')); this.picker = this.selectComponent('.van-datetime-picker');
var picker_1 = this.picker;
var setColumnValues_1 = picker_1.setColumnValues; var setColumnValues_1 = picker_1.setColumnValues;
picker_1.setColumnValues = function () { picker_1.setColumnValues = function () {
var args = []; var args = [];
@ -119,7 +120,7 @@ component_1.VantComponent({
}, },
updateColumns: function () { updateColumns: function () {
var _a = this.data.formatter, formatter = _a === void 0 ? defaultFormatter : _a; var _a = this.data.formatter, formatter = _a === void 0 ? defaultFormatter : _a;
var results = this.getRanges().map(function (_a, index) { var results = this.getRanges().map(function (_a) {
var type = _a.type, range = _a.range; var type = _a.type, range = _a.range;
var values = times(range[1] - range[0] + 1, function (index) { var values = times(range[1] - range[0] + 1, function (index) {
var value = range[0] + index; var value = range[0] + index;

View File

@ -38,6 +38,7 @@ Dialog.defaultOptions = {
zIndex: 100, zIndex: 100,
overlay: true, overlay: true,
className: '', className: '',
customStyle: '',
asyncClose: false, asyncClose: false,
messageAlign: '', messageAlign: '',
transition: 'scale', transition: 'scale',

View File

@ -11,6 +11,7 @@ component_1.VantComponent({
message: String, message: String,
useSlot: Boolean, useSlot: Boolean,
className: String, className: String,
customStyle: String,
asyncClose: Boolean, asyncClose: Boolean,
messageAlign: String, messageAlign: String,
showCancelButton: Boolean, showCancelButton: Boolean,

View File

@ -4,6 +4,7 @@
overlay="{{ overlay }}" overlay="{{ overlay }}"
custom-class="van-dialog {{ className }}" custom-class="van-dialog {{ className }}"
transition="{{ transition }}" transition="{{ transition }}"
custom-style="{{ customStyle }}"
close-on-click-overlay="{{ closeOnClickOverlay }}" close-on-click-overlay="{{ closeOnClickOverlay }}"
bind:close="onClickOverlay" bind:close="onClickOverlay"
> >

View File

@ -1 +1 @@
@import '../common/index.wxss';.van-dialog{width:85%;overflow:hidden;font-size:16px;background-color:#fff;border-radius:4px}.van-dialog__header{padding-top:25px;font-weight:500;text-align:center}.van-dialog__header--isolated{padding:25px 0}.van-dialog__message{max-height:60vh;padding:25px;overflow-y:auto;font-size:14px;line-height:1.5;text-align:center;-webkit-overflow-scrolling:touch}.van-dialog__message--has-title{padding-top:12px;color:#7d7e80}.van-dialog__message--left{text-align:left}.van-dialog__message--right{text-align:right}.van-dialog__footer{display:-webkit-flex;display:flex}.van-dialog__button{-webkit-flex:1;flex:1}.van-dialog__cancel,.van-dialog__confirm{border:0!important}.van-dialog__confirm{color:#1989fa!important}.van-dialog-bounce-enter{opacity:0;-webkit-transform:translate3d(-50%,-50%,0) scale(.7);transform:translate3d(-50%,-50%,0) scale(.7)}.van-dialog-bounce-leave-active{opacity:0;-webkit-transform:translate3d(-50%,-50%,0) scale(.9);transform:translate3d(-50%,-50%,0) scale(.9)} @import '../common/index.wxss';.van-dialog{top:45%!important;width:85%;overflow:hidden;font-size:16px;background-color:#fff;border-radius:4px}.van-dialog__header{padding-top:25px;font-weight:500;line-height:24px;text-align:center}.van-dialog__header--isolated{padding:25px 0}.van-dialog__message{max-height:60vh;padding:25px;overflow-y:auto;font-size:14px;line-height:20px;text-align:center;-webkit-overflow-scrolling:touch}.van-dialog__message--has-title{padding-top:12px;color:#7d7e80}.van-dialog__message--left{text-align:left}.van-dialog__message--right{text-align:right}.van-dialog__footer{display:-webkit-flex;display:flex}.van-dialog__button{-webkit-flex:1;flex:1}.van-dialog__cancel,.van-dialog__confirm{border:0!important}.van-dialog__confirm{color:#1989fa!important}.van-dialog-bounce-enter{opacity:0;-webkit-transform:translate3d(-50%,-50%,0) scale(.7);transform:translate3d(-50%,-50%,0) scale(.7)}.van-dialog-bounce-leave-active{opacity:0;-webkit-transform:translate3d(-50%,-50%,0) scale(.9);transform:translate3d(-50%,-50%,0) scale(.9)}

View File

@ -3,7 +3,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
exports.basic = Behavior({ exports.basic = Behavior({
methods: { methods: {
$emit: function () { $emit: function () {
this.triggerEvent.apply(this, arguments); var args = [];
for (var _i = 0; _i < arguments.length; _i++) {
args[_i] = arguments[_i];
}
this.triggerEvent.apply(this, args);
}, },
getRect: function (selector, all) { getRect: function (selector, all) {
var _this = this; var _this = this;

View File

@ -5,7 +5,6 @@ function setAsync(context, data) {
context.setData(data, resolve); context.setData(data, resolve);
}); });
} }
;
exports.behavior = Behavior({ exports.behavior = Behavior({
created: function () { created: function () {
var _this = this; var _this = this;
@ -20,7 +19,8 @@ exports.behavior = Behavior({
keys.forEach(function (key) { keys.forEach(function (key) {
var value = computed[key].call(_this); var value = computed[key].call(_this);
if (cache[key] !== value) { if (cache[key] !== value) {
cache[key] = needUpdate[key] = value; cache[key] = value;
needUpdate[key] = value;
} }
}); });
return needUpdate; return needUpdate;

View File

@ -11,11 +11,15 @@ function observeProps(props) {
} }
var observer = prop.observer; var observer = prop.observer;
prop.observer = function () { prop.observer = function () {
var args = [];
for (var _i = 0; _i < arguments.length; _i++) {
args[_i] = arguments[_i];
}
if (observer) { if (observer) {
if (typeof observer === 'string') { if (typeof observer === 'string') {
observer = this[observer]; observer = this[observer];
} }
observer.apply(this, arguments); observer.apply(this, args);
} }
this.set(); this.set();
}; };

View File

@ -119,9 +119,7 @@ component_1.VantComponent({
userAction && _this.$emit('change', index); userAction && _this.$emit('change', index);
}); });
} }
else { return this.set({ offset: offset });
return this.set({ offset: offset });
}
}, },
setValue: function (value) { setValue: function (value) {
var options = this.data.options; var options = this.data.options;

View File

@ -1,3 +1,5 @@
<wxs src="./index.wxs" module="getOptionText" />
<view <view
class="van-picker-column custom-class" class="van-picker-column custom-class"
style="height: {{ itemHeight * visibleItemCount }}px" style="height: {{ itemHeight * visibleItemCount }}px"
@ -18,14 +20,3 @@
>{{ getOptionText(option, valueKey) }}</view> >{{ getOptionText(option, valueKey) }}</view>
</view> </view>
</view> </view>
<wxs module="getOptionText">
function isObj(x) {
var type = typeof x;
return x !== null && (type === 'object' || type === 'function');
}
module.exports = function (option, valueKey) {
return isObj(option) && option[valueKey] ? option[valueKey] : option;
}
</wxs>

View File

@ -0,0 +1,8 @@
function isObj(x) {
var type = typeof x;
return x !== null && (type === 'object' || type === 'function');
}
module.exports = function (option, valueKey) {
return isObj(option) && option[valueKey] != null ? option[valueKey] : option;
}

View File

@ -91,7 +91,7 @@ component_1.VantComponent({
setColumnValue: function (index, value) { setColumnValue: function (index, value) {
var column = this.getColumn(index); var column = this.getColumn(index);
if (column == null) { if (column == null) {
return Promise.reject('setColumnValue: 对应列不存在'); return Promise.reject(new Error('setColumnValue: 对应列不存在'));
} }
return column.setValue(value); return column.setValue(value);
}, },
@ -103,7 +103,7 @@ component_1.VantComponent({
setColumnIndex: function (columnIndex, optionIndex) { setColumnIndex: function (columnIndex, optionIndex) {
var column = this.getColumn(columnIndex); var column = this.getColumn(columnIndex);
if (column == null) { if (column == null) {
return Promise.reject('setColumnIndex: 对应列不存在'); return Promise.reject(new Error('setColumnIndex: 对应列不存在'));
} }
return column.setIndex(optionIndex); return column.setIndex(optionIndex);
}, },
@ -116,7 +116,7 @@ component_1.VantComponent({
if (needReset === void 0) { needReset = true; } if (needReset === void 0) { needReset = true; }
var column = this.children[index]; var column = this.children[index];
if (column == null) { if (column == null) {
return Promise.reject('setColumnValues: 对应列不存在'); return Promise.reject(new Error('setColumnValues: 对应列不存在'));
} }
var isSame = JSON.stringify(column.data.options) === JSON.stringify(options); var isSame = JSON.stringify(column.data.options) === JSON.stringify(options);
if (isSame) { if (isSame) {

View File

@ -34,9 +34,16 @@ component_1.VantComponent({
this.$emit('change', event.detail); this.$emit('change', event.detail);
}, },
onCancel: function () { onCancel: function () {
this.set({ value: '' }); var _this = this;
this.$emit('cancel'); /**
this.$emit('change', ''); * 修复修改输入框值时输入框失焦和赋值同时触发赋值失效
* // https://github.com/youzan/vant-weapp/issues/1768
*/
setTimeout(function () {
_this.set({ value: '' });
_this.$emit('cancel');
_this.$emit('change', '');
}, 200);
}, },
onSearch: function () { onSearch: function () {
this.$emit('search', this.data.value); this.$emit('search', this.data.value);