diff --git a/dist/button/index.wxml b/dist/button/index.wxml
index 1d7db84c..e4cec8ae 100644
--- a/dist/button/index.wxml
+++ b/dist/button/index.wxml
@@ -8,7 +8,7 @@
hover-class="van-button--active hover-class"
lang="{{ lang }}"
form-type="{{ formType }}"
- style="{{ computed.rootStyle({ plain, color }) }} {{ customStyle }}"
+ style="{{ computed.rootStyle({ plain, color, customStyle }) }}"
open-type="{{ disabled ? '' : openType }}"
business-id="{{ businessId }}"
session-from="{{ sessionFrom }}"
diff --git a/dist/button/index.wxs b/dist/button/index.wxs
index 7bb506a9..8b649fe1 100644
--- a/dist/button/index.wxs
+++ b/dist/button/index.wxs
@@ -3,7 +3,7 @@ var style = require('../wxs/style.wxs');
function rootStyle(data) {
if (!data.color) {
- return '';
+ return data.customStyle;
}
var properties = {
@@ -18,7 +18,7 @@ function rootStyle(data) {
properties['border-color'] = data.color;
}
- return style(properties);
+ return style([properties, data.customStyle]);
}
function loadingColor(data) {
diff --git a/dist/calendar/components/month/index.js b/dist/calendar/components/month/index.js
index 90f5957c..4c872a98 100644
--- a/dist/calendar/components/month/index.js
+++ b/dist/calendar/components/month/index.js
@@ -25,13 +25,13 @@ VantComponent({
observer: 'setDays',
},
showMark: Boolean,
- rowHeight: [Number, String],
+ rowHeight: null,
formatter: {
type: null,
observer: 'setDays',
},
currentDate: {
- type: [null, Array],
+ type: null,
observer: 'setDays',
},
allowSameDay: Boolean,
diff --git a/dist/calendar/index.js b/dist/calendar/index.js
index aed6ef83..d7b7f27b 100644
--- a/dist/calendar/index.js
+++ b/dist/calendar/index.js
@@ -35,7 +35,7 @@ VantComponent({
},
rangePrompt: String,
defaultDate: {
- type: [Number, Array],
+ type: null,
observer(val) {
this.setData({ currentDate: val });
this.scrollIntoView();
@@ -65,7 +65,7 @@ VantComponent({
value: 'bottom',
},
rowHeight: {
- type: [Number, String],
+ type: null,
value: ROW_HEIGHT,
},
round: {
@@ -101,7 +101,7 @@ VantComponent({
value: true,
},
maxRange: {
- type: [Number, String],
+ type: null,
value: null,
},
},
diff --git a/dist/cell/index.wxml b/dist/cell/index.wxml
index fed768e2..7d7d746d 100644
--- a/dist/cell/index.wxml
+++ b/dist/cell/index.wxml
@@ -1,4 +1,5 @@
+
{{ title }}
diff --git a/dist/cell/index.wxs b/dist/cell/index.wxs
new file mode 100644
index 00000000..e3500c43
--- /dev/null
+++ b/dist/cell/index.wxs
@@ -0,0 +1,17 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function titleStyle(data) {
+ return style([
+ {
+ 'max-width': addUnit(data.titleWidth),
+ 'min-width': addUnit(data.titleWidth),
+ },
+ data.titleStyle,
+ ]);
+}
+
+module.exports = {
+ titleStyle: titleStyle,
+};
diff --git a/dist/checkbox-group/index.js b/dist/checkbox-group/index.js
index 79489272..1c871558 100644
--- a/dist/checkbox-group/index.js
+++ b/dist/checkbox-group/index.js
@@ -1,14 +1,10 @@
+import { useChildren } from '../common/relation';
import { VantComponent } from '../common/component';
VantComponent({
field: true,
- relation: {
- name: 'checkbox',
- type: 'descendant',
- current: 'checkbox-group',
- linked(target) {
- this.updateChild(target);
- },
- },
+ relation: useChildren('checkbox', function (target) {
+ this.updateChild(target);
+ }),
props: {
max: Number,
value: {
@@ -22,7 +18,7 @@ VantComponent({
},
methods: {
updateChildren() {
- (this.children || []).forEach((child) => this.updateChild(child));
+ this.children.forEach((child) => this.updateChild(child));
},
updateChild(child) {
const { value, disabled } = this.data;
diff --git a/dist/checkbox/index.js b/dist/checkbox/index.js
index 9346d3e3..3d1acd41 100644
--- a/dist/checkbox/index.js
+++ b/dist/checkbox/index.js
@@ -1,3 +1,4 @@
+import { useParent } from '../common/relation';
import { VantComponent } from '../common/component';
function emit(target, value) {
target.$emit('input', value);
@@ -5,11 +6,7 @@ function emit(target, value) {
}
VantComponent({
field: true,
- relation: {
- name: 'checkbox-group',
- type: 'ancestor',
- current: 'checkbox',
- },
+ relation: useParent('checkbox-group'),
classes: ['icon-class', 'label-class'],
props: {
value: Boolean,
diff --git a/dist/circle/index.js b/dist/circle/index.js
index 28808f69..dd27f52b 100644
--- a/dist/circle/index.js
+++ b/dist/circle/index.js
@@ -38,7 +38,7 @@ VantComponent({
value: WHITE,
},
color: {
- type: [String, Object],
+ type: null,
value: BLUE,
observer() {
this.setHoverColor().then(() => {
diff --git a/dist/col/index.js b/dist/col/index.js
index 43f0ddef..20f326fb 100644
--- a/dist/col/index.js
+++ b/dist/col/index.js
@@ -1,26 +1,9 @@
+import { useParent } from '../common/relation';
import { VantComponent } from '../common/component';
VantComponent({
- relation: {
- name: 'row',
- type: 'ancestor',
- current: 'col',
- },
+ relation: useParent('row'),
props: {
span: Number,
offset: Number,
},
- data: {
- viewStyle: '',
- },
- methods: {
- setGutter(gutter) {
- const padding = `${gutter / 2}px`;
- const viewStyle = gutter
- ? `padding-left: ${padding}; padding-right: ${padding};`
- : '';
- if (viewStyle !== this.data.viewStyle) {
- this.setData({ viewStyle });
- }
- },
- },
});
diff --git a/dist/col/index.wxml b/dist/col/index.wxml
index 52544f09..975348b6 100644
--- a/dist/col/index.wxml
+++ b/dist/col/index.wxml
@@ -1,8 +1,9 @@
+
diff --git a/dist/col/index.wxs b/dist/col/index.wxs
new file mode 100644
index 00000000..507c1cb9
--- /dev/null
+++ b/dist/col/index.wxs
@@ -0,0 +1,18 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ if (!data.gutter) {
+ return '';
+ }
+
+ return style({
+ 'padding-right': addUnit(data.gutter / 2),
+ 'padding-left': addUnit(data.gutter / 2),
+ });
+}
+
+module.exports = {
+ rootStyle: rootStyle,
+};
diff --git a/dist/collapse-item/index.js b/dist/collapse-item/index.js
index 50ddb5e3..c44c27e1 100644
--- a/dist/collapse-item/index.js
+++ b/dist/collapse-item/index.js
@@ -1,12 +1,9 @@
import { VantComponent } from '../common/component';
+import { useParent } from '../common/relation';
import { setContentAnimate } from './animate';
VantComponent({
classes: ['title-class', 'content-class'],
- relation: {
- name: 'collapse',
- type: 'ancestor',
- current: 'collapse-item',
- },
+ relation: useParent('collapse'),
props: {
name: null,
title: null,
diff --git a/dist/collapse/index.js b/dist/collapse/index.js
index 33dae31e..60e4611a 100644
--- a/dist/collapse/index.js
+++ b/dist/collapse/index.js
@@ -1,10 +1,7 @@
import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
VantComponent({
- relation: {
- name: 'collapse-item',
- type: 'descendant',
- current: 'collapse',
- },
+ relation: useChildren('collapse-item'),
props: {
value: {
type: null,
diff --git a/dist/common/component.d.ts b/dist/common/component.d.ts
index 307a96cc..6b0a9582 100644
--- a/dist/common/component.d.ts
+++ b/dist/common/component.d.ts
@@ -1,3 +1,8 @@
-import { VantComponentOptions, CombinedComponentInstance } from '../definitions/index';
-declare function VantComponent(vantOptions?: VantComponentOptions>): void;
+///
+import { VantComponentOptions } from '../definitions/index';
+declare function VantComponent<
+ Data extends WechatMiniprogram.Component.DataOption,
+ Props extends WechatMiniprogram.Component.PropertyOption,
+ Methods extends WechatMiniprogram.Component.MethodOption
+>(vantOptions: VantComponentOptions): void;
export { VantComponent };
diff --git a/dist/common/component.js b/dist/common/component.js
index f482f9e3..5530c6f0 100644
--- a/dist/common/component.js
+++ b/dist/common/component.js
@@ -1,28 +1,4 @@
import { basic } from '../mixins/basic';
-const relationFunctions = {
- ancestor: {
- linked(parent) {
- // @ts-ignore
- this.parent = parent;
- },
- unlinked() {
- // @ts-ignore
- this.parent = null;
- },
- },
- descendant: {
- linked(child) {
- // @ts-ignore
- this.children = this.children || [];
- // @ts-ignore
- this.children.push(child);
- },
- unlinked(child) {
- // @ts-ignore
- this.children = (this.children || []).filter((it) => it !== child);
- },
- },
-};
function mapKeys(source, target, map) {
Object.keys(map).forEach((key) => {
if (source[key]) {
@@ -30,37 +6,7 @@ function mapKeys(source, target, map) {
}
});
}
-function makeRelation(options, vantOptions, relation) {
- const { type, name, linked, unlinked, linkChanged } = relation;
- const { beforeCreate, destroyed } = vantOptions;
- if (type === 'descendant') {
- options.created = function () {
- beforeCreate && beforeCreate.bind(this)();
- this.children = this.children || [];
- };
- options.detached = function () {
- this.children = [];
- destroyed && destroyed.bind(this)();
- };
- }
- options.relations = Object.assign(options.relations || {}, {
- [`../${name}/index`]: {
- type,
- linked(node) {
- relationFunctions[type].linked.bind(this)(node);
- linked && linked.bind(this)(node);
- },
- linkChanged(node) {
- linkChanged && linkChanged.bind(this)(node);
- },
- unlinked(node) {
- relationFunctions[type].unlinked.bind(this)(node);
- unlinked && unlinked.bind(this)(node);
- },
- },
- });
-}
-function VantComponent(vantOptions = {}) {
+function VantComponent(vantOptions) {
const options = {};
mapKeys(vantOptions, options, {
data: 'data',
@@ -70,32 +16,25 @@ function VantComponent(vantOptions = {}) {
beforeCreate: 'created',
created: 'attached',
mounted: 'ready',
- relations: 'relations',
destroyed: 'detached',
classes: 'externalClasses',
});
- const { relation } = vantOptions;
- if (relation) {
- makeRelation(options, vantOptions, relation);
- }
// add default externalClasses
options.externalClasses = options.externalClasses || [];
options.externalClasses.push('custom-class');
// add default behaviors
options.behaviors = options.behaviors || [];
options.behaviors.push(basic);
+ // add relations
+ const { relation } = vantOptions;
+ if (relation) {
+ options.relations = relation.relations;
+ options.behaviors.push(relation.mixin);
+ }
// map field to form-field behavior
if (vantOptions.field) {
options.behaviors.push('wx://form-field');
}
- if (options.properties) {
- Object.keys(options.properties).forEach((name) => {
- if (Array.isArray(options.properties[name])) {
- // miniprogram do not allow multi type
- options.properties[name] = null;
- }
- });
- }
// add default options
options.options = {
multipleSlots: true,
diff --git a/dist/common/relation.d.ts b/dist/common/relation.d.ts
new file mode 100644
index 00000000..be5f2eea
--- /dev/null
+++ b/dist/common/relation.d.ts
@@ -0,0 +1,21 @@
+///
+declare type TrivialInstance = WechatMiniprogram.Component.TrivialInstance;
+export declare function useParent(
+ name: string,
+ onEffect?: (this: TrivialInstance) => void
+): {
+ relations: {
+ [x: string]: WechatMiniprogram.Component.RelationOption;
+ };
+ mixin: string;
+};
+export declare function useChildren(
+ name: string,
+ onEffect?: (this: TrivialInstance, target: TrivialInstance) => void
+): {
+ relations: {
+ [x: string]: WechatMiniprogram.Component.RelationOption;
+ };
+ mixin: string;
+};
+export {};
diff --git a/dist/common/relation.js b/dist/common/relation.js
new file mode 100644
index 00000000..99c1a493
--- /dev/null
+++ b/dist/common/relation.js
@@ -0,0 +1,64 @@
+export function useParent(name, onEffect) {
+ const path = `../${name}/index`;
+ return {
+ relations: {
+ [path]: {
+ type: 'ancestor',
+ linked() {
+ onEffect && onEffect.call(this);
+ },
+ linkChanged() {
+ onEffect && onEffect.call(this);
+ },
+ unlinked() {
+ onEffect && onEffect.call(this);
+ },
+ },
+ },
+ mixin: Behavior({
+ created() {
+ Object.defineProperty(this, 'parent', {
+ get: () => this.getRelationNodes(path)[0],
+ });
+ Object.defineProperty(this, 'index', {
+ // @ts-ignore
+ get: () => {
+ var _a, _b;
+ return (_b =
+ (_a = this.parent) === null || _a === void 0
+ ? void 0
+ : _a.children) === null || _b === void 0
+ ? void 0
+ : _b.indexOf(this);
+ },
+ });
+ },
+ }),
+ };
+}
+export function useChildren(name, onEffect) {
+ const path = `../${name}/index`;
+ return {
+ relations: {
+ [path]: {
+ type: 'descendant',
+ linked(target) {
+ onEffect && onEffect.call(this, target);
+ },
+ linkChanged(target) {
+ onEffect && onEffect.call(this, target);
+ },
+ unlinked(target) {
+ onEffect && onEffect.call(this, target);
+ },
+ },
+ },
+ mixin: Behavior({
+ created() {
+ Object.defineProperty(this, 'children', {
+ get: () => this.getRelationNodes(path) || [],
+ });
+ },
+ }),
+ };
+}
diff --git a/dist/common/utils.d.ts b/dist/common/utils.d.ts
index b4900da5..1ceccd10 100644
--- a/dist/common/utils.d.ts
+++ b/dist/common/utils.d.ts
@@ -22,3 +22,9 @@ export declare function groupSetData(
export declare function toPromise(
promiseLike: Promise | unknown
): Promise;
+export declare function getCurrentPage(): T &
+ WechatMiniprogram.OptionalInterface &
+ WechatMiniprogram.Page.InstanceProperties &
+ WechatMiniprogram.Page.InstanceMethods> &
+ WechatMiniprogram.Page.Data> &
+ Record;
diff --git a/dist/common/utils.js b/dist/common/utils.js
index 576a67ed..81351715 100644
--- a/dist/common/utils.js
+++ b/dist/common/utils.js
@@ -83,3 +83,7 @@ export function toPromise(promiseLike) {
}
return Promise.resolve(promiseLike);
}
+export function getCurrentPage() {
+ const pages = getCurrentPages();
+ return pages[pages.length - 1];
+}
diff --git a/dist/definitions/index.d.ts b/dist/definitions/index.d.ts
index f2e8e0d1..586e7bbd 100644
--- a/dist/definitions/index.d.ts
+++ b/dist/definitions/index.d.ts
@@ -1,31 +1,43 @@
///
-import { Weapp } from './weapp';
-declare type RecordToAny = {
- [K in keyof T]: any;
-};
-export declare type CombinedComponentInstance = Methods &
- WechatMiniprogram.Component.TrivialInstance &
- Weapp.FormField & {
- data: Data & RecordToAny;
- };
-export interface VantComponentOptions {
+interface VantComponentInstance {
+ parent: WechatMiniprogram.Component.TrivialInstance;
+ children: WechatMiniprogram.Component.TrivialInstance[];
+ index: number;
+ $emit: (
+ name: string,
+ detail?: unknown,
+ options?: WechatMiniprogram.Component.TriggerEventOption
+ ) => void;
+}
+export declare type VantComponentOptions<
+ Data extends WechatMiniprogram.Component.DataOption,
+ Props extends WechatMiniprogram.Component.PropertyOption,
+ Methods extends WechatMiniprogram.Component.MethodOption
+> = {
data?: Data;
field?: boolean;
classes?: string[];
mixins?: string[];
- props?: Props & Weapp.PropertyOption;
- relation?: Weapp.RelationOption & {
- type: 'ancestor' | 'descendant';
- name: string;
- current: string;
+ props?: Props;
+ relation?: {
+ relations: Record;
+ mixin: string;
};
- relations?: {
- [componentName: string]: Weapp.RelationOption;
- };
- methods?: Methods & Weapp.MethodOption;
- beforeCreate?: (this: Instance) => void;
- created?: (this: Instance) => void;
- mounted?: (this: Instance) => void;
- destroyed?: (this: Instance) => void;
-}
+ methods?: Methods;
+ beforeCreate?: () => void;
+ created?: () => void;
+ mounted?: () => void;
+ destroyed?: () => void;
+} & ThisType<
+ VantComponentInstance &
+ WechatMiniprogram.Component.Instance<
+ Data & {
+ name: string;
+ value: any;
+ },
+ Props,
+ Methods
+ > &
+ Record
+>;
export {};
diff --git a/dist/definitions/weapp.d.ts b/dist/definitions/weapp.d.ts
deleted file mode 100644
index 9b7ca5a3..00000000
--- a/dist/definitions/weapp.d.ts
+++ /dev/null
@@ -1,77 +0,0 @@
-///
-export declare namespace Weapp {
- export interface FormField {
- data: {
- name: string;
- value: any;
- };
- }
- /**
- * relation定义,miniprogram-api-typings缺少this定义
- */
- export interface RelationOption {
- /** 目标组件的相对关系 */
- type: 'parent' | 'child' | 'ancestor' | 'descendant';
- /** 关系生命周期函数,当关系被建立在页面节点树中时触发,触发时机在组件attached生命周期之后 */
- linked?(
- this: Instance,
- target: WechatMiniprogram.Component.TrivialInstance
- ): void;
- /** 关系生命周期函数,当关系在页面节点树中发生改变时触发,触发时机在组件moved生命周期之后 */
- linkChanged?(
- this: Instance,
- target: WechatMiniprogram.Component.TrivialInstance
- ): void;
- /** 关系生命周期函数,当关系脱离页面节点树时触发,触发时机在组件detached生命周期之后 */
- unlinked?(
- this: Instance,
- target: WechatMiniprogram.Component.TrivialInstance
- ): void;
- /** 如果这一项被设置,则它表示关联的目标节点所应具有的behavior,所有拥有这一behavior的组件节点都会被关联 */
- target?: string;
- }
- /**
- * obverser定义,miniprogram-api-typings缺少this定义
- */
- type Observer = (
- this: Instance,
- newVal: T,
- oldVal: T,
- changedPath: Array
- ) => void;
- /**
- * methods定义,miniprogram-api-typings缺少this定义
- */
- export interface MethodOption {
- [name: string]: (this: Instance, ...args: any[]) => any;
- }
- export interface ComputedOption {
- [name: string]: (this: Instance) => any;
- }
- type PropertyType =
- | StringConstructor
- | NumberConstructor
- | BooleanConstructor
- | ArrayConstructor
- | ObjectConstructor
- | FunctionConstructor
- | null;
- export interface PropertyOption {
- [name: string]:
- | PropertyType
- | PropertyType[]
- | {
- /** 属性类型 */
- type: PropertyType | PropertyType[];
- /** 属性初始值 */
- value?: any;
- /** 属性值被更改时的响应函数 */
- observer?:
- | string
- | Observer;
- /** 属性的类型(可以指定多个) */
- optionalTypes?: PropertyType[];
- };
- }
- export {};
-}
diff --git a/dist/definitions/weapp.js b/dist/definitions/weapp.js
deleted file mode 100644
index cb0ff5c3..00000000
--- a/dist/definitions/weapp.js
+++ /dev/null
@@ -1 +0,0 @@
-export {};
diff --git a/dist/dialog/index.js b/dist/dialog/index.js
index f2e4f386..5388cda5 100644
--- a/dist/dialog/index.js
+++ b/dist/dialog/index.js
@@ -68,6 +68,7 @@ VantComponent({
confirm: false,
cancel: false,
},
+ callback: () => {},
},
methods: {
onConfirm() {
@@ -77,7 +78,7 @@ VantComponent({
this.handleAction('cancel');
},
onClickOverlay() {
- this.onClose('overlay');
+ this.close('overlay');
},
close(action) {
this.setData({ show: false });
diff --git a/dist/divider/index.js b/dist/divider/index.js
index 96716e6e..e7257408 100644
--- a/dist/divider/index.js
+++ b/dist/divider/index.js
@@ -1,33 +1,12 @@
import { VantComponent } from '../common/component';
VantComponent({
props: {
- dashed: {
- type: Boolean,
- value: false,
- },
- hairline: {
- type: Boolean,
- value: false,
- },
- contentPosition: {
- type: String,
- value: '',
- },
- fontSize: {
- type: Number,
- value: '',
- },
- borderColor: {
- type: String,
- value: '',
- },
- textColor: {
- type: String,
- value: '',
- },
- customStyle: {
- type: String,
- value: '',
- },
+ dashed: Boolean,
+ hairline: Boolean,
+ contentPosition: String,
+ fontSize: String,
+ borderColor: String,
+ textColor: String,
+ customStyle: String,
},
});
diff --git a/dist/divider/index.wxml b/dist/divider/index.wxml
index 412e73f2..f6a5a457 100644
--- a/dist/divider/index.wxml
+++ b/dist/divider/index.wxml
@@ -1,8 +1,9 @@
+
diff --git a/dist/divider/index.wxs b/dist/divider/index.wxs
new file mode 100644
index 00000000..215b14f4
--- /dev/null
+++ b/dist/divider/index.wxs
@@ -0,0 +1,18 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ return style([
+ {
+ 'border-color': data.borderColor,
+ color: data.textColor,
+ 'font-size': addUnit(data.fontSize),
+ },
+ data.customStyle,
+ ]);
+}
+
+module.exports = {
+ rootStyle: rootStyle,
+};
diff --git a/dist/dropdown-item/index.js b/dist/dropdown-item/index.js
index 46588d05..95da1eef 100644
--- a/dist/dropdown-item/index.js
+++ b/dist/dropdown-item/index.js
@@ -1,14 +1,10 @@
+import { useParent } from '../common/relation';
import { VantComponent } from '../common/component';
VantComponent({
field: true,
- relation: {
- name: 'dropdown-menu',
- type: 'ancestor',
- current: 'dropdown-item',
- linked() {
- this.updateDataFromParent();
- },
- },
+ relation: useParent('dropdown-menu', function () {
+ this.updateDataFromParent();
+ }),
props: {
value: {
type: null,
@@ -39,7 +35,10 @@ VantComponent({
methods: {
rerender() {
wx.nextTick(() => {
- this.parent && this.parent.updateItemListData();
+ var _a;
+ (_a = this.parent) === null || _a === void 0
+ ? void 0
+ : _a.updateItemListData();
});
},
updateDataFromParent() {
@@ -85,6 +84,7 @@ VantComponent({
}
},
toggle(show, options = {}) {
+ var _a;
const { showPopup } = this.data;
if (typeof show !== 'boolean') {
show = !showPopup;
@@ -97,10 +97,12 @@ VantComponent({
showPopup: show,
});
if (show) {
- this.parent.getChildWrapperStyle().then((wrapperStyle) => {
- this.setData({ wrapperStyle, showWrapper: true });
- this.rerender();
- });
+ (_a = this.parent) === null || _a === void 0
+ ? void 0
+ : _a.getChildWrapperStyle().then((wrapperStyle) => {
+ this.setData({ wrapperStyle, showWrapper: true });
+ this.rerender();
+ });
} else {
this.rerender();
}
diff --git a/dist/dropdown-menu/index.js b/dist/dropdown-menu/index.js
index bdb884c8..aba11b98 100644
--- a/dist/dropdown-menu/index.js
+++ b/dist/dropdown-menu/index.js
@@ -1,19 +1,12 @@
import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
import { addUnit, getRect, getSystemInfoSync } from '../common/utils';
let ARRAY = [];
VantComponent({
field: true,
- relation: {
- name: 'dropdown-item',
- type: 'descendant',
- current: 'dropdown-menu',
- linked() {
- this.updateItemListData();
- },
- unlinked() {
- this.updateItemListData();
- },
- },
+ relation: useChildren('dropdown-item', function () {
+ this.updateItemListData();
+ }),
props: {
activeColor: {
type: String,
diff --git a/dist/empty/index.js b/dist/empty/index.js
index 0fee8a48..32ec1163 100644
--- a/dist/empty/index.js
+++ b/dist/empty/index.js
@@ -1,5 +1,4 @@
import { VantComponent } from '../common/component';
-const PRESETS = ['error', 'search', 'default', 'network'];
VantComponent({
props: {
description: String,
@@ -8,13 +7,4 @@ VantComponent({
value: 'default',
},
},
- created() {
- if (PRESETS.indexOf(this.data.image) !== -1) {
- this.setData({
- imageUrl: `https://img.yzcdn.cn/vant/empty-image-${this.data.image}.png`,
- });
- } else {
- this.setData({ imageUrl: this.data.image });
- }
- },
});
diff --git a/dist/empty/index.wxml b/dist/empty/index.wxml
index b6a2cb3c..9c7b719a 100644
--- a/dist/empty/index.wxml
+++ b/dist/empty/index.wxml
@@ -1,11 +1,12 @@
+
-
+
diff --git a/dist/empty/index.wxs b/dist/empty/index.wxs
new file mode 100644
index 00000000..9696dd47
--- /dev/null
+++ b/dist/empty/index.wxs
@@ -0,0 +1,14 @@
+/* eslint-disable */
+var PRESETS = ['error', 'search', 'default', 'network'];
+
+function imageUrl(image) {
+ if (PRESETS.indexOf(image) !== -1) {
+ return 'https://img.yzcdn.cn/vant/empty-image-' + image + '.png';
+ }
+
+ return image;
+}
+
+module.exports = {
+ imageUrl: imageUrl,
+};
diff --git a/dist/field/index.js b/dist/field/index.js
index 154bda12..fd3472dc 100644
--- a/dist/field/index.js
+++ b/dist/field/index.js
@@ -1,3 +1,4 @@
+import { nextTick } from '../common/utils';
import { VantComponent } from '../common/component';
import { commonProps, inputProps, textareaProps } from './props';
VantComponent({
@@ -17,7 +18,7 @@ VantComponent({
isLink: Boolean,
leftIcon: String,
rightIcon: String,
- autosize: [Boolean, Object],
+ autosize: null,
required: Boolean,
iconClass: String,
clickable: Boolean,
@@ -74,11 +75,14 @@ VantComponent({
onClickIcon() {
this.$emit('click-icon');
},
+ onClickInput(event) {
+ this.$emit('click-input', event.detail);
+ },
onClear() {
this.setData({ innerValue: '' });
this.value = '';
this.setShowClear();
- wx.nextTick(() => {
+ nextTick(() => {
this.emitChange();
this.$emit('clear', '');
});
@@ -105,7 +109,7 @@ VantComponent({
},
emitChange() {
this.setData({ value: this.value });
- wx.nextTick(() => {
+ nextTick(() => {
this.$emit('input', this.value);
this.$emit('change', this.value);
});
diff --git a/dist/field/index.wxml b/dist/field/index.wxml
index 6254e676..9dc8b666 100644
--- a/dist/field/index.wxml
+++ b/dist/field/index.wxml
@@ -21,63 +21,12 @@
-
-
+
+
+
+
+
+
diff --git a/dist/field/props.d.ts b/dist/field/props.d.ts
index fa2f0b68..5cd130a1 100644
--- a/dist/field/props.d.ts
+++ b/dist/field/props.d.ts
@@ -1,62 +1,4 @@
///
-export declare const commonProps: {
- value: {
- type: StringConstructor;
- observer(
- this: WechatMiniprogram.Component.TrivialInstance,
- value: string
- ): void;
- };
- placeholder: StringConstructor;
- placeholderStyle: StringConstructor;
- placeholderClass: StringConstructor;
- disabled: BooleanConstructor;
- maxlength: {
- type: NumberConstructor;
- value: number;
- };
- cursorSpacing: {
- type: NumberConstructor;
- value: number;
- };
- autoFocus: BooleanConstructor;
- focus: BooleanConstructor;
- cursor: {
- type: NumberConstructor;
- value: number;
- };
- selectionStart: {
- type: NumberConstructor;
- value: number;
- };
- selectionEnd: {
- type: NumberConstructor;
- value: number;
- };
- adjustPosition: {
- type: BooleanConstructor;
- value: boolean;
- };
- holdKeyboard: BooleanConstructor;
-};
-export declare const inputProps: {
- type: {
- type: StringConstructor;
- value: string;
- };
- password: BooleanConstructor;
- confirmType: StringConstructor;
- confirmHold: BooleanConstructor;
-};
-export declare const textareaProps: {
- autoHeight: BooleanConstructor;
- fixed: BooleanConstructor;
- showConfirmBar: {
- type: BooleanConstructor;
- value: boolean;
- };
- disableDefaultPadding: {
- type: BooleanConstructor;
- value: boolean;
- };
-};
+export declare const commonProps: WechatMiniprogram.Component.PropertyOption;
+export declare const inputProps: WechatMiniprogram.Component.PropertyOption;
+export declare const textareaProps: WechatMiniprogram.Component.PropertyOption;
diff --git a/dist/field/textarea.wxml b/dist/field/textarea.wxml
new file mode 100644
index 00000000..5015a51d
--- /dev/null
+++ b/dist/field/textarea.wxml
@@ -0,0 +1,29 @@
+
diff --git a/dist/goods-action-button/index.js b/dist/goods-action-button/index.js
index 61d3bb3b..6a210c11 100644
--- a/dist/goods-action-button/index.js
+++ b/dist/goods-action-button/index.js
@@ -1,14 +1,11 @@
import { VantComponent } from '../common/component';
-import { link } from '../mixins/link';
+import { useParent } from '../common/relation';
import { button } from '../mixins/button';
+import { link } from '../mixins/link';
import { openType } from '../mixins/open-type';
VantComponent({
mixins: [link, button, openType],
- relation: {
- type: 'ancestor',
- name: 'goods-action',
- current: 'goods-action-button',
- },
+ relation: useParent('goods-action'),
props: {
text: String,
color: String,
@@ -29,12 +26,11 @@ VantComponent({
if (this.parent == null) {
return;
}
+ const { index } = this;
const { children = [] } = this.parent;
- const { length } = children;
- const index = children.indexOf(this);
this.setData({
isFirst: index === 0,
- isLast: index === length - 1,
+ isLast: index === children.length - 1,
});
},
},
diff --git a/dist/goods-action/index.js b/dist/goods-action/index.js
index f572326d..c58c38df 100644
--- a/dist/goods-action/index.js
+++ b/dist/goods-action/index.js
@@ -1,32 +1,15 @@
import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
VantComponent({
- relation: {
- type: 'descendant',
- name: 'goods-action-button',
- current: 'goods-action',
- linked() {
- this.updateStyle();
- },
- unlinked() {
- this.updateStyle();
- },
- linkChanged() {
- this.updateStyle();
- },
- },
+ relation: useChildren('goods-action-button', function () {
+ this.children.forEach((item) => {
+ item.updateStyle();
+ });
+ }),
props: {
safeAreaInsetBottom: {
type: Boolean,
value: true,
},
},
- methods: {
- updateStyle() {
- wx.nextTick(() => {
- this.children.forEach((child) => {
- child.updateStyle();
- });
- });
- },
- },
});
diff --git a/dist/grid-item/index.js b/dist/grid-item/index.js
index 50184202..e0083097 100644
--- a/dist/grid-item/index.js
+++ b/dist/grid-item/index.js
@@ -1,11 +1,8 @@
-import { link } from '../mixins/link';
import { VantComponent } from '../common/component';
+import { useParent } from '../common/relation';
+import { link } from '../mixins/link';
VantComponent({
- relation: {
- name: 'grid',
- type: 'ancestor',
- current: 'grid-item',
- },
+ relation: useParent('grid'),
classes: ['content-class', 'icon-class', 'text-class'],
mixins: [link],
props: {
diff --git a/dist/grid/index.js b/dist/grid/index.js
index 06eca9be..73e41ceb 100644
--- a/dist/grid/index.js
+++ b/dist/grid/index.js
@@ -1,17 +1,14 @@
import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
VantComponent({
- relation: {
- name: 'grid-item',
- type: 'descendant',
- current: 'grid',
- },
+ relation: useChildren('grid-item'),
props: {
square: {
type: Boolean,
observer: 'updateChildren',
},
gutter: {
- type: [Number, String],
+ type: null,
value: 0,
observer: 'updateChildren',
},
diff --git a/dist/icon/index.wxss b/dist/icon/index.wxss
index b3925d34..a1bd1d1d 100644
--- a/dist/icon/index.wxss
+++ b/dist/icon/index.wxss
@@ -1 +1 @@
-@import '../common/index.wxss';@font-face{font-weight:400;font-family:vant-icon;font-style:normal;font-display:auto;src:url(https://img.yzcdn.cn/vant/vant-icon-96970a.woff2) format("woff2"),url(https://img.yzcdn.cn/vant/vant-icon-96970a.woff) format("woff"),url(https://img.yzcdn.cn/vant/vant-icon-96970a.ttf) format("truetype")}.van-icon{position:relative;font:normal normal normal 14px/1 vant-icon;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased}.van-icon,.van-icon:before{display:inline-block}.van-icon-add-o:before{content:"\F000"}.van-icon-add-square:before{content:"\F001"}.van-icon-add:before{content:"\F002"}.van-icon-after-sale:before{content:"\F003"}.van-icon-aim:before{content:"\F004"}.van-icon-alipay:before{content:"\F005"}.van-icon-apps-o:before{content:"\F006"}.van-icon-arrow-down:before{content:"\F007"}.van-icon-arrow-left:before{content:"\F008"}.van-icon-arrow-up:before{content:"\F009"}.van-icon-arrow:before{content:"\F00A"}.van-icon-ascending:before{content:"\F00B"}.van-icon-audio:before{content:"\F00C"}.van-icon-award-o:before{content:"\F00D"}.van-icon-award:before{content:"\F00E"}.van-icon-back-top:before{content:"\F0E6"}.van-icon-bag-o:before{content:"\F00F"}.van-icon-bag:before{content:"\F010"}.van-icon-balance-list-o:before{content:"\F011"}.van-icon-balance-list:before{content:"\F012"}.van-icon-balance-o:before{content:"\F013"}.van-icon-balance-pay:before{content:"\F014"}.van-icon-bar-chart-o:before{content:"\F015"}.van-icon-bars:before{content:"\F016"}.van-icon-bell:before{content:"\F017"}.van-icon-bill-o:before{content:"\F018"}.van-icon-bill:before{content:"\F019"}.van-icon-birthday-cake-o:before{content:"\F01A"}.van-icon-bookmark-o:before{content:"\F01B"}.van-icon-bookmark:before{content:"\F01C"}.van-icon-browsing-history-o:before{content:"\F01D"}.van-icon-browsing-history:before{content:"\F01E"}.van-icon-brush-o:before{content:"\F01F"}.van-icon-bulb-o:before{content:"\F020"}.van-icon-bullhorn-o:before{content:"\F021"}.van-icon-calendar-o:before{content:"\F022"}.van-icon-card:before{content:"\F023"}.van-icon-cart-circle-o:before{content:"\F024"}.van-icon-cart-circle:before{content:"\F025"}.van-icon-cart-o:before{content:"\F026"}.van-icon-cart:before{content:"\F027"}.van-icon-cash-back-record:before{content:"\F028"}.van-icon-cash-on-deliver:before{content:"\F029"}.van-icon-cashier-o:before{content:"\F02A"}.van-icon-certificate:before{content:"\F02B"}.van-icon-chart-trending-o:before{content:"\F02C"}.van-icon-chat-o:before{content:"\F02D"}.van-icon-chat:before{content:"\F02E"}.van-icon-checked:before{content:"\F02F"}.van-icon-circle:before{content:"\F030"}.van-icon-clear:before{content:"\F031"}.van-icon-clock-o:before{content:"\F032"}.van-icon-clock:before{content:"\F033"}.van-icon-close:before{content:"\F034"}.van-icon-closed-eye:before{content:"\F035"}.van-icon-cluster-o:before{content:"\F036"}.van-icon-cluster:before{content:"\F037"}.van-icon-column:before{content:"\F038"}.van-icon-comment-circle-o:before{content:"\F039"}.van-icon-comment-circle:before{content:"\F03A"}.van-icon-comment-o:before{content:"\F03B"}.van-icon-comment:before{content:"\F03C"}.van-icon-completed:before{content:"\F03D"}.van-icon-contact:before{content:"\F03E"}.van-icon-coupon-o:before{content:"\F03F"}.van-icon-coupon:before{content:"\F040"}.van-icon-credit-pay:before{content:"\F041"}.van-icon-cross:before{content:"\F042"}.van-icon-debit-pay:before{content:"\F043"}.van-icon-delete:before{content:"\F044"}.van-icon-descending:before{content:"\F045"}.van-icon-description:before{content:"\F046"}.van-icon-desktop-o:before{content:"\F047"}.van-icon-diamond-o:before{content:"\F048"}.van-icon-diamond:before{content:"\F049"}.van-icon-discount:before{content:"\F04A"}.van-icon-down:before{content:"\F04B"}.van-icon-ecard-pay:before{content:"\F04C"}.van-icon-edit:before{content:"\F04D"}.van-icon-ellipsis:before{content:"\F04E"}.van-icon-empty:before{content:"\F04F"}.van-icon-enlarge:before{content:"\F0E4"}.van-icon-envelop-o:before{content:"\F050"}.van-icon-exchange:before{content:"\F051"}.van-icon-expand-o:before{content:"\F052"}.van-icon-expand:before{content:"\F053"}.van-icon-eye-o:before{content:"\F054"}.van-icon-eye:before{content:"\F055"}.van-icon-fail:before{content:"\F056"}.van-icon-failure:before{content:"\F057"}.van-icon-filter-o:before{content:"\F058"}.van-icon-fire-o:before{content:"\F059"}.van-icon-fire:before{content:"\F05A"}.van-icon-flag-o:before{content:"\F05B"}.van-icon-flower-o:before{content:"\F05C"}.van-icon-free-postage:before{content:"\F05D"}.van-icon-friends-o:before{content:"\F05E"}.van-icon-friends:before{content:"\F05F"}.van-icon-gem-o:before{content:"\F060"}.van-icon-gem:before{content:"\F061"}.van-icon-gift-card-o:before{content:"\F062"}.van-icon-gift-card:before{content:"\F063"}.van-icon-gift-o:before{content:"\F064"}.van-icon-gift:before{content:"\F065"}.van-icon-gold-coin-o:before{content:"\F066"}.van-icon-gold-coin:before{content:"\F067"}.van-icon-good-job-o:before{content:"\F068"}.van-icon-good-job:before{content:"\F069"}.van-icon-goods-collect-o:before{content:"\F06A"}.van-icon-goods-collect:before{content:"\F06B"}.van-icon-graphic:before{content:"\F06C"}.van-icon-home-o:before{content:"\F06D"}.van-icon-hot-o:before{content:"\F06E"}.van-icon-hot-sale-o:before{content:"\F06F"}.van-icon-hot-sale:before{content:"\F070"}.van-icon-hot:before{content:"\F071"}.van-icon-hotel-o:before{content:"\F072"}.van-icon-idcard:before{content:"\F073"}.van-icon-info-o:before{content:"\F074"}.van-icon-info:before{content:"\F075"}.van-icon-invition:before{content:"\F076"}.van-icon-label-o:before{content:"\F077"}.van-icon-label:before{content:"\F078"}.van-icon-like-o:before{content:"\F079"}.van-icon-like:before{content:"\F07A"}.van-icon-live:before{content:"\F07B"}.van-icon-location-o:before{content:"\F07C"}.van-icon-location:before{content:"\F07D"}.van-icon-lock:before{content:"\F07E"}.van-icon-logistics:before{content:"\F07F"}.van-icon-manager-o:before{content:"\F080"}.van-icon-manager:before{content:"\F081"}.van-icon-map-marked:before{content:"\F082"}.van-icon-medal-o:before{content:"\F083"}.van-icon-medal:before{content:"\F084"}.van-icon-minus:before{content:"\F0E8"}.van-icon-more-o:before{content:"\F085"}.van-icon-more:before{content:"\F086"}.van-icon-music-o:before{content:"\F087"}.van-icon-music:before{content:"\F088"}.van-icon-new-arrival-o:before{content:"\F089"}.van-icon-new-arrival:before{content:"\F08A"}.van-icon-new-o:before{content:"\F08B"}.van-icon-new:before{content:"\F08C"}.van-icon-newspaper-o:before{content:"\F08D"}.van-icon-notes-o:before{content:"\F08E"}.van-icon-orders-o:before{content:"\F08F"}.van-icon-other-pay:before{content:"\F090"}.van-icon-paid:before{content:"\F091"}.van-icon-passed:before{content:"\F092"}.van-icon-pause-circle-o:before{content:"\F093"}.van-icon-pause-circle:before{content:"\F094"}.van-icon-pause:before{content:"\F095"}.van-icon-peer-pay:before{content:"\F096"}.van-icon-pending-payment:before{content:"\F097"}.van-icon-phone-circle-o:before{content:"\F098"}.van-icon-phone-circle:before{content:"\F099"}.van-icon-phone-o:before{content:"\F09A"}.van-icon-phone:before{content:"\F09B"}.van-icon-photo-fail:before{content:"\F0E5"}.van-icon-photo-o:before{content:"\F09C"}.van-icon-photo:before{content:"\F09D"}.van-icon-photograph:before{content:"\F09E"}.van-icon-play-circle-o:before{content:"\F09F"}.van-icon-play-circle:before{content:"\F0A0"}.van-icon-play:before{content:"\F0A1"}.van-icon-plus:before{content:"\F0A2"}.van-icon-point-gift-o:before{content:"\F0A3"}.van-icon-point-gift:before{content:"\F0A4"}.van-icon-points:before{content:"\F0A5"}.van-icon-printer:before{content:"\F0A6"}.van-icon-qr-invalid:before{content:"\F0A7"}.van-icon-qr:before{content:"\F0A8"}.van-icon-question-o:before{content:"\F0A9"}.van-icon-question:before{content:"\F0AA"}.van-icon-records:before{content:"\F0AB"}.van-icon-refund-o:before{content:"\F0AC"}.van-icon-replay:before{content:"\F0AD"}.van-icon-scan:before{content:"\F0AE"}.van-icon-search:before{content:"\F0AF"}.van-icon-send-gift-o:before{content:"\F0B0"}.van-icon-send-gift:before{content:"\F0B1"}.van-icon-service-o:before{content:"\F0B2"}.van-icon-service:before{content:"\F0B3"}.van-icon-setting-o:before{content:"\F0B4"}.van-icon-setting:before{content:"\F0B5"}.van-icon-share-o:before{content:"\F0E7"}.van-icon-share:before{content:"\F0B6"}.van-icon-shop-collect-o:before{content:"\F0B7"}.van-icon-shop-collect:before{content:"\F0B8"}.van-icon-shop-o:before{content:"\F0B9"}.van-icon-shop:before{content:"\F0BA"}.van-icon-shopping-cart-o:before{content:"\F0BB"}.van-icon-shopping-cart:before{content:"\F0BC"}.van-icon-shrink:before{content:"\F0BD"}.van-icon-sign:before{content:"\F0BE"}.van-icon-smile-comment-o:before{content:"\F0BF"}.van-icon-smile-comment:before{content:"\F0C0"}.van-icon-smile-o:before{content:"\F0C1"}.van-icon-smile:before{content:"\F0C2"}.van-icon-star-o:before{content:"\F0C3"}.van-icon-star:before{content:"\F0C4"}.van-icon-stop-circle-o:before{content:"\F0C5"}.van-icon-stop-circle:before{content:"\F0C6"}.van-icon-stop:before{content:"\F0C7"}.van-icon-success:before{content:"\F0C8"}.van-icon-thumb-circle-o:before{content:"\F0C9"}.van-icon-thumb-circle:before{content:"\F0CA"}.van-icon-todo-list-o:before{content:"\F0CB"}.van-icon-todo-list:before{content:"\F0CC"}.van-icon-tosend:before{content:"\F0CD"}.van-icon-tv-o:before{content:"\F0CE"}.van-icon-umbrella-circle:before{content:"\F0CF"}.van-icon-underway-o:before{content:"\F0D0"}.van-icon-underway:before{content:"\F0D1"}.van-icon-upgrade:before{content:"\F0D2"}.van-icon-user-circle-o:before{content:"\F0D3"}.van-icon-user-o:before{content:"\F0D4"}.van-icon-video-o:before{content:"\F0D5"}.van-icon-video:before{content:"\F0D6"}.van-icon-vip-card-o:before{content:"\F0D7"}.van-icon-vip-card:before{content:"\F0D8"}.van-icon-volume-o:before{content:"\F0D9"}.van-icon-volume:before{content:"\F0DA"}.van-icon-wap-home-o:before{content:"\F0DB"}.van-icon-wap-home:before{content:"\F0DC"}.van-icon-wap-nav:before{content:"\F0DD"}.van-icon-warn-o:before{content:"\F0DE"}.van-icon-warning-o:before{content:"\F0DF"}.van-icon-warning:before{content:"\F0E0"}.van-icon-weapp-nav:before{content:"\F0E1"}.van-icon-wechat:before{content:"\F0E2"}.van-icon-youzan-shield:before{content:"\F0E3"}:host{display:-webkit-inline-flex;display:inline-flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center}.van-icon--image{width:1em;height:1em}.van-icon__image{width:100%;height:100%}.van-icon__info{z-index:1}
\ No newline at end of file
+@import '../common/index.wxss';@font-face{font-weight:400;font-family:vant-icon;font-style:normal;font-display:auto;src:url(https://img.yzcdn.cn/vant/vant-icon-84f687.woff2) format("woff2"),url(https://img.yzcdn.cn/vant/vant-icon-84f687.woff) format("woff"),url(https://img.yzcdn.cn/vant/vant-icon-84f687.ttf) format("truetype")}.van-icon{position:relative;font:normal normal normal 14px/1 vant-icon;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased}.van-icon,.van-icon:before{display:inline-block}.van-icon-add-o:before{content:"\F000"}.van-icon-add-square:before{content:"\F001"}.van-icon-add:before{content:"\F002"}.van-icon-after-sale:before{content:"\F003"}.van-icon-aim:before{content:"\F004"}.van-icon-alipay:before{content:"\F005"}.van-icon-apps-o:before{content:"\F006"}.van-icon-arrow-down:before{content:"\F007"}.van-icon-arrow-left:before{content:"\F008"}.van-icon-arrow-up:before{content:"\F009"}.van-icon-arrow:before{content:"\F00A"}.van-icon-ascending:before{content:"\F00B"}.van-icon-audio:before{content:"\F00C"}.van-icon-award-o:before{content:"\F00D"}.van-icon-award:before{content:"\F00E"}.van-icon-back-top:before{content:"\F0E6"}.van-icon-bag-o:before{content:"\F00F"}.van-icon-bag:before{content:"\F010"}.van-icon-balance-list-o:before{content:"\F011"}.van-icon-balance-list:before{content:"\F012"}.van-icon-balance-o:before{content:"\F013"}.van-icon-balance-pay:before{content:"\F014"}.van-icon-bar-chart-o:before{content:"\F015"}.van-icon-bars:before{content:"\F016"}.van-icon-bell:before{content:"\F017"}.van-icon-bill-o:before{content:"\F018"}.van-icon-bill:before{content:"\F019"}.van-icon-birthday-cake-o:before{content:"\F01A"}.van-icon-bookmark-o:before{content:"\F01B"}.van-icon-bookmark:before{content:"\F01C"}.van-icon-browsing-history-o:before{content:"\F01D"}.van-icon-browsing-history:before{content:"\F01E"}.van-icon-brush-o:before{content:"\F01F"}.van-icon-bulb-o:before{content:"\F020"}.van-icon-bullhorn-o:before{content:"\F021"}.van-icon-calendar-o:before{content:"\F022"}.van-icon-card:before{content:"\F023"}.van-icon-cart-circle-o:before{content:"\F024"}.van-icon-cart-circle:before{content:"\F025"}.van-icon-cart-o:before{content:"\F026"}.van-icon-cart:before{content:"\F027"}.van-icon-cash-back-record:before{content:"\F028"}.van-icon-cash-on-deliver:before{content:"\F029"}.van-icon-cashier-o:before{content:"\F02A"}.van-icon-certificate:before{content:"\F02B"}.van-icon-chart-trending-o:before{content:"\F02C"}.van-icon-chat-o:before{content:"\F02D"}.van-icon-chat:before{content:"\F02E"}.van-icon-checked:before{content:"\F02F"}.van-icon-circle:before{content:"\F030"}.van-icon-clear:before{content:"\F031"}.van-icon-clock-o:before{content:"\F032"}.van-icon-clock:before{content:"\F033"}.van-icon-close:before{content:"\F034"}.van-icon-closed-eye:before{content:"\F035"}.van-icon-cluster-o:before{content:"\F036"}.van-icon-cluster:before{content:"\F037"}.van-icon-column:before{content:"\F038"}.van-icon-comment-circle-o:before{content:"\F039"}.van-icon-comment-circle:before{content:"\F03A"}.van-icon-comment-o:before{content:"\F03B"}.van-icon-comment:before{content:"\F03C"}.van-icon-completed:before{content:"\F03D"}.van-icon-contact:before{content:"\F03E"}.van-icon-coupon-o:before{content:"\F03F"}.van-icon-coupon:before{content:"\F040"}.van-icon-credit-pay:before{content:"\F041"}.van-icon-cross:before{content:"\F042"}.van-icon-debit-pay:before{content:"\F043"}.van-icon-delete-o:before{content:"\F0E9"}.van-icon-delete:before{content:"\F044"}.van-icon-descending:before{content:"\F045"}.van-icon-description:before{content:"\F046"}.van-icon-desktop-o:before{content:"\F047"}.van-icon-diamond-o:before{content:"\F048"}.van-icon-diamond:before{content:"\F049"}.van-icon-discount:before{content:"\F04A"}.van-icon-down:before{content:"\F04B"}.van-icon-ecard-pay:before{content:"\F04C"}.van-icon-edit:before{content:"\F04D"}.van-icon-ellipsis:before{content:"\F04E"}.van-icon-empty:before{content:"\F04F"}.van-icon-enlarge:before{content:"\F0E4"}.van-icon-envelop-o:before{content:"\F050"}.van-icon-exchange:before{content:"\F051"}.van-icon-expand-o:before{content:"\F052"}.van-icon-expand:before{content:"\F053"}.van-icon-eye-o:before{content:"\F054"}.van-icon-eye:before{content:"\F055"}.van-icon-fail:before{content:"\F056"}.van-icon-failure:before{content:"\F057"}.van-icon-filter-o:before{content:"\F058"}.van-icon-fire-o:before{content:"\F059"}.van-icon-fire:before{content:"\F05A"}.van-icon-flag-o:before{content:"\F05B"}.van-icon-flower-o:before{content:"\F05C"}.van-icon-font-o:before{content:"\F0EC"}.van-icon-font:before{content:"\F0EB"}.van-icon-free-postage:before{content:"\F05D"}.van-icon-friends-o:before{content:"\F05E"}.van-icon-friends:before{content:"\F05F"}.van-icon-gem-o:before{content:"\F060"}.van-icon-gem:before{content:"\F061"}.van-icon-gift-card-o:before{content:"\F062"}.van-icon-gift-card:before{content:"\F063"}.van-icon-gift-o:before{content:"\F064"}.van-icon-gift:before{content:"\F065"}.van-icon-gold-coin-o:before{content:"\F066"}.van-icon-gold-coin:before{content:"\F067"}.van-icon-good-job-o:before{content:"\F068"}.van-icon-good-job:before{content:"\F069"}.van-icon-goods-collect-o:before{content:"\F06A"}.van-icon-goods-collect:before{content:"\F06B"}.van-icon-graphic:before{content:"\F06C"}.van-icon-home-o:before{content:"\F06D"}.van-icon-hot-o:before{content:"\F06E"}.van-icon-hot-sale-o:before{content:"\F06F"}.van-icon-hot-sale:before{content:"\F070"}.van-icon-hot:before{content:"\F071"}.van-icon-hotel-o:before{content:"\F072"}.van-icon-idcard:before{content:"\F073"}.van-icon-info-o:before{content:"\F074"}.van-icon-info:before{content:"\F075"}.van-icon-invition:before{content:"\F076"}.van-icon-label-o:before{content:"\F077"}.van-icon-label:before{content:"\F078"}.van-icon-like-o:before{content:"\F079"}.van-icon-like:before{content:"\F07A"}.van-icon-live:before{content:"\F07B"}.van-icon-location-o:before{content:"\F07C"}.van-icon-location:before{content:"\F07D"}.van-icon-lock:before{content:"\F07E"}.van-icon-logistics:before{content:"\F07F"}.van-icon-manager-o:before{content:"\F080"}.van-icon-manager:before{content:"\F081"}.van-icon-map-marked:before{content:"\F082"}.van-icon-medal-o:before{content:"\F083"}.van-icon-medal:before{content:"\F084"}.van-icon-minus:before{content:"\F0E8"}.van-icon-more-o:before{content:"\F085"}.van-icon-more:before{content:"\F086"}.van-icon-music-o:before{content:"\F087"}.van-icon-music:before{content:"\F088"}.van-icon-new-arrival-o:before{content:"\F089"}.van-icon-new-arrival:before{content:"\F08A"}.van-icon-new-o:before{content:"\F08B"}.van-icon-new:before{content:"\F08C"}.van-icon-newspaper-o:before{content:"\F08D"}.van-icon-notes-o:before{content:"\F08E"}.van-icon-orders-o:before{content:"\F08F"}.van-icon-other-pay:before{content:"\F090"}.van-icon-paid:before{content:"\F091"}.van-icon-passed:before{content:"\F092"}.van-icon-pause-circle-o:before{content:"\F093"}.van-icon-pause-circle:before{content:"\F094"}.van-icon-pause:before{content:"\F095"}.van-icon-peer-pay:before{content:"\F096"}.van-icon-pending-payment:before{content:"\F097"}.van-icon-phone-circle-o:before{content:"\F098"}.van-icon-phone-circle:before{content:"\F099"}.van-icon-phone-o:before{content:"\F09A"}.van-icon-phone:before{content:"\F09B"}.van-icon-photo-fail:before{content:"\F0E5"}.van-icon-photo-o:before{content:"\F09C"}.van-icon-photo:before{content:"\F09D"}.van-icon-photograph:before{content:"\F09E"}.van-icon-play-circle-o:before{content:"\F09F"}.van-icon-play-circle:before{content:"\F0A0"}.van-icon-play:before{content:"\F0A1"}.van-icon-plus:before{content:"\F0A2"}.van-icon-point-gift-o:before{content:"\F0A3"}.van-icon-point-gift:before{content:"\F0A4"}.van-icon-points:before{content:"\F0A5"}.van-icon-printer:before{content:"\F0A6"}.van-icon-qr-invalid:before{content:"\F0A7"}.van-icon-qr:before{content:"\F0A8"}.van-icon-question-o:before{content:"\F0A9"}.van-icon-question:before{content:"\F0AA"}.van-icon-records:before{content:"\F0AB"}.van-icon-refund-o:before{content:"\F0AC"}.van-icon-replay:before{content:"\F0AD"}.van-icon-revoke:before{content:"\F0ED"}.van-icon-scan:before{content:"\F0AE"}.van-icon-search:before{content:"\F0AF"}.van-icon-send-gift-o:before{content:"\F0B0"}.van-icon-send-gift:before{content:"\F0B1"}.van-icon-service-o:before{content:"\F0B2"}.van-icon-service:before{content:"\F0B3"}.van-icon-setting-o:before{content:"\F0B4"}.van-icon-setting:before{content:"\F0B5"}.van-icon-share-o:before{content:"\F0E7"}.van-icon-share:before{content:"\F0B6"}.van-icon-shop-collect-o:before{content:"\F0B7"}.van-icon-shop-collect:before{content:"\F0B8"}.van-icon-shop-o:before{content:"\F0B9"}.van-icon-shop:before{content:"\F0BA"}.van-icon-shopping-cart-o:before{content:"\F0BB"}.van-icon-shopping-cart:before{content:"\F0BC"}.van-icon-shrink:before{content:"\F0BD"}.van-icon-sign:before{content:"\F0BE"}.van-icon-smile-comment-o:before{content:"\F0BF"}.van-icon-smile-comment:before{content:"\F0C0"}.van-icon-smile-o:before{content:"\F0C1"}.van-icon-smile:before{content:"\F0C2"}.van-icon-sort:before{content:"\F0EA"}.van-icon-star-o:before{content:"\F0C3"}.van-icon-star:before{content:"\F0C4"}.van-icon-stop-circle-o:before{content:"\F0C5"}.van-icon-stop-circle:before{content:"\F0C6"}.van-icon-stop:before{content:"\F0C7"}.van-icon-success:before{content:"\F0C8"}.van-icon-thumb-circle-o:before{content:"\F0C9"}.van-icon-thumb-circle:before{content:"\F0CA"}.van-icon-todo-list-o:before{content:"\F0CB"}.van-icon-todo-list:before{content:"\F0CC"}.van-icon-tosend:before{content:"\F0CD"}.van-icon-tv-o:before{content:"\F0CE"}.van-icon-umbrella-circle:before{content:"\F0CF"}.van-icon-underway-o:before{content:"\F0D0"}.van-icon-underway:before{content:"\F0D1"}.van-icon-upgrade:before{content:"\F0D2"}.van-icon-user-circle-o:before{content:"\F0D3"}.van-icon-user-o:before{content:"\F0D4"}.van-icon-video-o:before{content:"\F0D5"}.van-icon-video:before{content:"\F0D6"}.van-icon-vip-card-o:before{content:"\F0D7"}.van-icon-vip-card:before{content:"\F0D8"}.van-icon-volume-o:before{content:"\F0D9"}.van-icon-volume:before{content:"\F0DA"}.van-icon-wap-home-o:before{content:"\F0DB"}.van-icon-wap-home:before{content:"\F0DC"}.van-icon-wap-nav:before{content:"\F0DD"}.van-icon-warn-o:before{content:"\F0DE"}.van-icon-warning-o:before{content:"\F0DF"}.van-icon-warning:before{content:"\F0E0"}.van-icon-weapp-nav:before{content:"\F0E1"}.van-icon-wechat:before{content:"\F0E2"}.van-icon-youzan-shield:before{content:"\F0E3"}:host{display:-webkit-inline-flex;display:inline-flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center}.van-icon--image{width:1em;height:1em}.van-icon__image{width:100%;height:100%}.van-icon__info{z-index:1}
\ No newline at end of file
diff --git a/dist/index-anchor/index.js b/dist/index-anchor/index.js
index d2a61ce9..7d81508f 100644
--- a/dist/index-anchor/index.js
+++ b/dist/index-anchor/index.js
@@ -1,11 +1,8 @@
import { getRect } from '../common/utils';
import { VantComponent } from '../common/component';
+import { useParent } from '../common/relation';
VantComponent({
- relation: {
- name: 'index-bar',
- type: 'ancestor',
- current: 'index-anchor',
- },
+ relation: useParent('index-bar'),
props: {
useSlot: Boolean,
index: null,
diff --git a/dist/index-bar/index.js b/dist/index-bar/index.js
index 4d6e4cc6..c092f121 100644
--- a/dist/index-bar/index.js
+++ b/dist/index-bar/index.js
@@ -1,5 +1,6 @@
import { GREEN } from '../common/color';
import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
import { getRect } from '../common/utils';
import { pageScrollMixin } from '../mixins/page-scroll';
const indexList = () => {
@@ -11,17 +12,9 @@ const indexList = () => {
return indexList;
};
VantComponent({
- relation: {
- name: 'index-anchor',
- type: 'descendant',
- current: 'index-bar',
- linked() {
- this.updateData();
- },
- unlinked() {
- this.updateData();
- },
- },
+ relation: useChildren('index-anchor', function () {
+ this.updateData();
+ }),
props: {
sticky: {
type: Boolean,
diff --git a/dist/loading/index.wxml b/dist/loading/index.wxml
index e934288b..7d4a5397 100644
--- a/dist/loading/index.wxml
+++ b/dist/loading/index.wxml
@@ -1,9 +1,10 @@
+
-
+
-
+
diff --git a/dist/loading/index.wxs b/dist/loading/index.wxs
new file mode 100644
index 00000000..02a0b800
--- /dev/null
+++ b/dist/loading/index.wxs
@@ -0,0 +1,22 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function spinnerStyle(data) {
+ return style({
+ color: data.color,
+ width: addUnit(data.size),
+ height: addUnit(data.size),
+ });
+}
+
+function textStyle(data) {
+ return style({
+ 'font-size': addUnit(data.textSize),
+ });
+}
+
+module.exports = {
+ spinnerStyle: spinnerStyle,
+ textStyle: textStyle,
+};
diff --git a/dist/mixins/basic.js b/dist/mixins/basic.js
index 91659a29..9c59dc30 100644
--- a/dist/mixins/basic.js
+++ b/dist/mixins/basic.js
@@ -3,8 +3,8 @@ export const basic = Behavior({
$emit(name, detail, options) {
this.triggerEvent(name, detail, options);
},
- set(data, callback) {
- this.setData(data, callback);
+ set(data) {
+ this.setData(data);
return new Promise((resolve) => wx.nextTick(resolve));
},
},
diff --git a/dist/mixins/page-scroll.js b/dist/mixins/page-scroll.js
index 2536a916..9e4a5f36 100644
--- a/dist/mixins/page-scroll.js
+++ b/dist/mixins/page-scroll.js
@@ -1,7 +1,4 @@
-function getCurrentPage() {
- const pages = getCurrentPages();
- return pages[pages.length - 1] || {};
-}
+import { getCurrentPage } from '../common/utils';
function onPageScroll(event) {
const { vanPageScroller = [] } = getCurrentPage();
vanPageScroller.forEach((scroller) => {
@@ -26,9 +23,11 @@ export const pageScrollMixin = (scroller) =>
page.onPageScroll = onPageScroll;
},
detached() {
+ var _a;
const page = getCurrentPage();
- page.vanPageScroller = (page.vanPageScroller || []).filter(
- (item) => item !== scroller
- );
+ page.vanPageScroller =
+ ((_a = page.vanPageScroller) === null || _a === void 0
+ ? void 0
+ : _a.filter((item) => item !== scroller)) || [];
},
});
diff --git a/dist/notice-bar/index.wxml b/dist/notice-bar/index.wxml
index 9228c6b5..f16854bf 100644
--- a/dist/notice-bar/index.wxml
+++ b/dist/notice-bar/index.wxml
@@ -1,9 +1,10 @@
+
+
+
+
-
+
{{ getOptionText(option, valueKey) }}
+ >{{ computed.optionText(option, valueKey) }}
diff --git a/dist/picker-column/index.wxs b/dist/picker-column/index.wxs
index 3c8fc681..2d5a6117 100644
--- a/dist/picker-column/index.wxs
+++ b/dist/picker-column/index.wxs
@@ -1,8 +1,36 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
function isObj(x) {
var type = typeof x;
return x !== null && (type === 'object' || type === 'function');
}
-module.exports = function (option, valueKey) {
+function optionText(option, valueKey) {
return isObj(option) && option[valueKey] != null ? option[valueKey] : option;
}
+
+function rootStyle(data) {
+ return style({
+ height: addUnit(data.itemHeight * data.visibleItemCount),
+ });
+}
+
+function wrapperStyle(data) {
+ var offset = addUnit(
+ data.offset + (data.itemHeight * (data.visibleItemCount - 1)) / 2
+ );
+
+ return style({
+ transition: 'transform ' + data.duration + 'ms',
+ 'line-height': addUnit(data.itemHeight),
+ transform: 'translate3d(0, ' + offset + ', 0)',
+ });
+}
+
+module.exports = {
+ optionText: optionText,
+ rootStyle: rootStyle,
+ wrapperStyle: wrapperStyle,
+};
diff --git a/dist/picker/index.js b/dist/picker/index.js
index e1b3541f..d0ca3025 100644
--- a/dist/picker/index.js
+++ b/dist/picker/index.js
@@ -20,7 +20,6 @@ VantComponent({
value: [],
observer(columns = []) {
this.simple = columns.length && !columns[0].values;
- this.children = this.selectAllComponents('.van-picker__column');
if (Array.isArray(this.children) && this.children.length) {
this.setColumns().catch(() => {});
}
@@ -28,7 +27,9 @@ VantComponent({
},
}),
beforeCreate() {
- this.children = [];
+ Object.defineProperty(this, 'children', {
+ get: () => this.selectAllComponents('.van-picker__column') || [],
+ });
},
methods: {
noop() {},
diff --git a/dist/picker/index.wxml b/dist/picker/index.wxml
index 519adb54..dbf12492 100644
--- a/dist/picker/index.wxml
+++ b/dist/picker/index.wxml
@@ -1,41 +1,37 @@
-
+
-
+
+
+
-
+
-
-
-
- function isSimple(columns) {
- return columns.length && !columns[0].values;
- }
- module.exports = isSimple;
-
+
+
diff --git a/dist/picker/index.wxs b/dist/picker/index.wxs
new file mode 100644
index 00000000..0abbd10e
--- /dev/null
+++ b/dist/picker/index.wxs
@@ -0,0 +1,42 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+var array = require('../wxs/array.wxs');
+
+function columnsStyle(data) {
+ return style({
+ height: addUnit(data.itemHeight * data.visibleItemCount),
+ });
+}
+
+function maskStyle(data) {
+ return style({
+ 'background-size':
+ '100% ' + addUnit((data.itemHeight * (data.visibleItemCount - 1)) / 2),
+ });
+}
+
+function frameStyle(data) {
+ return style({
+ height: addUnit(data.itemHeight),
+ });
+}
+
+function columns(columns) {
+ if (!array.isArray(columns)) {
+ return [];
+ }
+
+ if (columns.length && !columns[0].values) {
+ return [{ values: columns }];
+ }
+
+ return columns;
+}
+
+module.exports = {
+ columnsStyle: columnsStyle,
+ frameStyle: frameStyle,
+ maskStyle: maskStyle,
+ columns: columns,
+};
diff --git a/dist/popup/index.wxml b/dist/popup/index.wxml
index f3fd7cfa..0be99d46 100644
--- a/dist/popup/index.wxml
+++ b/dist/popup/index.wxml
@@ -12,7 +12,7 @@