build: compile 1.0.3

This commit is contained in:
rex-zsd 2020-01-09 19:48:32 +08:00
parent 37a39298e1
commit bc9cd39fb8
41 changed files with 274 additions and 323 deletions

30
dist/area/index.js vendored
View File

@ -3,12 +3,24 @@ import { pickerProps } from '../picker/shared';
const COLUMNSPLACEHOLDERCODE = '000000'; const COLUMNSPLACEHOLDERCODE = '000000';
VantComponent({ VantComponent({
classes: ['active-class', 'toolbar-class', 'column-class'], classes: ['active-class', 'toolbar-class', 'column-class'],
props: Object.assign(Object.assign({}, pickerProps), { value: String, areaList: { props: Object.assign(Object.assign({}, pickerProps), { value: {
type: String,
observer(value) {
this.code = value;
this.setValues();
},
}, areaList: {
type: Object, type: Object,
value: {} value: {},
observer: 'setValues'
}, columnsNum: { }, columnsNum: {
type: null, type: null,
value: 3 value: 3,
observer(value) {
this.setData({
displayColumns: this.data.columns.slice(0, +value)
});
}
}, columnsPlaceholder: { }, columnsPlaceholder: {
type: Array, type: Array,
observer(val) { observer(val) {
@ -26,18 +38,6 @@ VantComponent({
displayColumns: [{ values: [] }, { values: [] }, { values: [] }], displayColumns: [{ values: [] }, { values: [] }, { values: [] }],
typeToColumnsPlaceholder: {} typeToColumnsPlaceholder: {}
}, },
watch: {
value(value) {
this.code = value;
this.setValues();
},
areaList: 'setValues',
columnsNum(value) {
this.setData({
displayColumns: this.data.columns.slice(0, +value)
});
}
},
mounted() { mounted() {
setTimeout(() => { setTimeout(() => {
this.setValues(); this.setValues();

View File

@ -1,5 +1,4 @@
import { basic } from '../mixins/basic'; import { basic } from '../mixins/basic';
import { observe } from '../mixins/observer/index';
function mapKeys(source, target, map) { function mapKeys(source, target, map) {
Object.keys(map).forEach(key => { Object.keys(map).forEach(key => {
if (source[key]) { if (source[key]) {
@ -42,7 +41,6 @@ function VantComponent(vantOptions = {}) {
multipleSlots: true, multipleSlots: true,
addGlobalClass: true addGlobalClass: true
}; };
observe(vantOptions, options);
Component(options); Component(options);
} }
export { VantComponent }; export { VantComponent };

View File

@ -33,9 +33,13 @@ function getMonthEndDay(year, month) {
const defaultFormatter = (_, value) => value; const defaultFormatter = (_, value) => value;
VantComponent({ VantComponent({
classes: ['active-class', 'toolbar-class', 'column-class'], classes: ['active-class', 'toolbar-class', 'column-class'],
props: Object.assign(Object.assign({}, pickerProps), { value: null, filter: null, type: { props: Object.assign(Object.assign({}, pickerProps), { value: {
type: null,
observer: 'updateValue'
}, filter: null, type: {
type: String, type: String,
value: 'datetime' value: 'datetime',
observer: 'updateValue'
}, showToolbar: { }, showToolbar: {
type: Boolean, type: Boolean,
value: true value: true
@ -44,37 +48,33 @@ VantComponent({
value: defaultFormatter value: defaultFormatter
}, minDate: { }, minDate: {
type: Number, type: Number,
value: new Date(currentYear - 10, 0, 1).getTime() value: new Date(currentYear - 10, 0, 1).getTime(),
observer: 'updateValue'
}, maxDate: { }, maxDate: {
type: Number, type: Number,
value: new Date(currentYear + 10, 11, 31).getTime() value: new Date(currentYear + 10, 11, 31).getTime(),
observer: 'updateValue'
}, minHour: { }, minHour: {
type: Number, type: Number,
value: 0 value: 0,
observer: 'updateValue'
}, maxHour: { }, maxHour: {
type: Number, type: Number,
value: 23 value: 23,
observer: 'updateValue'
}, minMinute: { }, minMinute: {
type: Number, type: Number,
value: 0 value: 0,
observer: 'updateValue'
}, maxMinute: { }, maxMinute: {
type: Number, type: Number,
value: 59 value: 59,
observer: 'updateValue'
} }), } }),
data: { data: {
innerValue: Date.now(), innerValue: Date.now(),
columns: [] columns: []
}, },
watch: {
value: 'updateValue',
type: 'updateValue',
minDate: 'updateValue',
maxDate: 'updateValue',
minHour: 'updateValue',
maxHour: 'updateValue',
minMinute: 'updateValue',
maxMinute: 'updateValue'
},
methods: { methods: {
updateValue() { updateValue() {
const { data } = this; const { data } = this;

View File

@ -12,7 +12,6 @@ export interface VantComponentOptions<Data, Props, Methods, Instance> {
classes?: string[]; classes?: string[];
mixins?: string[]; mixins?: string[];
props?: Props & Weapp.PropertyOption; props?: Props & Weapp.PropertyOption;
watch?: Weapp.WatchOption<Instance>;
relation?: Weapp.RelationOption<Instance> & { relation?: Weapp.RelationOption<Instance> & {
name: string; name: string;
}; };

View File

@ -80,12 +80,6 @@ export declare namespace Weapp {
* obverser定义miniprogram-api-typings缺少this定义 * obverser定义miniprogram-api-typings缺少this定义
*/ */
type Observer<Instance, T> = (this: Instance, newVal: T, oldVal: T, changedPath: Array<string | number>) => void; type Observer<Instance, T> = (this: Instance, newVal: T, oldVal: T, changedPath: Array<string | number>) => void;
/**
* watch定义
*/
export interface WatchOption<Instance> {
[name: string]: string | Observer<Instance, any>;
}
/** /**
* methods定义miniprogram-api-typings缺少this定义 * methods定义miniprogram-api-typings缺少this定义
*/ */

12
dist/dialog/index.js vendored
View File

@ -5,7 +5,12 @@ import { GRAY, BLUE } from '../common/color';
VantComponent({ VantComponent({
mixins: [button, openType], mixins: [button, openType],
props: { props: {
show: Boolean, show: {
type: Boolean,
observer(show) {
!show && this.stopLoading();
}
},
title: String, title: String,
message: String, message: String,
useSlot: Boolean, useSlot: Boolean,
@ -58,11 +63,6 @@ VantComponent({
cancel: false cancel: false
} }
}, },
watch: {
show(show) {
!show && this.stopLoading();
}
},
methods: { methods: {
onConfirm() { onConfirm() {
this.handleAction('confirm'); this.handleAction('confirm');

18
dist/image/index.js vendored
View File

@ -12,7 +12,15 @@ VantComponent({
mixins: [button, openType], mixins: [button, openType],
classes: ['custom-class', 'loading-class', 'error-class', 'image-class'], classes: ['custom-class', 'loading-class', 'error-class', 'image-class'],
props: { props: {
src: String, src: {
type: String,
observer() {
this.setData({
error: false,
loading: true
});
}
},
round: Boolean, round: Boolean,
width: { width: {
type: null, type: null,
@ -45,14 +53,6 @@ VantComponent({
error: false, error: false,
loading: true loading: true
}, },
watch: {
src() {
this.setData({
error: false,
loading: true
});
}
},
mounted() { mounted() {
this.setMode(); this.setMode();
this.setStyle(); this.setStyle();

View File

@ -3,6 +3,10 @@ export const basic = Behavior({
$emit(...args) { $emit(...args) {
this.triggerEvent(...args); this.triggerEvent(...args);
}, },
set(data, callback) {
this.setData(data, callback);
return new Promise(resolve => wx.nextTick(resolve));
},
getRect(selector, all) { getRect(selector, all) {
return new Promise(resolve => { return new Promise(resolve => {
wx.createSelectorQuery() wx.createSelectorQuery()

View File

@ -1 +0,0 @@
export declare const behavior: string;

View File

@ -1,8 +0,0 @@
export const behavior = Behavior({
methods: {
set(data, callback) {
this.setData(data, callback);
return new Promise(resolve => wx.nextTick(resolve));
}
}
});

View File

@ -1 +0,0 @@
export declare function observe(vantOptions: any, options: any): void;

View File

@ -1,19 +0,0 @@
import { behavior } from './behavior';
export function observe(vantOptions, options) {
const { watch } = vantOptions;
options.behaviors.push(behavior);
if (watch) {
const props = options.properties || {};
Object.keys(watch).forEach(key => {
if (key in props) {
let prop = props[key];
if (prop === null || !('type' in prop)) {
prop = { type: prop };
}
prop.observer = watch[key];
props[key] = prop;
}
});
options.properties = props;
}
}

View File

@ -1 +1 @@
@import '../common/index.wxss';.van-nav-bar{position:relative;text-align:center;-webkit-user-select:none;user-select:none;height:44px;height:var(--nav-bar-height,44px);line-height:44px;line-height:var(--nav-bar-height,44px);background-color:#fff;background-color:var(--nav-bar-background-color,#fff)}.van-nav-bar__text{display:inline-block;vertical-align:middle;margin:0 -16px;margin:0 -var(--padding-md,16px);padding:0 16px;padding:0 var(--padding-md,16px);color:#1989fa;color:var(--nav-bar-text-color,#1989fa)}.van-nav-bar__text--hover{background-color:#f2f3f5;background-color:var(--active-color,#f2f3f5)}.van-nav-bar__arrow{vertical-align:middle;font-size:16px;font-size:var(--nav-bar-arrow-size,16px);color:#1989fa;color:var(--nav-bar-text-color,#1989fa)}.van-nav-bar__arrow+.van-nav-bar__text{margin-left:-20px;padding-left:25px}.van-nav-bar--fixed{position:fixed;top:0;left:0;width:100%}.van-nav-bar__title{max-width:60%;margin:0 auto;color:#323233;color:var(--nav-bar-title-text-color,#323233);font-weight:500;font-weight:var(--font-weight-bold,500);font-size:16px;font-size:var(--nav-bar-title-font-size,16px)}.van-nav-bar__left,.van-nav-bar__right{position:absolute;bottom:0;font-size:14px;font-size:var(--font-size-md,14px)}.van-nav-bar__left{left:16px;left:var(--padding-md,16px)}.van-nav-bar__right{right:16px;right:var(--padding-md,16px)} @import '../common/index.wxss';.van-nav-bar{position:relative;text-align:center;-webkit-user-select:none;user-select:none;height:44px;height:var(--nav-bar-height,44px);line-height:44px;line-height:var(--nav-bar-height,44px);background-color:#fff;background-color:var(--nav-bar-background-color,#fff)}.van-nav-bar__text{display:inline-block;vertical-align:middle;margin:0 -16px;margin:0 -var(--padding-md,16px);padding:0 16px;padding:0 var(--padding-md,16px);color:#1989fa;color:var(--nav-bar-text-color,#1989fa)}.van-nav-bar__text--hover{background-color:#f2f3f5;background-color:var(--active-color,#f2f3f5)}.van-nav-bar__arrow{vertical-align:middle;font-size:16px;font-size:var(--nav-bar-arrow-size,16px);color:#1989fa;color:var(--nav-bar-text-color,#1989fa)}.van-nav-bar__arrow+.van-nav-bar__text{margin-left:-20px;padding-left:25px}.van-nav-bar--fixed{position:fixed;top:0;left:0;width:100%}.van-nav-bar__title{max-width:60%;margin:0 auto;color:#323233;color:var(--nav-bar-title-text-color,#323233);font-weight:500;font-weight:var(--font-weight-bold,500);font-size:16px;font-size:var(--nav-bar-title-font-size,16px)}.van-nav-bar__left,.van-nav-bar__right{position:absolute;bottom:0;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;font-size:14px;font-size:var(--font-size-md,14px)}.van-nav-bar__left{left:16px;left:var(--padding-md,16px)}.van-nav-bar__right{right:16px;right:var(--padding-md,16px)}

View File

@ -5,7 +5,12 @@ VantComponent({
props: { props: {
text: { text: {
type: String, type: String,
value: '' value: '',
observer() {
wx.nextTick(() => {
this.init();
});
},
}, },
mode: { mode: {
type: String, type: String,
@ -25,7 +30,12 @@ VantComponent({
}, },
speed: { speed: {
type: Number, type: Number,
value: 50 value: 50,
observer() {
wx.nextTick(() => {
this.init();
});
}
}, },
scrollable: { scrollable: {
type: Boolean, type: Boolean,
@ -48,14 +58,6 @@ VantComponent({
data: { data: {
show: true show: true
}, },
watch: {
text() {
this.setData({}, this.init);
},
speed() {
this.setData({}, this.init);
}
},
created() { created() {
this.resetAnimation = wx.createAnimation({ this.resetAnimation = wx.createAnimation({
duration: 0, duration: 0,

View File

@ -14,7 +14,10 @@ VantComponent({
}, },
defaultIndex: { defaultIndex: {
type: Number, type: Number,
value: 0 value: 0,
observer(value) {
this.setIndex(value);
}
} }
}, },
data: { data: {
@ -34,11 +37,6 @@ VantComponent({
this.setIndex(defaultIndex); this.setIndex(defaultIndex);
}); });
}, },
watch: {
defaultIndex(value) {
this.setIndex(value);
}
},
methods: { methods: {
getCount() { getCount() {
return this.data.options.length; return this.data.options.length;

8
dist/row/index.js vendored
View File

@ -10,10 +10,10 @@ VantComponent({
} }
}, },
props: { props: {
gutter: Number gutter: {
}, type: Number,
watch: { observer: 'setGutter'
gutter: 'setGutter' }
}, },
mounted() { mounted() {
if (this.data.gutter) { if (this.data.gutter) {

10
dist/slider/index.js vendored
View File

@ -22,18 +22,16 @@ VantComponent({
}, },
value: { value: {
type: Number, type: Number,
value: 0 value: 0,
observer(value) {
this.updateValue(value, false);
}
}, },
barHeight: { barHeight: {
type: null, type: null,
value: '2px' value: '2px'
} }
}, },
watch: {
value(value) {
this.updateValue(value, false);
}
},
created() { created() {
this.updateValue(this.data.value); this.updateValue(this.data.value);
}, },

54
dist/stepper/index.js vendored
View File

@ -11,11 +11,37 @@ VantComponent({
field: true, field: true,
classes: ['input-class', 'plus-class', 'minus-class'], classes: ['input-class', 'plus-class', 'minus-class'],
props: { props: {
value: null, value: {
type: null,
observer(value) {
if (value === '') {
return;
}
const newValue = this.range(value);
if (typeof newValue === 'number' && +this.data.value !== newValue) {
this.setData({ value: newValue });
}
},
},
integer: Boolean, integer: Boolean,
disabled: Boolean, disabled: Boolean,
inputWidth: null, inputWidth: {
buttonSize: null, type: null,
observer() {
this.setData({
inputStyle: this.computeInputStyle()
});
},
},
buttonSize: {
type: null,
observer() {
this.setData({
inputStyle: this.computeInputStyle(),
buttonStyle: this.computeButtonStyle()
});
}
},
asyncChange: Boolean, asyncChange: Boolean,
disableInput: Boolean, disableInput: Boolean,
decimalLength: { decimalLength: {
@ -45,28 +71,6 @@ VantComponent({
disablePlus: Boolean, disablePlus: Boolean,
disableMinus: Boolean disableMinus: Boolean
}, },
watch: {
value(value) {
if (value === '') {
return;
}
const newValue = this.range(value);
if (typeof newValue === 'number' && +this.data.value !== newValue) {
this.setData({ value: newValue });
}
},
inputWidth() {
this.set({
inputStyle: this.computeInputStyle()
});
},
buttonSize() {
this.set({
inputStyle: this.computeInputStyle(),
buttonStyle: this.computeButtonStyle()
});
}
},
data: { data: {
focus: false, focus: false,
inputStyle: '', inputStyle: '',

1
dist/steps/index.js vendored
View File

@ -1,6 +1,7 @@
import { VantComponent } from '../common/component'; import { VantComponent } from '../common/component';
import { GREEN, GRAY_DARK } from '../common/color'; import { GREEN, GRAY_DARK } from '../common/color';
VantComponent({ VantComponent({
classes: ['desc-class'],
props: { props: {
icon: String, icon: String,
steps: Array, steps: Array,

View File

@ -10,7 +10,7 @@
> >
<view class="van-step__title" style="{{ index === active ? 'color: ' + activeColor : '' }}"> <view class="van-step__title" style="{{ index === active ? 'color: ' + activeColor : '' }}">
<view>{{ item.text }}</view> <view>{{ item.text }}</view>
<view>{{ item.desc }}</view> <view class="desc-class">{{ item.desc }}</view>
</view> </view>
<view class="van-step__circle-container"> <view class="van-step__circle-container">
<block wx:if="{{ index !== active }}"> <block wx:if="{{ index !== active }}">

14
dist/switch/index.js vendored
View File

@ -4,7 +4,13 @@ VantComponent({
field: true, field: true,
classes: ['node-class'], classes: ['node-class'],
props: { props: {
checked: null, checked: {
type: null,
observer(value) {
const loadingColor = this.getLoadingColor(value);
this.setData({ value, loadingColor });
}
},
loading: Boolean, loading: Boolean,
disabled: Boolean, disabled: Boolean,
activeColor: String, activeColor: String,
@ -22,12 +28,6 @@ VantComponent({
value: false value: false
} }
}, },
watch: {
checked(value) {
const loadingColor = this.getLoadingColor(value);
this.setData({ value, loadingColor });
}
},
created() { created() {
const { checked: value } = this.data; const { checked: value } = this.data;
const loadingColor = this.getLoadingColor(value); const loadingColor = this.getLoadingColor(value);

32
dist/tab/index.js vendored
View File

@ -11,11 +11,26 @@ VantComponent({
} }
}, },
props: { props: {
dot: Boolean, dot: {
info: null, type: Boolean,
title: String, observer: 'update'
disabled: Boolean, },
titleStyle: String, info: {
type: null,
observer: 'update'
},
title: {
type: String,
observer: 'update'
},
disabled: {
type: Boolean,
observer: 'update'
},
titleStyle: {
type: String,
observer: 'update'
},
name: { name: {
type: [Number, String], type: [Number, String],
value: '', value: '',
@ -24,13 +39,6 @@ VantComponent({
data: { data: {
active: false active: false
}, },
watch: {
title: 'update',
disabled: 'update',
dot: 'update',
info: 'update',
titleStyle: 'update'
},
methods: { methods: {
getComputedName() { getComputedName() {
if (this.data.name !== '') { if (this.data.name !== '') {

View File

@ -16,12 +16,24 @@ var shared_1 = require("../picker/shared");
var COLUMNSPLACEHOLDERCODE = '000000'; var COLUMNSPLACEHOLDERCODE = '000000';
component_1.VantComponent({ component_1.VantComponent({
classes: ['active-class', 'toolbar-class', 'column-class'], classes: ['active-class', 'toolbar-class', 'column-class'],
props: __assign(__assign({}, shared_1.pickerProps), { value: String, areaList: { props: __assign(__assign({}, shared_1.pickerProps), { value: {
type: String,
observer: function (value) {
this.code = value;
this.setValues();
},
}, areaList: {
type: Object, type: Object,
value: {} value: {},
observer: 'setValues'
}, columnsNum: { }, columnsNum: {
type: null, type: null,
value: 3 value: 3,
observer: function (value) {
this.setData({
displayColumns: this.data.columns.slice(0, +value)
});
}
}, columnsPlaceholder: { }, columnsPlaceholder: {
type: Array, type: Array,
observer: function (val) { observer: function (val) {
@ -39,18 +51,6 @@ component_1.VantComponent({
displayColumns: [{ values: [] }, { values: [] }, { values: [] }], displayColumns: [{ values: [] }, { values: [] }, { values: [] }],
typeToColumnsPlaceholder: {} typeToColumnsPlaceholder: {}
}, },
watch: {
value: function (value) {
this.code = value;
this.setValues();
},
areaList: 'setValues',
columnsNum: function (value) {
this.setData({
displayColumns: this.data.columns.slice(0, +value)
});
}
},
mounted: function () { mounted: function () {
var _this = this; var _this = this;
setTimeout(function () { setTimeout(function () {

View File

@ -1,7 +1,6 @@
"use strict"; "use strict";
Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "__esModule", { value: true });
var basic_1 = require("../mixins/basic"); var basic_1 = require("../mixins/basic");
var index_1 = require("../mixins/observer/index");
function mapKeys(source, target, map) { function mapKeys(source, target, map) {
Object.keys(map).forEach(function (key) { Object.keys(map).forEach(function (key) {
if (source[key]) { if (source[key]) {
@ -46,7 +45,6 @@ function VantComponent(vantOptions) {
multipleSlots: true, multipleSlots: true,
addGlobalClass: true addGlobalClass: true
}; };
index_1.observe(vantOptions, options);
Component(options); Component(options);
} }
exports.VantComponent = VantComponent; exports.VantComponent = VantComponent;

View File

@ -53,9 +53,13 @@ function getMonthEndDay(year, month) {
var defaultFormatter = function (_, value) { return value; }; var defaultFormatter = function (_, value) { return value; };
component_1.VantComponent({ component_1.VantComponent({
classes: ['active-class', 'toolbar-class', 'column-class'], classes: ['active-class', 'toolbar-class', 'column-class'],
props: __assign(__assign({}, shared_1.pickerProps), { value: null, filter: null, type: { props: __assign(__assign({}, shared_1.pickerProps), { value: {
type: null,
observer: 'updateValue'
}, filter: null, type: {
type: String, type: String,
value: 'datetime' value: 'datetime',
observer: 'updateValue'
}, showToolbar: { }, showToolbar: {
type: Boolean, type: Boolean,
value: true value: true
@ -64,37 +68,33 @@ component_1.VantComponent({
value: defaultFormatter value: defaultFormatter
}, minDate: { }, minDate: {
type: Number, type: Number,
value: new Date(currentYear - 10, 0, 1).getTime() value: new Date(currentYear - 10, 0, 1).getTime(),
observer: 'updateValue'
}, maxDate: { }, maxDate: {
type: Number, type: Number,
value: new Date(currentYear + 10, 11, 31).getTime() value: new Date(currentYear + 10, 11, 31).getTime(),
observer: 'updateValue'
}, minHour: { }, minHour: {
type: Number, type: Number,
value: 0 value: 0,
observer: 'updateValue'
}, maxHour: { }, maxHour: {
type: Number, type: Number,
value: 23 value: 23,
observer: 'updateValue'
}, minMinute: { }, minMinute: {
type: Number, type: Number,
value: 0 value: 0,
observer: 'updateValue'
}, maxMinute: { }, maxMinute: {
type: Number, type: Number,
value: 59 value: 59,
observer: 'updateValue'
} }), } }),
data: { data: {
innerValue: Date.now(), innerValue: Date.now(),
columns: [] columns: []
}, },
watch: {
value: 'updateValue',
type: 'updateValue',
minDate: 'updateValue',
maxDate: 'updateValue',
minHour: 'updateValue',
maxHour: 'updateValue',
minMinute: 'updateValue',
maxMinute: 'updateValue'
},
methods: { methods: {
updateValue: function () { updateValue: function () {
var _this = this; var _this = this;

View File

@ -7,7 +7,12 @@ var color_1 = require("../common/color");
component_1.VantComponent({ component_1.VantComponent({
mixins: [button_1.button, open_type_1.openType], mixins: [button_1.button, open_type_1.openType],
props: { props: {
show: Boolean, show: {
type: Boolean,
observer: function (show) {
!show && this.stopLoading();
}
},
title: String, title: String,
message: String, message: String,
useSlot: Boolean, useSlot: Boolean,
@ -60,11 +65,6 @@ component_1.VantComponent({
cancel: false cancel: false
} }
}, },
watch: {
show: function (show) {
!show && this.stopLoading();
}
},
methods: { methods: {
onConfirm: function () { onConfirm: function () {
this.handleAction('confirm'); this.handleAction('confirm');

View File

@ -14,7 +14,15 @@ component_1.VantComponent({
mixins: [button_1.button, open_type_1.openType], mixins: [button_1.button, open_type_1.openType],
classes: ['custom-class', 'loading-class', 'error-class', 'image-class'], classes: ['custom-class', 'loading-class', 'error-class', 'image-class'],
props: { props: {
src: String, src: {
type: String,
observer: function () {
this.setData({
error: false,
loading: true
});
}
},
round: Boolean, round: Boolean,
width: { width: {
type: null, type: null,
@ -47,14 +55,6 @@ component_1.VantComponent({
error: false, error: false,
loading: true loading: true
}, },
watch: {
src: function () {
this.setData({
error: false,
loading: true
});
}
},
mounted: function () { mounted: function () {
this.setMode(); this.setMode();
this.setStyle(); this.setStyle();

View File

@ -9,6 +9,10 @@ exports.basic = Behavior({
} }
this.triggerEvent.apply(this, args); this.triggerEvent.apply(this, args);
}, },
set: function (data, callback) {
this.setData(data, callback);
return new Promise(function (resolve) { return wx.nextTick(resolve); });
},
getRect: function (selector, all) { getRect: function (selector, all) {
var _this = this; var _this = this;
return new Promise(function (resolve) { return new Promise(function (resolve) {

View File

@ -1,10 +0,0 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.behavior = Behavior({
methods: {
set: function (data, callback) {
this.setData(data, callback);
return new Promise(function (resolve) { return wx.nextTick(resolve); });
}
}
});

View File

@ -1,22 +0,0 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var behavior_1 = require("./behavior");
function observe(vantOptions, options) {
var watch = vantOptions.watch;
options.behaviors.push(behavior_1.behavior);
if (watch) {
var props_1 = options.properties || {};
Object.keys(watch).forEach(function (key) {
if (key in props_1) {
var prop = props_1[key];
if (prop === null || !('type' in prop)) {
prop = { type: prop };
}
prop.observer = watch[key];
props_1[key] = prop;
}
});
options.properties = props_1;
}
}
exports.observe = observe;

View File

@ -1 +1 @@
@import '../common/index.wxss';.van-nav-bar{position:relative;text-align:center;-webkit-user-select:none;user-select:none;height:44px;height:var(--nav-bar-height,44px);line-height:44px;line-height:var(--nav-bar-height,44px);background-color:#fff;background-color:var(--nav-bar-background-color,#fff)}.van-nav-bar__text{display:inline-block;vertical-align:middle;margin:0 -16px;margin:0 -var(--padding-md,16px);padding:0 16px;padding:0 var(--padding-md,16px);color:#1989fa;color:var(--nav-bar-text-color,#1989fa)}.van-nav-bar__text--hover{background-color:#f2f3f5;background-color:var(--active-color,#f2f3f5)}.van-nav-bar__arrow{vertical-align:middle;font-size:16px;font-size:var(--nav-bar-arrow-size,16px);color:#1989fa;color:var(--nav-bar-text-color,#1989fa)}.van-nav-bar__arrow+.van-nav-bar__text{margin-left:-20px;padding-left:25px}.van-nav-bar--fixed{position:fixed;top:0;left:0;width:100%}.van-nav-bar__title{max-width:60%;margin:0 auto;color:#323233;color:var(--nav-bar-title-text-color,#323233);font-weight:500;font-weight:var(--font-weight-bold,500);font-size:16px;font-size:var(--nav-bar-title-font-size,16px)}.van-nav-bar__left,.van-nav-bar__right{position:absolute;bottom:0;font-size:14px;font-size:var(--font-size-md,14px)}.van-nav-bar__left{left:16px;left:var(--padding-md,16px)}.van-nav-bar__right{right:16px;right:var(--padding-md,16px)} @import '../common/index.wxss';.van-nav-bar{position:relative;text-align:center;-webkit-user-select:none;user-select:none;height:44px;height:var(--nav-bar-height,44px);line-height:44px;line-height:var(--nav-bar-height,44px);background-color:#fff;background-color:var(--nav-bar-background-color,#fff)}.van-nav-bar__text{display:inline-block;vertical-align:middle;margin:0 -16px;margin:0 -var(--padding-md,16px);padding:0 16px;padding:0 var(--padding-md,16px);color:#1989fa;color:var(--nav-bar-text-color,#1989fa)}.van-nav-bar__text--hover{background-color:#f2f3f5;background-color:var(--active-color,#f2f3f5)}.van-nav-bar__arrow{vertical-align:middle;font-size:16px;font-size:var(--nav-bar-arrow-size,16px);color:#1989fa;color:var(--nav-bar-text-color,#1989fa)}.van-nav-bar__arrow+.van-nav-bar__text{margin-left:-20px;padding-left:25px}.van-nav-bar--fixed{position:fixed;top:0;left:0;width:100%}.van-nav-bar__title{max-width:60%;margin:0 auto;color:#323233;color:var(--nav-bar-title-text-color,#323233);font-weight:500;font-weight:var(--font-weight-bold,500);font-size:16px;font-size:var(--nav-bar-title-font-size,16px)}.van-nav-bar__left,.van-nav-bar__right{position:absolute;bottom:0;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;font-size:14px;font-size:var(--font-size-md,14px)}.van-nav-bar__left{left:16px;left:var(--padding-md,16px)}.van-nav-bar__right{right:16px;right:var(--padding-md,16px)}

View File

@ -7,7 +7,13 @@ component_1.VantComponent({
props: { props: {
text: { text: {
type: String, type: String,
value: '' value: '',
observer: function () {
var _this = this;
wx.nextTick(function () {
_this.init();
});
},
}, },
mode: { mode: {
type: String, type: String,
@ -27,7 +33,13 @@ component_1.VantComponent({
}, },
speed: { speed: {
type: Number, type: Number,
value: 50 value: 50,
observer: function () {
var _this = this;
wx.nextTick(function () {
_this.init();
});
}
}, },
scrollable: { scrollable: {
type: Boolean, type: Boolean,
@ -50,14 +62,6 @@ component_1.VantComponent({
data: { data: {
show: true show: true
}, },
watch: {
text: function () {
this.setData({}, this.init);
},
speed: function () {
this.setData({}, this.init);
}
},
created: function () { created: function () {
this.resetAnimation = wx.createAnimation({ this.resetAnimation = wx.createAnimation({
duration: 0, duration: 0,

View File

@ -16,7 +16,10 @@ component_1.VantComponent({
}, },
defaultIndex: { defaultIndex: {
type: Number, type: Number,
value: 0 value: 0,
observer: function (value) {
this.setIndex(value);
}
} }
}, },
data: { data: {
@ -37,11 +40,6 @@ component_1.VantComponent({
_this.setIndex(defaultIndex); _this.setIndex(defaultIndex);
}); });
}, },
watch: {
defaultIndex: function (value) {
this.setIndex(value);
}
},
methods: { methods: {
getCount: function () { getCount: function () {
return this.data.options.length; return this.data.options.length;

View File

@ -12,10 +12,10 @@ component_1.VantComponent({
} }
}, },
props: { props: {
gutter: Number gutter: {
}, type: Number,
watch: { observer: 'setGutter'
gutter: 'setGutter' }
}, },
mounted: function () { mounted: function () {
if (this.data.gutter) { if (this.data.gutter) {

View File

@ -24,18 +24,16 @@ component_1.VantComponent({
}, },
value: { value: {
type: Number, type: Number,
value: 0 value: 0,
observer: function (value) {
this.updateValue(value, false);
}
}, },
barHeight: { barHeight: {
type: null, type: null,
value: '2px' value: '2px'
} }
}, },
watch: {
value: function (value) {
this.updateValue(value, false);
}
},
created: function () { created: function () {
this.updateValue(this.data.value); this.updateValue(this.data.value);
}, },

View File

@ -13,11 +13,37 @@ component_1.VantComponent({
field: true, field: true,
classes: ['input-class', 'plus-class', 'minus-class'], classes: ['input-class', 'plus-class', 'minus-class'],
props: { props: {
value: null, value: {
type: null,
observer: function (value) {
if (value === '') {
return;
}
var newValue = this.range(value);
if (typeof newValue === 'number' && +this.data.value !== newValue) {
this.setData({ value: newValue });
}
},
},
integer: Boolean, integer: Boolean,
disabled: Boolean, disabled: Boolean,
inputWidth: null, inputWidth: {
buttonSize: null, type: null,
observer: function () {
this.setData({
inputStyle: this.computeInputStyle()
});
},
},
buttonSize: {
type: null,
observer: function () {
this.setData({
inputStyle: this.computeInputStyle(),
buttonStyle: this.computeButtonStyle()
});
}
},
asyncChange: Boolean, asyncChange: Boolean,
disableInput: Boolean, disableInput: Boolean,
decimalLength: { decimalLength: {
@ -47,28 +73,6 @@ component_1.VantComponent({
disablePlus: Boolean, disablePlus: Boolean,
disableMinus: Boolean disableMinus: Boolean
}, },
watch: {
value: function (value) {
if (value === '') {
return;
}
var newValue = this.range(value);
if (typeof newValue === 'number' && +this.data.value !== newValue) {
this.setData({ value: newValue });
}
},
inputWidth: function () {
this.set({
inputStyle: this.computeInputStyle()
});
},
buttonSize: function () {
this.set({
inputStyle: this.computeInputStyle(),
buttonStyle: this.computeButtonStyle()
});
}
},
data: { data: {
focus: false, focus: false,
inputStyle: '', inputStyle: '',

View File

@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
var component_1 = require("../common/component"); var component_1 = require("../common/component");
var color_1 = require("../common/color"); var color_1 = require("../common/color");
component_1.VantComponent({ component_1.VantComponent({
classes: ['desc-class'],
props: { props: {
icon: String, icon: String,
steps: Array, steps: Array,

View File

@ -10,7 +10,7 @@
> >
<view class="van-step__title" style="{{ index === active ? 'color: ' + activeColor : '' }}"> <view class="van-step__title" style="{{ index === active ? 'color: ' + activeColor : '' }}">
<view>{{ item.text }}</view> <view>{{ item.text }}</view>
<view>{{ item.desc }}</view> <view class="desc-class">{{ item.desc }}</view>
</view> </view>
<view class="van-step__circle-container"> <view class="van-step__circle-container">
<block wx:if="{{ index !== active }}"> <block wx:if="{{ index !== active }}">

View File

@ -6,7 +6,13 @@ component_1.VantComponent({
field: true, field: true,
classes: ['node-class'], classes: ['node-class'],
props: { props: {
checked: null, checked: {
type: null,
observer: function (value) {
var loadingColor = this.getLoadingColor(value);
this.setData({ value: value, loadingColor: loadingColor });
}
},
loading: Boolean, loading: Boolean,
disabled: Boolean, disabled: Boolean,
activeColor: String, activeColor: String,
@ -24,12 +30,6 @@ component_1.VantComponent({
value: false value: false
} }
}, },
watch: {
checked: function (value) {
var loadingColor = this.getLoadingColor(value);
this.setData({ value: value, loadingColor: loadingColor });
}
},
created: function () { created: function () {
var value = this.data.checked; var value = this.data.checked;
var loadingColor = this.getLoadingColor(value); var loadingColor = this.getLoadingColor(value);

View File

@ -13,11 +13,26 @@ component_1.VantComponent({
} }
}, },
props: { props: {
dot: Boolean, dot: {
info: null, type: Boolean,
title: String, observer: 'update'
disabled: Boolean, },
titleStyle: String, info: {
type: null,
observer: 'update'
},
title: {
type: String,
observer: 'update'
},
disabled: {
type: Boolean,
observer: 'update'
},
titleStyle: {
type: String,
observer: 'update'
},
name: { name: {
type: [Number, String], type: [Number, String],
value: '', value: '',
@ -26,13 +41,6 @@ component_1.VantComponent({
data: { data: {
active: false active: false
}, },
watch: {
title: 'update',
disabled: 'update',
dot: 'update',
info: 'update',
titleStyle: 'update'
},
methods: { methods: {
getComputedName: function () { getComputedName: function () {
if (this.data.name !== '') { if (this.data.name !== '') {

View File

@ -10,9 +10,9 @@ component_1.VantComponent({
name: 'tab', name: 'tab',
type: 'descendant', type: 'descendant',
linked: function (target) { linked: function (target) {
this.children = this.getChildren(); target.index = this.children.length;
this.children.push(target);
this.updateTabs(); this.updateTabs();
this.setLine();
}, },
unlinked: function (target) { unlinked: function (target) {
this.children = this.children this.children = this.children
@ -22,7 +22,6 @@ component_1.VantComponent({
return child; return child;
}); });
this.updateTabs(); this.updateTabs();
this.setLine();
} }
}, },
props: { props: {
@ -283,14 +282,6 @@ component_1.VantComponent({
this.setCurrentIndex(currentIndex + 1); this.setCurrentIndex(currentIndex + 1);
} }
} }
},
getChildren: function () {
var nodes = this.getRelationNodes('../tab/index')
nodes.map((child, index) => {
child.index = index;
return child;
})
return nodes;
} }
} }
}); });