mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
build: compile 1.6.5
This commit is contained in:
parent
efa5a4ef14
commit
74f04c51d7
2
dist/button/index.wxml
vendored
2
dist/button/index.wxml
vendored
@ -8,7 +8,7 @@
|
|||||||
hover-class="van-button--active hover-class"
|
hover-class="van-button--active hover-class"
|
||||||
lang="{{ lang }}"
|
lang="{{ lang }}"
|
||||||
form-type="{{ formType }}"
|
form-type="{{ formType }}"
|
||||||
style="{{ computed.rootStyle({ plain, color }) }} {{ customStyle }}"
|
style="{{ computed.rootStyle({ plain, color, customStyle }) }}"
|
||||||
open-type="{{ disabled ? '' : openType }}"
|
open-type="{{ disabled ? '' : openType }}"
|
||||||
business-id="{{ businessId }}"
|
business-id="{{ businessId }}"
|
||||||
session-from="{{ sessionFrom }}"
|
session-from="{{ sessionFrom }}"
|
||||||
|
4
dist/button/index.wxs
vendored
4
dist/button/index.wxs
vendored
@ -3,7 +3,7 @@ var style = require('../wxs/style.wxs');
|
|||||||
|
|
||||||
function rootStyle(data) {
|
function rootStyle(data) {
|
||||||
if (!data.color) {
|
if (!data.color) {
|
||||||
return '';
|
return data.customStyle;
|
||||||
}
|
}
|
||||||
|
|
||||||
var properties = {
|
var properties = {
|
||||||
@ -18,7 +18,7 @@ function rootStyle(data) {
|
|||||||
properties['border-color'] = data.color;
|
properties['border-color'] = data.color;
|
||||||
}
|
}
|
||||||
|
|
||||||
return style(properties);
|
return style([properties, data.customStyle]);
|
||||||
}
|
}
|
||||||
|
|
||||||
function loadingColor(data) {
|
function loadingColor(data) {
|
||||||
|
4
dist/calendar/components/month/index.js
vendored
4
dist/calendar/components/month/index.js
vendored
@ -25,13 +25,13 @@ VantComponent({
|
|||||||
observer: 'setDays',
|
observer: 'setDays',
|
||||||
},
|
},
|
||||||
showMark: Boolean,
|
showMark: Boolean,
|
||||||
rowHeight: [Number, String],
|
rowHeight: null,
|
||||||
formatter: {
|
formatter: {
|
||||||
type: null,
|
type: null,
|
||||||
observer: 'setDays',
|
observer: 'setDays',
|
||||||
},
|
},
|
||||||
currentDate: {
|
currentDate: {
|
||||||
type: [null, Array],
|
type: null,
|
||||||
observer: 'setDays',
|
observer: 'setDays',
|
||||||
},
|
},
|
||||||
allowSameDay: Boolean,
|
allowSameDay: Boolean,
|
||||||
|
6
dist/calendar/index.js
vendored
6
dist/calendar/index.js
vendored
@ -35,7 +35,7 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
rangePrompt: String,
|
rangePrompt: String,
|
||||||
defaultDate: {
|
defaultDate: {
|
||||||
type: [Number, Array],
|
type: null,
|
||||||
observer(val) {
|
observer(val) {
|
||||||
this.setData({ currentDate: val });
|
this.setData({ currentDate: val });
|
||||||
this.scrollIntoView();
|
this.scrollIntoView();
|
||||||
@ -65,7 +65,7 @@ VantComponent({
|
|||||||
value: 'bottom',
|
value: 'bottom',
|
||||||
},
|
},
|
||||||
rowHeight: {
|
rowHeight: {
|
||||||
type: [Number, String],
|
type: null,
|
||||||
value: ROW_HEIGHT,
|
value: ROW_HEIGHT,
|
||||||
},
|
},
|
||||||
round: {
|
round: {
|
||||||
@ -101,7 +101,7 @@ VantComponent({
|
|||||||
value: true,
|
value: true,
|
||||||
},
|
},
|
||||||
maxRange: {
|
maxRange: {
|
||||||
type: [Number, String],
|
type: null,
|
||||||
value: null,
|
value: null,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
3
dist/cell/index.wxml
vendored
3
dist/cell/index.wxml
vendored
@ -1,4 +1,5 @@
|
|||||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
|
|
||||||
<view
|
<view
|
||||||
class="custom-class {{ utils.bem('cell', [size, { center, required, borderless: !border, clickable: isLink || clickable }]) }}"
|
class="custom-class {{ utils.bem('cell', [size, { center, required, borderless: !border, clickable: isLink || clickable }]) }}"
|
||||||
@ -16,7 +17,7 @@
|
|||||||
<slot wx:else name="icon" />
|
<slot wx:else name="icon" />
|
||||||
|
|
||||||
<view
|
<view
|
||||||
style="{{ (titleWidth ? 'max-width:' + titleWidth + ';min-width:' + titleWidth + ';' : '') + titleStyle }}"
|
style="{{ computed.titleStyle({ titleWidth, titleStyle }) }}"
|
||||||
class="van-cell__title title-class"
|
class="van-cell__title title-class"
|
||||||
>
|
>
|
||||||
<block wx:if="{{ title }}">{{ title }}</block>
|
<block wx:if="{{ title }}">{{ title }}</block>
|
||||||
|
17
dist/cell/index.wxs
vendored
Normal file
17
dist/cell/index.wxs
vendored
Normal file
@ -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,
|
||||||
|
};
|
14
dist/checkbox-group/index.js
vendored
14
dist/checkbox-group/index.js
vendored
@ -1,14 +1,10 @@
|
|||||||
|
import { useChildren } from '../common/relation';
|
||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
VantComponent({
|
VantComponent({
|
||||||
field: true,
|
field: true,
|
||||||
relation: {
|
relation: useChildren('checkbox', function (target) {
|
||||||
name: 'checkbox',
|
this.updateChild(target);
|
||||||
type: 'descendant',
|
}),
|
||||||
current: 'checkbox-group',
|
|
||||||
linked(target) {
|
|
||||||
this.updateChild(target);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
props: {
|
props: {
|
||||||
max: Number,
|
max: Number,
|
||||||
value: {
|
value: {
|
||||||
@ -22,7 +18,7 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
updateChildren() {
|
updateChildren() {
|
||||||
(this.children || []).forEach((child) => this.updateChild(child));
|
this.children.forEach((child) => this.updateChild(child));
|
||||||
},
|
},
|
||||||
updateChild(child) {
|
updateChild(child) {
|
||||||
const { value, disabled } = this.data;
|
const { value, disabled } = this.data;
|
||||||
|
7
dist/checkbox/index.js
vendored
7
dist/checkbox/index.js
vendored
@ -1,3 +1,4 @@
|
|||||||
|
import { useParent } from '../common/relation';
|
||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
function emit(target, value) {
|
function emit(target, value) {
|
||||||
target.$emit('input', value);
|
target.$emit('input', value);
|
||||||
@ -5,11 +6,7 @@ function emit(target, value) {
|
|||||||
}
|
}
|
||||||
VantComponent({
|
VantComponent({
|
||||||
field: true,
|
field: true,
|
||||||
relation: {
|
relation: useParent('checkbox-group'),
|
||||||
name: 'checkbox-group',
|
|
||||||
type: 'ancestor',
|
|
||||||
current: 'checkbox',
|
|
||||||
},
|
|
||||||
classes: ['icon-class', 'label-class'],
|
classes: ['icon-class', 'label-class'],
|
||||||
props: {
|
props: {
|
||||||
value: Boolean,
|
value: Boolean,
|
||||||
|
2
dist/circle/index.js
vendored
2
dist/circle/index.js
vendored
@ -38,7 +38,7 @@ VantComponent({
|
|||||||
value: WHITE,
|
value: WHITE,
|
||||||
},
|
},
|
||||||
color: {
|
color: {
|
||||||
type: [String, Object],
|
type: null,
|
||||||
value: BLUE,
|
value: BLUE,
|
||||||
observer() {
|
observer() {
|
||||||
this.setHoverColor().then(() => {
|
this.setHoverColor().then(() => {
|
||||||
|
21
dist/col/index.js
vendored
21
dist/col/index.js
vendored
@ -1,26 +1,9 @@
|
|||||||
|
import { useParent } from '../common/relation';
|
||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
VantComponent({
|
VantComponent({
|
||||||
relation: {
|
relation: useParent('row'),
|
||||||
name: 'row',
|
|
||||||
type: 'ancestor',
|
|
||||||
current: 'col',
|
|
||||||
},
|
|
||||||
props: {
|
props: {
|
||||||
span: Number,
|
span: Number,
|
||||||
offset: 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 });
|
|
||||||
}
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
3
dist/col/index.wxml
vendored
3
dist/col/index.wxml
vendored
@ -1,8 +1,9 @@
|
|||||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
|
|
||||||
<view
|
<view
|
||||||
class="custom-class {{ utils.bem('col', [span]) }} {{ offset ? 'van-col--offset-' + offset : '' }}"
|
class="custom-class {{ utils.bem('col', [span]) }} {{ offset ? 'van-col--offset-' + offset : '' }}"
|
||||||
style="{{ viewStyle }}"
|
style="{{ computed.rootStyle({ gutter }) }}"
|
||||||
>
|
>
|
||||||
<slot />
|
<slot />
|
||||||
</view>
|
</view>
|
||||||
|
18
dist/col/index.wxs
vendored
Normal file
18
dist/col/index.wxs
vendored
Normal file
@ -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,
|
||||||
|
};
|
7
dist/collapse-item/index.js
vendored
7
dist/collapse-item/index.js
vendored
@ -1,12 +1,9 @@
|
|||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
|
import { useParent } from '../common/relation';
|
||||||
import { setContentAnimate } from './animate';
|
import { setContentAnimate } from './animate';
|
||||||
VantComponent({
|
VantComponent({
|
||||||
classes: ['title-class', 'content-class'],
|
classes: ['title-class', 'content-class'],
|
||||||
relation: {
|
relation: useParent('collapse'),
|
||||||
name: 'collapse',
|
|
||||||
type: 'ancestor',
|
|
||||||
current: 'collapse-item',
|
|
||||||
},
|
|
||||||
props: {
|
props: {
|
||||||
name: null,
|
name: null,
|
||||||
title: null,
|
title: null,
|
||||||
|
7
dist/collapse/index.js
vendored
7
dist/collapse/index.js
vendored
@ -1,10 +1,7 @@
|
|||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
|
import { useChildren } from '../common/relation';
|
||||||
VantComponent({
|
VantComponent({
|
||||||
relation: {
|
relation: useChildren('collapse-item'),
|
||||||
name: 'collapse-item',
|
|
||||||
type: 'descendant',
|
|
||||||
current: 'collapse',
|
|
||||||
},
|
|
||||||
props: {
|
props: {
|
||||||
value: {
|
value: {
|
||||||
type: null,
|
type: null,
|
||||||
|
9
dist/common/component.d.ts
vendored
9
dist/common/component.d.ts
vendored
@ -1,3 +1,8 @@
|
|||||||
import { VantComponentOptions, CombinedComponentInstance } from '../definitions/index';
|
/// <reference types="miniprogram-api-typings" />
|
||||||
declare function VantComponent<Data, Props, Methods>(vantOptions?: VantComponentOptions<Data, Props, Methods, CombinedComponentInstance<Data, Props, Methods>>): 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<Data, Props, Methods>): void;
|
||||||
export { VantComponent };
|
export { VantComponent };
|
||||||
|
75
dist/common/component.js
vendored
75
dist/common/component.js
vendored
@ -1,28 +1,4 @@
|
|||||||
import { basic } from '../mixins/basic';
|
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) {
|
function mapKeys(source, target, map) {
|
||||||
Object.keys(map).forEach((key) => {
|
Object.keys(map).forEach((key) => {
|
||||||
if (source[key]) {
|
if (source[key]) {
|
||||||
@ -30,37 +6,7 @@ function mapKeys(source, target, map) {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
function makeRelation(options, vantOptions, relation) {
|
function VantComponent(vantOptions) {
|
||||||
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 = {}) {
|
|
||||||
const options = {};
|
const options = {};
|
||||||
mapKeys(vantOptions, options, {
|
mapKeys(vantOptions, options, {
|
||||||
data: 'data',
|
data: 'data',
|
||||||
@ -70,32 +16,25 @@ function VantComponent(vantOptions = {}) {
|
|||||||
beforeCreate: 'created',
|
beforeCreate: 'created',
|
||||||
created: 'attached',
|
created: 'attached',
|
||||||
mounted: 'ready',
|
mounted: 'ready',
|
||||||
relations: 'relations',
|
|
||||||
destroyed: 'detached',
|
destroyed: 'detached',
|
||||||
classes: 'externalClasses',
|
classes: 'externalClasses',
|
||||||
});
|
});
|
||||||
const { relation } = vantOptions;
|
|
||||||
if (relation) {
|
|
||||||
makeRelation(options, vantOptions, relation);
|
|
||||||
}
|
|
||||||
// add default externalClasses
|
// add default externalClasses
|
||||||
options.externalClasses = options.externalClasses || [];
|
options.externalClasses = options.externalClasses || [];
|
||||||
options.externalClasses.push('custom-class');
|
options.externalClasses.push('custom-class');
|
||||||
// add default behaviors
|
// add default behaviors
|
||||||
options.behaviors = options.behaviors || [];
|
options.behaviors = options.behaviors || [];
|
||||||
options.behaviors.push(basic);
|
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
|
// map field to form-field behavior
|
||||||
if (vantOptions.field) {
|
if (vantOptions.field) {
|
||||||
options.behaviors.push('wx://form-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
|
// add default options
|
||||||
options.options = {
|
options.options = {
|
||||||
multipleSlots: true,
|
multipleSlots: true,
|
||||||
|
21
dist/common/relation.d.ts
vendored
Normal file
21
dist/common/relation.d.ts
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
/// <reference types="miniprogram-api-typings" />
|
||||||
|
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 {};
|
64
dist/common/relation.js
vendored
Normal file
64
dist/common/relation.js
vendored
Normal file
@ -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) || [],
|
||||||
|
});
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
};
|
||||||
|
}
|
6
dist/common/utils.d.ts
vendored
6
dist/common/utils.d.ts
vendored
@ -22,3 +22,9 @@ export declare function groupSetData(
|
|||||||
export declare function toPromise(
|
export declare function toPromise(
|
||||||
promiseLike: Promise<unknown> | unknown
|
promiseLike: Promise<unknown> | unknown
|
||||||
): Promise<unknown>;
|
): Promise<unknown>;
|
||||||
|
export declare function getCurrentPage<T>(): T &
|
||||||
|
WechatMiniprogram.OptionalInterface<WechatMiniprogram.Page.ILifetime> &
|
||||||
|
WechatMiniprogram.Page.InstanceProperties &
|
||||||
|
WechatMiniprogram.Page.InstanceMethods<Record<string, any>> &
|
||||||
|
WechatMiniprogram.Page.Data<Record<string, any>> &
|
||||||
|
Record<string, any>;
|
||||||
|
4
dist/common/utils.js
vendored
4
dist/common/utils.js
vendored
@ -83,3 +83,7 @@ export function toPromise(promiseLike) {
|
|||||||
}
|
}
|
||||||
return Promise.resolve(promiseLike);
|
return Promise.resolve(promiseLike);
|
||||||
}
|
}
|
||||||
|
export function getCurrentPage() {
|
||||||
|
const pages = getCurrentPages();
|
||||||
|
return pages[pages.length - 1];
|
||||||
|
}
|
||||||
|
60
dist/definitions/index.d.ts
vendored
60
dist/definitions/index.d.ts
vendored
@ -1,31 +1,43 @@
|
|||||||
/// <reference types="miniprogram-api-typings" />
|
/// <reference types="miniprogram-api-typings" />
|
||||||
import { Weapp } from './weapp';
|
interface VantComponentInstance {
|
||||||
declare type RecordToAny<T> = {
|
parent: WechatMiniprogram.Component.TrivialInstance;
|
||||||
[K in keyof T]: any;
|
children: WechatMiniprogram.Component.TrivialInstance[];
|
||||||
};
|
index: number;
|
||||||
export declare type CombinedComponentInstance<Data, Props, Methods> = Methods &
|
$emit: (
|
||||||
WechatMiniprogram.Component.TrivialInstance &
|
name: string,
|
||||||
Weapp.FormField & {
|
detail?: unknown,
|
||||||
data: Data & RecordToAny<Props>;
|
options?: WechatMiniprogram.Component.TriggerEventOption
|
||||||
};
|
) => void;
|
||||||
export interface VantComponentOptions<Data, Props, Methods, Instance> {
|
}
|
||||||
|
export declare type VantComponentOptions<
|
||||||
|
Data extends WechatMiniprogram.Component.DataOption,
|
||||||
|
Props extends WechatMiniprogram.Component.PropertyOption,
|
||||||
|
Methods extends WechatMiniprogram.Component.MethodOption
|
||||||
|
> = {
|
||||||
data?: Data;
|
data?: Data;
|
||||||
field?: boolean;
|
field?: boolean;
|
||||||
classes?: string[];
|
classes?: string[];
|
||||||
mixins?: string[];
|
mixins?: string[];
|
||||||
props?: Props & Weapp.PropertyOption;
|
props?: Props;
|
||||||
relation?: Weapp.RelationOption<Instance> & {
|
relation?: {
|
||||||
type: 'ancestor' | 'descendant';
|
relations: Record<string, WechatMiniprogram.Component.RelationOption>;
|
||||||
name: string;
|
mixin: string;
|
||||||
current: string;
|
|
||||||
};
|
};
|
||||||
relations?: {
|
methods?: Methods;
|
||||||
[componentName: string]: Weapp.RelationOption<Instance>;
|
beforeCreate?: () => void;
|
||||||
};
|
created?: () => void;
|
||||||
methods?: Methods & Weapp.MethodOption<Instance>;
|
mounted?: () => void;
|
||||||
beforeCreate?: (this: Instance) => void;
|
destroyed?: () => void;
|
||||||
created?: (this: Instance) => void;
|
} & ThisType<
|
||||||
mounted?: (this: Instance) => void;
|
VantComponentInstance &
|
||||||
destroyed?: (this: Instance) => void;
|
WechatMiniprogram.Component.Instance<
|
||||||
}
|
Data & {
|
||||||
|
name: string;
|
||||||
|
value: any;
|
||||||
|
},
|
||||||
|
Props,
|
||||||
|
Methods
|
||||||
|
> &
|
||||||
|
Record<string, any>
|
||||||
|
>;
|
||||||
export {};
|
export {};
|
||||||
|
77
dist/definitions/weapp.d.ts
vendored
77
dist/definitions/weapp.d.ts
vendored
@ -1,77 +0,0 @@
|
|||||||
/// <reference types="miniprogram-api-typings" />
|
|
||||||
export declare namespace Weapp {
|
|
||||||
export interface FormField {
|
|
||||||
data: {
|
|
||||||
name: string;
|
|
||||||
value: any;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* relation定义,miniprogram-api-typings缺少this定义
|
|
||||||
*/
|
|
||||||
export interface RelationOption<Instance> {
|
|
||||||
/** 目标组件的相对关系 */
|
|
||||||
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<Instance, T> = (
|
|
||||||
this: Instance,
|
|
||||||
newVal: T,
|
|
||||||
oldVal: T,
|
|
||||||
changedPath: Array<string | number>
|
|
||||||
) => void;
|
|
||||||
/**
|
|
||||||
* methods定义,miniprogram-api-typings缺少this定义
|
|
||||||
*/
|
|
||||||
export interface MethodOption<Instance> {
|
|
||||||
[name: string]: (this: Instance, ...args: any[]) => any;
|
|
||||||
}
|
|
||||||
export interface ComputedOption<Instance> {
|
|
||||||
[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<WechatMiniprogram.Component.TrivialInstance, any>;
|
|
||||||
/** 属性的类型(可以指定多个) */
|
|
||||||
optionalTypes?: PropertyType[];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
export {};
|
|
||||||
}
|
|
1
dist/definitions/weapp.js
vendored
1
dist/definitions/weapp.js
vendored
@ -1 +0,0 @@
|
|||||||
export {};
|
|
3
dist/dialog/index.js
vendored
3
dist/dialog/index.js
vendored
@ -68,6 +68,7 @@ VantComponent({
|
|||||||
confirm: false,
|
confirm: false,
|
||||||
cancel: false,
|
cancel: false,
|
||||||
},
|
},
|
||||||
|
callback: () => {},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onConfirm() {
|
onConfirm() {
|
||||||
@ -77,7 +78,7 @@ VantComponent({
|
|||||||
this.handleAction('cancel');
|
this.handleAction('cancel');
|
||||||
},
|
},
|
||||||
onClickOverlay() {
|
onClickOverlay() {
|
||||||
this.onClose('overlay');
|
this.close('overlay');
|
||||||
},
|
},
|
||||||
close(action) {
|
close(action) {
|
||||||
this.setData({ show: false });
|
this.setData({ show: false });
|
||||||
|
35
dist/divider/index.js
vendored
35
dist/divider/index.js
vendored
@ -1,33 +1,12 @@
|
|||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
VantComponent({
|
VantComponent({
|
||||||
props: {
|
props: {
|
||||||
dashed: {
|
dashed: Boolean,
|
||||||
type: Boolean,
|
hairline: Boolean,
|
||||||
value: false,
|
contentPosition: String,
|
||||||
},
|
fontSize: String,
|
||||||
hairline: {
|
borderColor: String,
|
||||||
type: Boolean,
|
textColor: String,
|
||||||
value: false,
|
customStyle: String,
|
||||||
},
|
|
||||||
contentPosition: {
|
|
||||||
type: String,
|
|
||||||
value: '',
|
|
||||||
},
|
|
||||||
fontSize: {
|
|
||||||
type: Number,
|
|
||||||
value: '',
|
|
||||||
},
|
|
||||||
borderColor: {
|
|
||||||
type: String,
|
|
||||||
value: '',
|
|
||||||
},
|
|
||||||
textColor: {
|
|
||||||
type: String,
|
|
||||||
value: '',
|
|
||||||
},
|
|
||||||
customStyle: {
|
|
||||||
type: String,
|
|
||||||
value: '',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
5
dist/divider/index.wxml
vendored
5
dist/divider/index.wxml
vendored
@ -1,8 +1,9 @@
|
|||||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
|
|
||||||
<view
|
<view
|
||||||
class="custom-class {{ utils.bem('divider', [{dashed, hairline}, contentPosition]) }}"
|
class="custom-class {{ utils.bem('divider', [{ dashed, hairline }, contentPosition]) }}"
|
||||||
style="{{ borderColor ? 'border-color: ' + borderColor + ';' : '' }}{{ textColor ? 'color: ' + textColor + ';' : '' }} {{ fontSize ? 'font-size: ' + fontSize + 'px;' : '' }} {{ customStyle }}"
|
style="{{ computed.rootStyle({ borderColor, textColor, fontSize, customStyle }) }}"
|
||||||
>
|
>
|
||||||
<slot />
|
<slot />
|
||||||
</view>
|
</view>
|
||||||
|
18
dist/divider/index.wxs
vendored
Normal file
18
dist/divider/index.wxs
vendored
Normal file
@ -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,
|
||||||
|
};
|
28
dist/dropdown-item/index.js
vendored
28
dist/dropdown-item/index.js
vendored
@ -1,14 +1,10 @@
|
|||||||
|
import { useParent } from '../common/relation';
|
||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
VantComponent({
|
VantComponent({
|
||||||
field: true,
|
field: true,
|
||||||
relation: {
|
relation: useParent('dropdown-menu', function () {
|
||||||
name: 'dropdown-menu',
|
this.updateDataFromParent();
|
||||||
type: 'ancestor',
|
}),
|
||||||
current: 'dropdown-item',
|
|
||||||
linked() {
|
|
||||||
this.updateDataFromParent();
|
|
||||||
},
|
|
||||||
},
|
|
||||||
props: {
|
props: {
|
||||||
value: {
|
value: {
|
||||||
type: null,
|
type: null,
|
||||||
@ -39,7 +35,10 @@ VantComponent({
|
|||||||
methods: {
|
methods: {
|
||||||
rerender() {
|
rerender() {
|
||||||
wx.nextTick(() => {
|
wx.nextTick(() => {
|
||||||
this.parent && this.parent.updateItemListData();
|
var _a;
|
||||||
|
(_a = this.parent) === null || _a === void 0
|
||||||
|
? void 0
|
||||||
|
: _a.updateItemListData();
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
updateDataFromParent() {
|
updateDataFromParent() {
|
||||||
@ -85,6 +84,7 @@ VantComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
toggle(show, options = {}) {
|
toggle(show, options = {}) {
|
||||||
|
var _a;
|
||||||
const { showPopup } = this.data;
|
const { showPopup } = this.data;
|
||||||
if (typeof show !== 'boolean') {
|
if (typeof show !== 'boolean') {
|
||||||
show = !showPopup;
|
show = !showPopup;
|
||||||
@ -97,10 +97,12 @@ VantComponent({
|
|||||||
showPopup: show,
|
showPopup: show,
|
||||||
});
|
});
|
||||||
if (show) {
|
if (show) {
|
||||||
this.parent.getChildWrapperStyle().then((wrapperStyle) => {
|
(_a = this.parent) === null || _a === void 0
|
||||||
this.setData({ wrapperStyle, showWrapper: true });
|
? void 0
|
||||||
this.rerender();
|
: _a.getChildWrapperStyle().then((wrapperStyle) => {
|
||||||
});
|
this.setData({ wrapperStyle, showWrapper: true });
|
||||||
|
this.rerender();
|
||||||
|
});
|
||||||
} else {
|
} else {
|
||||||
this.rerender();
|
this.rerender();
|
||||||
}
|
}
|
||||||
|
15
dist/dropdown-menu/index.js
vendored
15
dist/dropdown-menu/index.js
vendored
@ -1,19 +1,12 @@
|
|||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
|
import { useChildren } from '../common/relation';
|
||||||
import { addUnit, getRect, getSystemInfoSync } from '../common/utils';
|
import { addUnit, getRect, getSystemInfoSync } from '../common/utils';
|
||||||
let ARRAY = [];
|
let ARRAY = [];
|
||||||
VantComponent({
|
VantComponent({
|
||||||
field: true,
|
field: true,
|
||||||
relation: {
|
relation: useChildren('dropdown-item', function () {
|
||||||
name: 'dropdown-item',
|
this.updateItemListData();
|
||||||
type: 'descendant',
|
}),
|
||||||
current: 'dropdown-menu',
|
|
||||||
linked() {
|
|
||||||
this.updateItemListData();
|
|
||||||
},
|
|
||||||
unlinked() {
|
|
||||||
this.updateItemListData();
|
|
||||||
},
|
|
||||||
},
|
|
||||||
props: {
|
props: {
|
||||||
activeColor: {
|
activeColor: {
|
||||||
type: String,
|
type: String,
|
||||||
|
10
dist/empty/index.js
vendored
10
dist/empty/index.js
vendored
@ -1,5 +1,4 @@
|
|||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
const PRESETS = ['error', 'search', 'default', 'network'];
|
|
||||||
VantComponent({
|
VantComponent({
|
||||||
props: {
|
props: {
|
||||||
description: String,
|
description: String,
|
||||||
@ -8,13 +7,4 @@ VantComponent({
|
|||||||
value: 'default',
|
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 });
|
|
||||||
}
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
3
dist/empty/index.wxml
vendored
3
dist/empty/index.wxml
vendored
@ -1,11 +1,12 @@
|
|||||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
|
|
||||||
<view class="custom-class van-empty">
|
<view class="custom-class van-empty">
|
||||||
<view class="van-empty__image">
|
<view class="van-empty__image">
|
||||||
<slot name="image"></slot>
|
<slot name="image"></slot>
|
||||||
</view>
|
</view>
|
||||||
<view class="van-empty__image">
|
<view class="van-empty__image">
|
||||||
<image wx:if="{{ imageUrl }}" class="van-empty__image__img" src="{{ imageUrl }}" />
|
<image wx:if="{{ image }}" class="van-empty__image__img" src="{{ computed.imageUrl(image) }}" />
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="van-empty__description">
|
<view class="van-empty__description">
|
||||||
|
14
dist/empty/index.wxs
vendored
Normal file
14
dist/empty/index.wxs
vendored
Normal file
@ -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,
|
||||||
|
};
|
10
dist/field/index.js
vendored
10
dist/field/index.js
vendored
@ -1,3 +1,4 @@
|
|||||||
|
import { nextTick } from '../common/utils';
|
||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
import { commonProps, inputProps, textareaProps } from './props';
|
import { commonProps, inputProps, textareaProps } from './props';
|
||||||
VantComponent({
|
VantComponent({
|
||||||
@ -17,7 +18,7 @@ VantComponent({
|
|||||||
isLink: Boolean,
|
isLink: Boolean,
|
||||||
leftIcon: String,
|
leftIcon: String,
|
||||||
rightIcon: String,
|
rightIcon: String,
|
||||||
autosize: [Boolean, Object],
|
autosize: null,
|
||||||
required: Boolean,
|
required: Boolean,
|
||||||
iconClass: String,
|
iconClass: String,
|
||||||
clickable: Boolean,
|
clickable: Boolean,
|
||||||
@ -74,11 +75,14 @@ VantComponent({
|
|||||||
onClickIcon() {
|
onClickIcon() {
|
||||||
this.$emit('click-icon');
|
this.$emit('click-icon');
|
||||||
},
|
},
|
||||||
|
onClickInput(event) {
|
||||||
|
this.$emit('click-input', event.detail);
|
||||||
|
},
|
||||||
onClear() {
|
onClear() {
|
||||||
this.setData({ innerValue: '' });
|
this.setData({ innerValue: '' });
|
||||||
this.value = '';
|
this.value = '';
|
||||||
this.setShowClear();
|
this.setShowClear();
|
||||||
wx.nextTick(() => {
|
nextTick(() => {
|
||||||
this.emitChange();
|
this.emitChange();
|
||||||
this.$emit('clear', '');
|
this.$emit('clear', '');
|
||||||
});
|
});
|
||||||
@ -105,7 +109,7 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
emitChange() {
|
emitChange() {
|
||||||
this.setData({ value: this.value });
|
this.setData({ value: this.value });
|
||||||
wx.nextTick(() => {
|
nextTick(() => {
|
||||||
this.$emit('input', this.value);
|
this.$emit('input', this.value);
|
||||||
this.$emit('change', this.value);
|
this.$emit('change', this.value);
|
||||||
});
|
});
|
||||||
|
63
dist/field/index.wxml
vendored
63
dist/field/index.wxml
vendored
@ -21,63 +21,12 @@
|
|||||||
</view>
|
</view>
|
||||||
<slot wx:else name="label" slot="title" />
|
<slot wx:else name="label" slot="title" />
|
||||||
<view class="{{ utils.bem('field__body', [type]) }}">
|
<view class="{{ utils.bem('field__body', [type]) }}">
|
||||||
<textarea
|
<view class="{{ utils.bem('field__control', [inputAlign, 'custom']) }}" bindtap="onClickInput">
|
||||||
wx:if="{{ type === 'textarea' }}"
|
<slot name="input" />
|
||||||
class="input-class {{ utils.bem('field__input', [inputAlign, type, { disabled, error }]) }}"
|
</view>
|
||||||
fixed="{{ fixed }}"
|
<include wx:if="{{ type === 'textarea' }}" src="textarea.wxml" />
|
||||||
focus="{{ focus }}"
|
<include wx:else src="input.wxml" />
|
||||||
cursor="{{ cursor }}"
|
|
||||||
value="{{ innerValue }}"
|
|
||||||
auto-focus="{{ autoFocus }}"
|
|
||||||
disabled="{{ disabled || readonly }}"
|
|
||||||
maxlength="{{ maxlength }}"
|
|
||||||
placeholder="{{ placeholder }}"
|
|
||||||
placeholder-style="{{ placeholderStyle }}"
|
|
||||||
placeholder-class="{{ utils.bem('field__placeholder', { error, disabled }) }}"
|
|
||||||
auto-height="{{ !!autosize }}"
|
|
||||||
style="{{ computed.inputStyle(autosize) }}"
|
|
||||||
cursor-spacing="{{ cursorSpacing }}"
|
|
||||||
adjust-position="{{ adjustPosition }}"
|
|
||||||
show-confirm-bar="{{ showConfirmBar }}"
|
|
||||||
hold-keyboard="{{ holdKeyboard }}"
|
|
||||||
selection-end="{{ selectionEnd }}"
|
|
||||||
selection-start="{{ selectionStart }}"
|
|
||||||
disable-default-padding="{{ disableDefaultPadding }}"
|
|
||||||
bindinput="onInput"
|
|
||||||
bindblur="onBlur"
|
|
||||||
bindfocus="onFocus"
|
|
||||||
bindconfirm="onConfirm"
|
|
||||||
bindlinechange="onLineChange"
|
|
||||||
bindkeyboardheightchange="onKeyboardHeightChange"
|
|
||||||
>
|
|
||||||
</textarea>
|
|
||||||
<input
|
|
||||||
wx:else
|
|
||||||
class="input-class {{ utils.bem('field__input', [inputAlign, { disabled, error }]) }}"
|
|
||||||
type="{{ type }}"
|
|
||||||
focus="{{ focus }}"
|
|
||||||
cursor="{{ cursor }}"
|
|
||||||
value="{{ innerValue }}"
|
|
||||||
auto-focus="{{ autoFocus }}"
|
|
||||||
disabled="{{ disabled || readonly }}"
|
|
||||||
maxlength="{{ maxlength }}"
|
|
||||||
placeholder="{{ placeholder }}"
|
|
||||||
placeholder-style="{{ placeholderStyle }}"
|
|
||||||
placeholder-class="{{ utils.bem('field__placeholder', { error }) }}"
|
|
||||||
confirm-type="{{ confirmType }}"
|
|
||||||
confirm-hold="{{ confirmHold }}"
|
|
||||||
hold-keyboard="{{ holdKeyboard }}"
|
|
||||||
cursor-spacing="{{ cursorSpacing }}"
|
|
||||||
adjust-position="{{ adjustPosition }}"
|
|
||||||
selection-end="{{ selectionEnd }}"
|
|
||||||
selection-start="{{ selectionStart }}"
|
|
||||||
password="{{ password || type === 'password' }}"
|
|
||||||
bindinput="onInput"
|
|
||||||
bindblur="onBlur"
|
|
||||||
bindfocus="onFocus"
|
|
||||||
bindconfirm="onConfirm"
|
|
||||||
bindkeyboardheightchange="onKeyboardHeightChange"
|
|
||||||
/>
|
|
||||||
<van-icon
|
<van-icon
|
||||||
wx:if="{{ showClear }}"
|
wx:if="{{ showClear }}"
|
||||||
name="clear"
|
name="clear"
|
||||||
|
17
dist/field/index.wxs
vendored
17
dist/field/index.wxs
vendored
@ -1,21 +1,18 @@
|
|||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
var utils = require('../wxs/utils.wxs');
|
var style = require('../wxs/style.wxs');
|
||||||
|
var addUnit = require('../wxs/add-unit.wxs');
|
||||||
|
|
||||||
function inputStyle(autosize) {
|
function inputStyle(autosize) {
|
||||||
if (autosize && autosize.constructor === 'Object') {
|
if (autosize && autosize.constructor === 'Object') {
|
||||||
var style = '';
|
return style({
|
||||||
if (autosize.minHeight) {
|
'min-height': addUnit(autosize.minHeight),
|
||||||
style += 'min-height:' + utils.addUnit(autosize.minHeight) + ';';
|
'max-height': addUnit(autosize.maxHeight),
|
||||||
}
|
});
|
||||||
if (autosize.maxHeight) {
|
|
||||||
style += 'max-height:' + utils.addUnit(autosize.maxHeight) + ';';
|
|
||||||
}
|
|
||||||
return style;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
inputStyle: inputStyle
|
inputStyle: inputStyle,
|
||||||
};
|
};
|
||||||
|
2
dist/field/index.wxss
vendored
2
dist/field/index.wxss
vendored
@ -1 +1 @@
|
|||||||
@import '../common/index.wxss';.van-field{--cell-icon-size:16px;--cell-icon-size:var(--field-icon-size,16px)}.van-field__label{color:#646566;color:var(--field-label-color,#646566)}.van-field__label--disabled{color:#c8c9cc;color:var(--field-disabled-text-color,#c8c9cc)}.van-field__body{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center}.van-field__body--textarea{padding:3.6px 0;line-height:1.2em}.van-field__body--textarea,.van-field__input{box-sizing:border-box;min-height:24px;min-height:var(--cell-line-height,24px)}.van-field__input{position:relative;display:block;width:100%;margin:0;padding:0;line-height:inherit;text-align:left;background-color:initial;border:0;resize:none;color:#323233;color:var(--field-input-text-color,#323233);height:24px;height:var(--cell-line-height,24px)}.van-field__input--textarea{height:18px;height:var(--field-text-area-min-height,18px);min-height:18px;min-height:var(--field-text-area-min-height,18px)}.van-field__input--error{color:#ee0a24;color:var(--field-input-error-text-color,#ee0a24)}.van-field__input--disabled{background-color:initial;opacity:1;color:#c8c9cc;color:var(--field-input-disabled-text-color,#c8c9cc)}.van-field__input--center{text-align:center}.van-field__input--right{text-align:right}.van-field__placeholder{position:absolute;top:0;right:0;left:0;pointer-events:none;color:#c8c9cc;color:var(--field-placeholder-text-color,#c8c9cc)}.van-field__placeholder--error{color:#ee0a24;color:var(--field-error-message-color,#ee0a24)}.van-field__icon-root{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;min-height:24px;min-height:var(--cell-line-height,24px)}.van-field__clear-root,.van-field__icon-container{line-height:inherit;vertical-align:middle;padding:0 8px;padding:0 var(--padding-xs,8px);margin-right:-8px;margin-right:-var(--padding-xs,8px)}.van-field__button,.van-field__clear-root,.van-field__icon-container{-webkit-flex-shrink:0;flex-shrink:0}.van-field__clear-root{font-size:16px;font-size:var(--field-clear-icon-size,16px);color:#c8c9cc;color:var(--field-clear-icon-color,#c8c9cc)}.van-field__icon-container{font-size:16px;font-size:var(--field-icon-size,16px);color:#969799;color:var(--field-icon-container-color,#969799)}.van-field__icon-container:empty{display:none}.van-field__button{padding-left:8px;padding-left:var(--padding-xs,8px)}.van-field__button:empty{display:none}.van-field__error-message{text-align:left;font-size:12px;font-size:var(--field-error-message-text-font-size,12px);color:#ee0a24;color:var(--field-error-message-color,#ee0a24)}.van-field__error-message--center{text-align:center}.van-field__error-message--right{text-align:right}.van-field__word-limit{text-align:right;margin-top:4px;margin-top:var(--padding-base,4px);color:#646566;color:var(--field-word-limit-color,#646566);font-size:12px;font-size:var(--field-word-limit-font-size,12px);line-height:16px;line-height:var(--field-word-limit-line-height,16px)}.van-field__word-num{display:inline}.van-field__word-num--full{color:#ee0a24;color:var(--field-word-num-full-color,#ee0a24)}
|
@import '../common/index.wxss';.van-field{--cell-icon-size:16px;--cell-icon-size:var(--field-icon-size,16px)}.van-field__label{color:#646566;color:var(--field-label-color,#646566)}.van-field__label--disabled{color:#c8c9cc;color:var(--field-disabled-text-color,#c8c9cc)}.van-field__body{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center}.van-field__body--textarea{box-sizing:border-box;padding:3.6px 0;line-height:1.2em;min-height:24px;min-height:var(--cell-line-height,24px)}.van-field__control:empty+.van-field__control{display:block}.van-field__control{position:relative;display:none;box-sizing:border-box;width:100%;margin:0;padding:0;line-height:inherit;text-align:left;background-color:initial;border:0;resize:none;color:#323233;color:var(--field-input-text-color,#323233);height:24px;height:var(--cell-line-height,24px);min-height:24px;min-height:var(--cell-line-height,24px)}.van-field__control:empty{display:none}.van-field__control--textarea{height:18px;height:var(--field-text-area-min-height,18px);min-height:18px;min-height:var(--field-text-area-min-height,18px)}.van-field__control--error{color:#ee0a24;color:var(--field-input-error-text-color,#ee0a24)}.van-field__control--disabled{background-color:initial;opacity:1;color:#c8c9cc;color:var(--field-input-disabled-text-color,#c8c9cc)}.van-field__control--center{text-align:center}.van-field__control--right{text-align:right}.van-field__control--custom{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;min-height:24px;min-height:var(--cell-line-height,24px)}.van-field__placeholder{position:absolute;top:0;right:0;left:0;pointer-events:none;color:#c8c9cc;color:var(--field-placeholder-text-color,#c8c9cc)}.van-field__placeholder--error{color:#ee0a24;color:var(--field-error-message-color,#ee0a24)}.van-field__icon-root{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;min-height:24px;min-height:var(--cell-line-height,24px)}.van-field__clear-root,.van-field__icon-container{line-height:inherit;vertical-align:middle;padding:0 8px;padding:0 var(--padding-xs,8px);margin-right:-8px;margin-right:-var(--padding-xs,8px)}.van-field__button,.van-field__clear-root,.van-field__icon-container{-webkit-flex-shrink:0;flex-shrink:0}.van-field__clear-root{font-size:16px;font-size:var(--field-clear-icon-size,16px);color:#c8c9cc;color:var(--field-clear-icon-color,#c8c9cc)}.van-field__icon-container{font-size:16px;font-size:var(--field-icon-size,16px);color:#969799;color:var(--field-icon-container-color,#969799)}.van-field__icon-container:empty{display:none}.van-field__button{padding-left:8px;padding-left:var(--padding-xs,8px)}.van-field__button:empty{display:none}.van-field__error-message{text-align:left;font-size:12px;font-size:var(--field-error-message-text-font-size,12px);color:#ee0a24;color:var(--field-error-message-color,#ee0a24)}.van-field__error-message--center{text-align:center}.van-field__error-message--right{text-align:right}.van-field__word-limit{text-align:right;margin-top:4px;margin-top:var(--padding-base,4px);color:#646566;color:var(--field-word-limit-color,#646566);font-size:12px;font-size:var(--field-word-limit-font-size,12px);line-height:16px;line-height:var(--field-word-limit-line-height,16px)}.van-field__word-num{display:inline}.van-field__word-num--full{color:#ee0a24;color:var(--field-word-num-full-color,#ee0a24)}
|
27
dist/field/input.wxml
vendored
Normal file
27
dist/field/input.wxml
vendored
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
<input
|
||||||
|
class="{{ utils.bem('field__control', [inputAlign, { disabled, error }]) }} input-class"
|
||||||
|
type="{{ type }}"
|
||||||
|
focus="{{ focus }}"
|
||||||
|
cursor="{{ cursor }}"
|
||||||
|
value="{{ innerValue }}"
|
||||||
|
auto-focus="{{ autoFocus }}"
|
||||||
|
disabled="{{ disabled || readonly }}"
|
||||||
|
maxlength="{{ maxlength }}"
|
||||||
|
placeholder="{{ placeholder }}"
|
||||||
|
placeholder-style="{{ placeholderStyle }}"
|
||||||
|
placeholder-class="{{ utils.bem('field__placeholder', { error }) }}"
|
||||||
|
confirm-type="{{ confirmType }}"
|
||||||
|
confirm-hold="{{ confirmHold }}"
|
||||||
|
hold-keyboard="{{ holdKeyboard }}"
|
||||||
|
cursor-spacing="{{ cursorSpacing }}"
|
||||||
|
adjust-position="{{ adjustPosition }}"
|
||||||
|
selection-end="{{ selectionEnd }}"
|
||||||
|
selection-start="{{ selectionStart }}"
|
||||||
|
password="{{ password || type === 'password' }}"
|
||||||
|
bindinput="onInput"
|
||||||
|
bindtap="onClickInput"
|
||||||
|
bindblur="onBlur"
|
||||||
|
bindfocus="onFocus"
|
||||||
|
bindconfirm="onConfirm"
|
||||||
|
bindkeyboardheightchange="onKeyboardHeightChange"
|
||||||
|
/>
|
64
dist/field/props.d.ts
vendored
64
dist/field/props.d.ts
vendored
@ -1,62 +1,4 @@
|
|||||||
/// <reference types="miniprogram-api-typings" />
|
/// <reference types="miniprogram-api-typings" />
|
||||||
export declare const commonProps: {
|
export declare const commonProps: WechatMiniprogram.Component.PropertyOption;
|
||||||
value: {
|
export declare const inputProps: WechatMiniprogram.Component.PropertyOption;
|
||||||
type: StringConstructor;
|
export declare const textareaProps: WechatMiniprogram.Component.PropertyOption;
|
||||||
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;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
29
dist/field/textarea.wxml
vendored
Normal file
29
dist/field/textarea.wxml
vendored
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
<textarea
|
||||||
|
class="{{ utils.bem('field__control', [inputAlign, type, { disabled, error }]) }} input-class"
|
||||||
|
fixed="{{ fixed }}"
|
||||||
|
focus="{{ focus }}"
|
||||||
|
cursor="{{ cursor }}"
|
||||||
|
value="{{ innerValue }}"
|
||||||
|
auto-focus="{{ autoFocus }}"
|
||||||
|
disabled="{{ disabled || readonly }}"
|
||||||
|
maxlength="{{ maxlength }}"
|
||||||
|
placeholder="{{ placeholder }}"
|
||||||
|
placeholder-style="{{ placeholderStyle }}"
|
||||||
|
placeholder-class="{{ utils.bem('field__placeholder', { error, disabled }) }}"
|
||||||
|
auto-height="{{ !!autosize }}"
|
||||||
|
style="{{ computed.inputStyle(autosize) }}"
|
||||||
|
cursor-spacing="{{ cursorSpacing }}"
|
||||||
|
adjust-position="{{ adjustPosition }}"
|
||||||
|
show-confirm-bar="{{ showConfirmBar }}"
|
||||||
|
hold-keyboard="{{ holdKeyboard }}"
|
||||||
|
selection-end="{{ selectionEnd }}"
|
||||||
|
selection-start="{{ selectionStart }}"
|
||||||
|
disable-default-padding="{{ disableDefaultPadding }}"
|
||||||
|
bindinput="onInput"
|
||||||
|
bindtap="onClickInput"
|
||||||
|
bindblur="onBlur"
|
||||||
|
bindfocus="onFocus"
|
||||||
|
bindconfirm="onConfirm"
|
||||||
|
bindlinechange="onLineChange"
|
||||||
|
bindkeyboardheightchange="onKeyboardHeightChange"
|
||||||
|
/>
|
14
dist/goods-action-button/index.js
vendored
14
dist/goods-action-button/index.js
vendored
@ -1,14 +1,11 @@
|
|||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
import { link } from '../mixins/link';
|
import { useParent } from '../common/relation';
|
||||||
import { button } from '../mixins/button';
|
import { button } from '../mixins/button';
|
||||||
|
import { link } from '../mixins/link';
|
||||||
import { openType } from '../mixins/open-type';
|
import { openType } from '../mixins/open-type';
|
||||||
VantComponent({
|
VantComponent({
|
||||||
mixins: [link, button, openType],
|
mixins: [link, button, openType],
|
||||||
relation: {
|
relation: useParent('goods-action'),
|
||||||
type: 'ancestor',
|
|
||||||
name: 'goods-action',
|
|
||||||
current: 'goods-action-button',
|
|
||||||
},
|
|
||||||
props: {
|
props: {
|
||||||
text: String,
|
text: String,
|
||||||
color: String,
|
color: String,
|
||||||
@ -29,12 +26,11 @@ VantComponent({
|
|||||||
if (this.parent == null) {
|
if (this.parent == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
const { index } = this;
|
||||||
const { children = [] } = this.parent;
|
const { children = [] } = this.parent;
|
||||||
const { length } = children;
|
|
||||||
const index = children.indexOf(this);
|
|
||||||
this.setData({
|
this.setData({
|
||||||
isFirst: index === 0,
|
isFirst: index === 0,
|
||||||
isLast: index === length - 1,
|
isLast: index === children.length - 1,
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
29
dist/goods-action/index.js
vendored
29
dist/goods-action/index.js
vendored
@ -1,32 +1,15 @@
|
|||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
|
import { useChildren } from '../common/relation';
|
||||||
VantComponent({
|
VantComponent({
|
||||||
relation: {
|
relation: useChildren('goods-action-button', function () {
|
||||||
type: 'descendant',
|
this.children.forEach((item) => {
|
||||||
name: 'goods-action-button',
|
item.updateStyle();
|
||||||
current: 'goods-action',
|
});
|
||||||
linked() {
|
}),
|
||||||
this.updateStyle();
|
|
||||||
},
|
|
||||||
unlinked() {
|
|
||||||
this.updateStyle();
|
|
||||||
},
|
|
||||||
linkChanged() {
|
|
||||||
this.updateStyle();
|
|
||||||
},
|
|
||||||
},
|
|
||||||
props: {
|
props: {
|
||||||
safeAreaInsetBottom: {
|
safeAreaInsetBottom: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: true,
|
value: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
|
||||||
updateStyle() {
|
|
||||||
wx.nextTick(() => {
|
|
||||||
this.children.forEach((child) => {
|
|
||||||
child.updateStyle();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
9
dist/grid-item/index.js
vendored
9
dist/grid-item/index.js
vendored
@ -1,11 +1,8 @@
|
|||||||
import { link } from '../mixins/link';
|
|
||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
|
import { useParent } from '../common/relation';
|
||||||
|
import { link } from '../mixins/link';
|
||||||
VantComponent({
|
VantComponent({
|
||||||
relation: {
|
relation: useParent('grid'),
|
||||||
name: 'grid',
|
|
||||||
type: 'ancestor',
|
|
||||||
current: 'grid-item',
|
|
||||||
},
|
|
||||||
classes: ['content-class', 'icon-class', 'text-class'],
|
classes: ['content-class', 'icon-class', 'text-class'],
|
||||||
mixins: [link],
|
mixins: [link],
|
||||||
props: {
|
props: {
|
||||||
|
9
dist/grid/index.js
vendored
9
dist/grid/index.js
vendored
@ -1,17 +1,14 @@
|
|||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
|
import { useChildren } from '../common/relation';
|
||||||
VantComponent({
|
VantComponent({
|
||||||
relation: {
|
relation: useChildren('grid-item'),
|
||||||
name: 'grid-item',
|
|
||||||
type: 'descendant',
|
|
||||||
current: 'grid',
|
|
||||||
},
|
|
||||||
props: {
|
props: {
|
||||||
square: {
|
square: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
observer: 'updateChildren',
|
observer: 'updateChildren',
|
||||||
},
|
},
|
||||||
gutter: {
|
gutter: {
|
||||||
type: [Number, String],
|
type: null,
|
||||||
value: 0,
|
value: 0,
|
||||||
observer: 'updateChildren',
|
observer: 'updateChildren',
|
||||||
},
|
},
|
||||||
|
2
dist/icon/index.wxss
vendored
2
dist/icon/index.wxss
vendored
File diff suppressed because one or more lines are too long
7
dist/index-anchor/index.js
vendored
7
dist/index-anchor/index.js
vendored
@ -1,11 +1,8 @@
|
|||||||
import { getRect } from '../common/utils';
|
import { getRect } from '../common/utils';
|
||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
|
import { useParent } from '../common/relation';
|
||||||
VantComponent({
|
VantComponent({
|
||||||
relation: {
|
relation: useParent('index-bar'),
|
||||||
name: 'index-bar',
|
|
||||||
type: 'ancestor',
|
|
||||||
current: 'index-anchor',
|
|
||||||
},
|
|
||||||
props: {
|
props: {
|
||||||
useSlot: Boolean,
|
useSlot: Boolean,
|
||||||
index: null,
|
index: null,
|
||||||
|
15
dist/index-bar/index.js
vendored
15
dist/index-bar/index.js
vendored
@ -1,5 +1,6 @@
|
|||||||
import { GREEN } from '../common/color';
|
import { GREEN } from '../common/color';
|
||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
|
import { useChildren } from '../common/relation';
|
||||||
import { getRect } from '../common/utils';
|
import { getRect } from '../common/utils';
|
||||||
import { pageScrollMixin } from '../mixins/page-scroll';
|
import { pageScrollMixin } from '../mixins/page-scroll';
|
||||||
const indexList = () => {
|
const indexList = () => {
|
||||||
@ -11,17 +12,9 @@ const indexList = () => {
|
|||||||
return indexList;
|
return indexList;
|
||||||
};
|
};
|
||||||
VantComponent({
|
VantComponent({
|
||||||
relation: {
|
relation: useChildren('index-anchor', function () {
|
||||||
name: 'index-anchor',
|
this.updateData();
|
||||||
type: 'descendant',
|
}),
|
||||||
current: 'index-bar',
|
|
||||||
linked() {
|
|
||||||
this.updateData();
|
|
||||||
},
|
|
||||||
unlinked() {
|
|
||||||
this.updateData();
|
|
||||||
},
|
|
||||||
},
|
|
||||||
props: {
|
props: {
|
||||||
sticky: {
|
sticky: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
|
7
dist/loading/index.wxml
vendored
7
dist/loading/index.wxml
vendored
@ -1,9 +1,10 @@
|
|||||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
|
|
||||||
<view class="custom-class van-loading {{ vertical ? 'van-loading--vertical' : '' }}">
|
<view class="custom-class {{ utils.bem('loading', { vertical }) }}">
|
||||||
<view
|
<view
|
||||||
class="van-loading__spinner van-loading__spinner--{{ type }}"
|
class="van-loading__spinner van-loading__spinner--{{ type }}"
|
||||||
style="color: {{ color }}; width: {{ utils.addUnit(size) }}; height: {{ utils.addUnit(size) }}"
|
style="{{ computed.spinnerStyle({ color, size }) }}"
|
||||||
>
|
>
|
||||||
<view
|
<view
|
||||||
wx:if="{{ type === 'spinner' }}"
|
wx:if="{{ type === 'spinner' }}"
|
||||||
@ -12,7 +13,7 @@
|
|||||||
class="van-loading__dot"
|
class="van-loading__dot"
|
||||||
/>
|
/>
|
||||||
</view>
|
</view>
|
||||||
<view class="van-loading__text" style="font-size: {{ utils.addUnit(textSize) }};">
|
<view class="van-loading__text" style="{{ computed.textStyle({ textSize }) }}">
|
||||||
<slot />
|
<slot />
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
22
dist/loading/index.wxs
vendored
Normal file
22
dist/loading/index.wxs
vendored
Normal file
@ -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,
|
||||||
|
};
|
4
dist/mixins/basic.js
vendored
4
dist/mixins/basic.js
vendored
@ -3,8 +3,8 @@ export const basic = Behavior({
|
|||||||
$emit(name, detail, options) {
|
$emit(name, detail, options) {
|
||||||
this.triggerEvent(name, detail, options);
|
this.triggerEvent(name, detail, options);
|
||||||
},
|
},
|
||||||
set(data, callback) {
|
set(data) {
|
||||||
this.setData(data, callback);
|
this.setData(data);
|
||||||
return new Promise((resolve) => wx.nextTick(resolve));
|
return new Promise((resolve) => wx.nextTick(resolve));
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
13
dist/mixins/page-scroll.js
vendored
13
dist/mixins/page-scroll.js
vendored
@ -1,7 +1,4 @@
|
|||||||
function getCurrentPage() {
|
import { getCurrentPage } from '../common/utils';
|
||||||
const pages = getCurrentPages();
|
|
||||||
return pages[pages.length - 1] || {};
|
|
||||||
}
|
|
||||||
function onPageScroll(event) {
|
function onPageScroll(event) {
|
||||||
const { vanPageScroller = [] } = getCurrentPage();
|
const { vanPageScroller = [] } = getCurrentPage();
|
||||||
vanPageScroller.forEach((scroller) => {
|
vanPageScroller.forEach((scroller) => {
|
||||||
@ -26,9 +23,11 @@ export const pageScrollMixin = (scroller) =>
|
|||||||
page.onPageScroll = onPageScroll;
|
page.onPageScroll = onPageScroll;
|
||||||
},
|
},
|
||||||
detached() {
|
detached() {
|
||||||
|
var _a;
|
||||||
const page = getCurrentPage();
|
const page = getCurrentPage();
|
||||||
page.vanPageScroller = (page.vanPageScroller || []).filter(
|
page.vanPageScroller =
|
||||||
(item) => item !== scroller
|
((_a = page.vanPageScroller) === null || _a === void 0
|
||||||
);
|
? void 0
|
||||||
|
: _a.filter((item) => item !== scroller)) || [];
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
3
dist/notice-bar/index.wxml
vendored
3
dist/notice-bar/index.wxml
vendored
@ -1,9 +1,10 @@
|
|||||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
|
|
||||||
<view
|
<view
|
||||||
wx:if="{{ show }}"
|
wx:if="{{ show }}"
|
||||||
class="custom-class {{ utils.bem('notice-bar', { withicon: mode, wrapable }) }}"
|
class="custom-class {{ utils.bem('notice-bar', { withicon: mode, wrapable }) }}"
|
||||||
style="color: {{ color }}; background-color: {{ backgroundColor }}; background: {{ background }}"
|
style="{{ computed.rootStyle({ color, backgroundColor, background }) }}"
|
||||||
bind:tap="onClick"
|
bind:tap="onClick"
|
||||||
>
|
>
|
||||||
<van-icon
|
<van-icon
|
||||||
|
15
dist/notice-bar/index.wxs
vendored
Normal file
15
dist/notice-bar/index.wxs
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
/* eslint-disable */
|
||||||
|
var style = require('../wxs/style.wxs');
|
||||||
|
var addUnit = require('../wxs/add-unit.wxs');
|
||||||
|
|
||||||
|
function rootStyle(data) {
|
||||||
|
return style({
|
||||||
|
color: data.color,
|
||||||
|
'background-color': data.backgroundColor,
|
||||||
|
background: data.background,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
rootStyle: rootStyle,
|
||||||
|
};
|
3
dist/notify/index.js
vendored
3
dist/notify/index.js
vendored
@ -29,6 +29,9 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
data: {
|
data: {
|
||||||
show: false,
|
show: false,
|
||||||
|
onOpened: null,
|
||||||
|
onClose: null,
|
||||||
|
onClick: null,
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
const { statusBarHeight } = getSystemInfoSync();
|
const { statusBarHeight } = getSystemInfoSync();
|
||||||
|
5
dist/notify/index.wxml
vendored
5
dist/notify/index.wxml
vendored
@ -1,15 +1,16 @@
|
|||||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
|
|
||||||
<van-transition
|
<van-transition
|
||||||
name="slide-down"
|
name="slide-down"
|
||||||
show="{{ show }}"
|
show="{{ show }}"
|
||||||
custom-class="van-notify__container"
|
custom-class="van-notify__container"
|
||||||
custom-style="z-index: {{ zIndex }}; top: {{ utils.addUnit(top) }}"
|
custom-style="{{ computed.rootStyle({ zIndex, top }) }}"
|
||||||
bind:tap="onTap"
|
bind:tap="onTap"
|
||||||
>
|
>
|
||||||
<view
|
<view
|
||||||
class="van-notify van-notify--{{ type }}"
|
class="van-notify van-notify--{{ type }}"
|
||||||
style="background:{{ background }};color:{{ color }};"
|
style="{{ computed.notifyStyle({ background, color }) }}"
|
||||||
>
|
>
|
||||||
<view
|
<view
|
||||||
wx:if="{{ safeAreaInsetTop }}"
|
wx:if="{{ safeAreaInsetTop }}"
|
||||||
|
22
dist/notify/index.wxs
vendored
Normal file
22
dist/notify/index.wxs
vendored
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
/* eslint-disable */
|
||||||
|
var style = require('../wxs/style.wxs');
|
||||||
|
var addUnit = require('../wxs/add-unit.wxs');
|
||||||
|
|
||||||
|
function rootStyle(data) {
|
||||||
|
return style({
|
||||||
|
'z-index': data.zIndex,
|
||||||
|
top: addUnit(data.top),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function notifyStyle(data) {
|
||||||
|
return style({
|
||||||
|
background: data.background,
|
||||||
|
color: data.color,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
rootStyle: rootStyle,
|
||||||
|
notifyStyle: notifyStyle,
|
||||||
|
};
|
11
dist/picker-column/index.wxml
vendored
11
dist/picker-column/index.wxml
vendored
@ -1,22 +1,23 @@
|
|||||||
<wxs src="./index.wxs" module="getOptionText" />
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
|
|
||||||
<view
|
<view
|
||||||
class="van-picker-column custom-class"
|
class="van-picker-column custom-class"
|
||||||
style="height: {{ itemHeight * visibleItemCount }}px"
|
style="{{ computed.rootStyle({ itemHeight, visibleItemCount }) }}"
|
||||||
bind:touchstart="onTouchStart"
|
bind:touchstart="onTouchStart"
|
||||||
catch:touchmove="onTouchMove"
|
catch:touchmove="onTouchMove"
|
||||||
bind:touchend="onTouchEnd"
|
bind:touchend="onTouchEnd"
|
||||||
bind:touchcancel="onTouchEnd"
|
bind:touchcancel="onTouchEnd"
|
||||||
>
|
>
|
||||||
<view style="transition: transform {{ duration }}ms; line-height: {{ itemHeight }}px; transform: translate3d(0, {{ offset + (itemHeight * (visibleItemCount - 1)) / 2 }}px, 0)">
|
<view style="{{ computed.wrapperStyle({ offset, itemHeight, visibleItemCount }) }}">
|
||||||
<view
|
<view
|
||||||
wx:for="{{ options }}"
|
wx:for="{{ options }}"
|
||||||
wx:for-item="option"
|
wx:for-item="option"
|
||||||
wx:key="index"
|
wx:key="index"
|
||||||
data-index="{{ index }}"
|
data-index="{{ index }}"
|
||||||
style="height: {{ itemHeight }}px"
|
style="height: {{ itemHeight }}px"
|
||||||
class="van-ellipsis van-picker-column__item {{ option && option.disabled ? 'van-picker-column__item--disabled' : '' }} {{ index === currentIndex ? 'van-picker-column__item--selected active-class' : '' }}"
|
class="van-ellipsis {{ utils.bem('picker-column__item', { disabled: option && option.disabled, selected: index === currentIndex }) }} {{ index === currentIndex ? 'active-class' : '' }}"
|
||||||
bindtap="onClickItem"
|
bindtap="onClickItem"
|
||||||
>{{ getOptionText(option, valueKey) }}</view>
|
>{{ computed.optionText(option, valueKey) }}</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
30
dist/picker-column/index.wxs
vendored
30
dist/picker-column/index.wxs
vendored
@ -1,8 +1,36 @@
|
|||||||
|
/* eslint-disable */
|
||||||
|
var style = require('../wxs/style.wxs');
|
||||||
|
var addUnit = require('../wxs/add-unit.wxs');
|
||||||
|
|
||||||
function isObj(x) {
|
function isObj(x) {
|
||||||
var type = typeof x;
|
var type = typeof x;
|
||||||
return x !== null && (type === 'object' || type === 'function');
|
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;
|
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,
|
||||||
|
};
|
||||||
|
5
dist/picker/index.js
vendored
5
dist/picker/index.js
vendored
@ -20,7 +20,6 @@ VantComponent({
|
|||||||
value: [],
|
value: [],
|
||||||
observer(columns = []) {
|
observer(columns = []) {
|
||||||
this.simple = columns.length && !columns[0].values;
|
this.simple = columns.length && !columns[0].values;
|
||||||
this.children = this.selectAllComponents('.van-picker__column');
|
|
||||||
if (Array.isArray(this.children) && this.children.length) {
|
if (Array.isArray(this.children) && this.children.length) {
|
||||||
this.setColumns().catch(() => {});
|
this.setColumns().catch(() => {});
|
||||||
}
|
}
|
||||||
@ -28,7 +27,9 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
beforeCreate() {
|
beforeCreate() {
|
||||||
this.children = [];
|
Object.defineProperty(this, 'children', {
|
||||||
|
get: () => this.selectAllComponents('.van-picker__column') || [],
|
||||||
|
});
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
noop() {},
|
noop() {},
|
||||||
|
26
dist/picker/index.wxml
vendored
26
dist/picker/index.wxml
vendored
@ -1,41 +1,37 @@
|
|||||||
<import src="./toolbar.wxml" />
|
<wxs src="./index.wxs" module="computed" />
|
||||||
|
|
||||||
<view class="van-picker custom-class">
|
<view class="van-picker custom-class">
|
||||||
<template is="toolbar" wx:if="{{ toolbarPosition === 'top' }}" data="{{ showToolbar, cancelButtonText, title, confirmButtonText }}"></template>
|
<include wx:if="{{ toolbarPosition === 'top' }}" src="toolbar.wxml" />
|
||||||
|
|
||||||
<view wx:if="{{ loading }}" class="van-picker__loading">
|
<view wx:if="{{ loading }}" class="van-picker__loading">
|
||||||
<loading color="#1989fa"/>
|
<loading color="#1989fa"/>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view
|
<view
|
||||||
class="van-picker__columns"
|
class="van-picker__columns"
|
||||||
style="height: {{ itemHeight * visibleItemCount }}px"
|
style="{{ computed.columnsStyle({ itemHeight, visibleItemCount }) }}"
|
||||||
catch:touchmove="noop"
|
catch:touchmove="noop"
|
||||||
>
|
>
|
||||||
<picker-column
|
<picker-column
|
||||||
class="van-picker__column"
|
class="van-picker__column"
|
||||||
wx:for="{{ isSimple(columns) ? [columns] : columns }}"
|
wx:for="{{ computed.columns(columns) }}"
|
||||||
wx:key="index"
|
wx:key="index"
|
||||||
data-index="{{ index }}"
|
data-index="{{ index }}"
|
||||||
custom-class="column-class"
|
custom-class="column-class"
|
||||||
value-key="{{ valueKey }}"
|
value-key="{{ valueKey }}"
|
||||||
initial-options="{{ isSimple(columns) ? item : item.values }}"
|
initial-options="{{ item.values }}"
|
||||||
default-index="{{ item.defaultIndex || defaultIndex }}"
|
default-index="{{ item.defaultIndex || defaultIndex }}"
|
||||||
item-height="{{ itemHeight }}"
|
item-height="{{ itemHeight }}"
|
||||||
visible-item-count="{{ visibleItemCount }}"
|
visible-item-count="{{ visibleItemCount }}"
|
||||||
active-class="active-class"
|
active-class="active-class"
|
||||||
bind:change="onChange"
|
bind:change="onChange"
|
||||||
/>
|
/>
|
||||||
<view class="van-picker__mask" style="background-size: 100% {{ (itemHeight * visibleItemCount - itemHeight) / 2 }}px" />
|
<view class="van-picker__mask" style="{{ computed.maskStyle({ itemHeight, visibleItemCount }) }}" />
|
||||||
<view
|
<view
|
||||||
class="van-picker__frame van-hairline--top-bottom"
|
class="van-picker__frame van-hairline--top-bottom"
|
||||||
style="height: {{ itemHeight }}px"
|
style="{{ computed.frameStyle({ itemHeight }) }}"
|
||||||
/>
|
/>
|
||||||
</view>
|
</view>
|
||||||
<template is="toolbar" wx:if="{{ toolbarPosition === 'bottom' }}" data="{{ showToolbar, cancelButtonText, title, confirmButtonText }}"></template>
|
|
||||||
</view>
|
|
||||||
|
|
||||||
<wxs module="isSimple">
|
<include wx:if="{{ toolbarPosition === 'bottom' }}" src="toolbar.wxml" />
|
||||||
function isSimple(columns) {
|
</view>
|
||||||
return columns.length && !columns[0].values;
|
|
||||||
}
|
|
||||||
module.exports = isSimple;
|
|
||||||
</wxs>
|
|
||||||
|
42
dist/picker/index.wxs
vendored
Normal file
42
dist/picker/index.wxs
vendored
Normal file
@ -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,
|
||||||
|
};
|
2
dist/popup/index.wxml
vendored
2
dist/popup/index.wxml
vendored
@ -12,7 +12,7 @@
|
|||||||
<view
|
<view
|
||||||
wx:if="{{ inited }}"
|
wx:if="{{ inited }}"
|
||||||
class="custom-class {{ classes }} {{ utils.bem('popup', [position, { round, safe: safeAreaInsetBottom, safeTop: safeAreaInsetTop }]) }}"
|
class="custom-class {{ classes }} {{ utils.bem('popup', [position, { round, safe: safeAreaInsetBottom, safeTop: safeAreaInsetTop }]) }}"
|
||||||
style="{{ computed.popupClass({ zIndex, currentDuration, display, customStyle }) }}"
|
style="{{ computed.popupStyle({ zIndex, currentDuration, display, customStyle }) }}"
|
||||||
bind:transitionend="onTransitionEnd"
|
bind:transitionend="onTransitionEnd"
|
||||||
>
|
>
|
||||||
<slot />
|
<slot />
|
||||||
|
4
dist/popup/index.wxs
vendored
4
dist/popup/index.wxs
vendored
@ -1,7 +1,7 @@
|
|||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
var style = require('../wxs/style.wxs');
|
var style = require('../wxs/style.wxs');
|
||||||
|
|
||||||
function popupClass(data) {
|
function popupStyle(data) {
|
||||||
return style([
|
return style([
|
||||||
{
|
{
|
||||||
'z-index': data.zIndex,
|
'z-index': data.zIndex,
|
||||||
@ -14,5 +14,5 @@ function popupClass(data) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
popupClass: popupClass,
|
popupStyle: popupStyle,
|
||||||
};
|
};
|
||||||
|
12
dist/radio-group/index.js
vendored
12
dist/radio-group/index.js
vendored
@ -1,14 +1,10 @@
|
|||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
|
import { useChildren } from '../common/relation';
|
||||||
VantComponent({
|
VantComponent({
|
||||||
field: true,
|
field: true,
|
||||||
relation: {
|
relation: useChildren('radio', function (target) {
|
||||||
name: 'radio',
|
this.updateChild(target);
|
||||||
type: 'descendant',
|
}),
|
||||||
current: 'radio-group',
|
|
||||||
linked(target) {
|
|
||||||
this.updateChild(target);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
props: {
|
props: {
|
||||||
value: {
|
value: {
|
||||||
type: null,
|
type: null,
|
||||||
|
7
dist/radio/index.js
vendored
7
dist/radio/index.js
vendored
@ -1,11 +1,8 @@
|
|||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
|
import { useParent } from '../common/relation';
|
||||||
VantComponent({
|
VantComponent({
|
||||||
field: true,
|
field: true,
|
||||||
relation: {
|
relation: useParent('radio-group'),
|
||||||
name: 'radio-group',
|
|
||||||
type: 'ancestor',
|
|
||||||
current: 'radio',
|
|
||||||
},
|
|
||||||
classes: ['icon-class', 'label-class'],
|
classes: ['icon-class', 'label-class'],
|
||||||
props: {
|
props: {
|
||||||
name: null,
|
name: null,
|
||||||
|
35
dist/row/index.js
vendored
35
dist/row/index.js
vendored
@ -1,39 +1,22 @@
|
|||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
|
import { useChildren } from '../common/relation';
|
||||||
VantComponent({
|
VantComponent({
|
||||||
relation: {
|
relation: useChildren('col', function (target) {
|
||||||
name: 'col',
|
const { gutter } = this.data;
|
||||||
type: 'descendant',
|
if (gutter) {
|
||||||
current: 'row',
|
target.setData({ gutter });
|
||||||
linked(target) {
|
}
|
||||||
if (this.data.gutter) {
|
}),
|
||||||
target.setGutter(this.data.gutter);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
},
|
|
||||||
props: {
|
props: {
|
||||||
gutter: {
|
gutter: {
|
||||||
type: Number,
|
type: Number,
|
||||||
observer: 'setGutter',
|
observer: 'setGutter',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
data: {
|
|
||||||
viewStyle: '',
|
|
||||||
},
|
|
||||||
mounted() {
|
|
||||||
if (this.data.gutter) {
|
|
||||||
this.setGutter();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
methods: {
|
methods: {
|
||||||
setGutter() {
|
setGutter() {
|
||||||
const { gutter } = this.data;
|
this.children.forEach((col) => {
|
||||||
const margin = `-${Number(gutter) / 2}px`;
|
col.setData(this.data);
|
||||||
const viewStyle = gutter
|
|
||||||
? `margin-right: ${margin}; margin-left: ${margin};`
|
|
||||||
: '';
|
|
||||||
this.setData({ viewStyle });
|
|
||||||
this.getRelationNodes('../col/index').forEach((col) => {
|
|
||||||
col.setGutter(this.data.gutter);
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
4
dist/row/index.wxml
vendored
4
dist/row/index.wxml
vendored
@ -1,3 +1,5 @@
|
|||||||
<view class="custom-class van-row" style="{{ viewStyle }}">
|
<wxs src="./index.wxs" module="computed" />
|
||||||
|
|
||||||
|
<view class="van-row custom-class" style="{{ computed.rootStyle({ gutter }) }}">
|
||||||
<slot />
|
<slot />
|
||||||
</view>
|
</view>
|
||||||
|
18
dist/row/index.wxs
vendored
Normal file
18
dist/row/index.wxs
vendored
Normal file
@ -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({
|
||||||
|
'margin-right': addUnit(-data.gutter / 2),
|
||||||
|
'margin-left': addUnit(-data.gutter / 2),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
rootStyle: rootStyle,
|
||||||
|
};
|
7
dist/sidebar-item/index.js
vendored
7
dist/sidebar-item/index.js
vendored
@ -1,11 +1,8 @@
|
|||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
|
import { useParent } from '../common/relation';
|
||||||
VantComponent({
|
VantComponent({
|
||||||
classes: ['active-class', 'disabled-class'],
|
classes: ['active-class', 'disabled-class'],
|
||||||
relation: {
|
relation: useParent('sidebar'),
|
||||||
type: 'ancestor',
|
|
||||||
name: 'sidebar',
|
|
||||||
current: 'sidebar-item',
|
|
||||||
},
|
|
||||||
props: {
|
props: {
|
||||||
dot: Boolean,
|
dot: Boolean,
|
||||||
badge: null,
|
badge: null,
|
||||||
|
15
dist/sidebar/index.js
vendored
15
dist/sidebar/index.js
vendored
@ -1,16 +1,9 @@
|
|||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
|
import { useChildren } from '../common/relation';
|
||||||
VantComponent({
|
VantComponent({
|
||||||
relation: {
|
relation: useChildren('sidebar-item', function () {
|
||||||
name: 'sidebar-item',
|
this.setActive(this.data.activeKey);
|
||||||
type: 'descendant',
|
}),
|
||||||
current: 'sidebar',
|
|
||||||
linked() {
|
|
||||||
this.setActive(this.data.activeKey);
|
|
||||||
},
|
|
||||||
unlinked() {
|
|
||||||
this.setActive(this.data.activeKey);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
props: {
|
props: {
|
||||||
activeKey: {
|
activeKey: {
|
||||||
type: Number,
|
type: Number,
|
||||||
|
4
dist/stepper/index.js
vendored
4
dist/stepper/index.js
vendored
@ -27,8 +27,8 @@ VantComponent({
|
|||||||
observer: 'check',
|
observer: 'check',
|
||||||
},
|
},
|
||||||
disabled: Boolean,
|
disabled: Boolean,
|
||||||
inputWidth: null,
|
inputWidth: String,
|
||||||
buttonSize: null,
|
buttonSize: String,
|
||||||
asyncChange: Boolean,
|
asyncChange: Boolean,
|
||||||
disableInput: Boolean,
|
disableInput: Boolean,
|
||||||
decimalLength: {
|
decimalLength: {
|
||||||
|
7
dist/stepper/index.wxml
vendored
7
dist/stepper/index.wxml
vendored
@ -1,10 +1,11 @@
|
|||||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
|
|
||||||
<view class="van-stepper custom-class">
|
<view class="van-stepper custom-class">
|
||||||
<view
|
<view
|
||||||
wx:if="{{ showMinus }}"
|
wx:if="{{ showMinus }}"
|
||||||
data-type="minus"
|
data-type="minus"
|
||||||
style="width: {{ utils.addUnit(buttonSize) }}; height: {{ utils.addUnit(buttonSize) }}"
|
style="{{ computed.buttonStyle({ buttonSize }) }}"
|
||||||
class="minus-class {{ utils.bem('stepper__minus', { disabled: disabled || disableMinus || currentValue <= min }) }}"
|
class="minus-class {{ utils.bem('stepper__minus', { disabled: disabled || disableMinus || currentValue <= min }) }}"
|
||||||
hover-class="van-stepper__minus--hover"
|
hover-class="van-stepper__minus--hover"
|
||||||
hover-stay-time="70"
|
hover-stay-time="70"
|
||||||
@ -15,7 +16,7 @@
|
|||||||
<input
|
<input
|
||||||
type="{{ integer ? 'number' : 'digit' }}"
|
type="{{ integer ? 'number' : 'digit' }}"
|
||||||
class="input-class {{ utils.bem('stepper__input', { disabled: disabled || disableInput }) }}"
|
class="input-class {{ utils.bem('stepper__input', { disabled: disabled || disableInput }) }}"
|
||||||
style="width: {{ utils.addUnit(inputWidth) }}; height: {{ utils.addUnit(buttonSize) }}"
|
style="{{ computed.inputStyle({ buttonSize, inputWidth }) }}"
|
||||||
value="{{ currentValue }}"
|
value="{{ currentValue }}"
|
||||||
focus="{{ focus }}"
|
focus="{{ focus }}"
|
||||||
disabled="{{ disabled || disableInput }}"
|
disabled="{{ disabled || disableInput }}"
|
||||||
@ -26,7 +27,7 @@
|
|||||||
<view
|
<view
|
||||||
wx:if="{{ showPlus }}"
|
wx:if="{{ showPlus }}"
|
||||||
data-type="plus"
|
data-type="plus"
|
||||||
style="width: {{ utils.addUnit(buttonSize) }}; height: {{ utils.addUnit(buttonSize) }}"
|
style="{{ computed.buttonStyle({ buttonSize }) }}"
|
||||||
class="plus-class {{ utils.bem('stepper__plus', { disabled: disabled || disablePlus || currentValue >= max }) }}"
|
class="plus-class {{ utils.bem('stepper__plus', { disabled: disabled || disablePlus || currentValue >= max }) }}"
|
||||||
hover-class="van-stepper__plus--hover"
|
hover-class="van-stepper__plus--hover"
|
||||||
hover-stay-time="70"
|
hover-stay-time="70"
|
||||||
|
22
dist/stepper/index.wxs
vendored
Normal file
22
dist/stepper/index.wxs
vendored
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
/* eslint-disable */
|
||||||
|
var style = require('../wxs/style.wxs');
|
||||||
|
var addUnit = require('../wxs/add-unit.wxs');
|
||||||
|
|
||||||
|
function buttonStyle(data) {
|
||||||
|
return style({
|
||||||
|
width: addUnit(data.buttonSize),
|
||||||
|
height: addUnit(data.buttonSize),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function inputStyle(data) {
|
||||||
|
return style({
|
||||||
|
width: addUnit(data.inputWidth),
|
||||||
|
height: addUnit(data.buttonSize),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
buttonStyle: buttonStyle,
|
||||||
|
inputStyle: inputStyle,
|
||||||
|
};
|
4
dist/sticky/index.js
vendored
4
dist/sticky/index.js
vendored
@ -94,7 +94,9 @@ VantComponent({
|
|||||||
}
|
}
|
||||||
return prev;
|
return prev;
|
||||||
}, {});
|
}, {});
|
||||||
this.setData(diff);
|
if (Object.keys(diff).length > 0) {
|
||||||
|
this.setData(diff);
|
||||||
|
}
|
||||||
this.$emit('scroll', {
|
this.$emit('scroll', {
|
||||||
scrollTop: this.scrollTop,
|
scrollTop: this.scrollTop,
|
||||||
isFixed: data.fixed || this.data.fixed,
|
isFixed: data.fixed || this.data.fixed,
|
||||||
|
5
dist/sticky/index.wxs
vendored
5
dist/sticky/index.wxs
vendored
@ -1,19 +1,20 @@
|
|||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
var style = require('../wxs/style.wxs');
|
var style = require('../wxs/style.wxs');
|
||||||
|
var addUnit = require('../wxs/add-unit.wxs');
|
||||||
|
|
||||||
function wrapStyle(data) {
|
function wrapStyle(data) {
|
||||||
return style({
|
return style({
|
||||||
transform: data.transform
|
transform: data.transform
|
||||||
? 'translate3d(0, ' + data.transform + 'px, 0)'
|
? 'translate3d(0, ' + data.transform + 'px, 0)'
|
||||||
: '',
|
: '',
|
||||||
top: data.fixed ? data.offsetTop + 'px' : '',
|
top: data.fixed ? addUnit(data.offsetTop) : '',
|
||||||
'z-index': data.zIndex,
|
'z-index': data.zIndex,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function containerStyle(data) {
|
function containerStyle(data) {
|
||||||
return style({
|
return style({
|
||||||
height: data.fixed ? data.height + 'px' : '',
|
height: data.fixed ? addUnit(data.height) : '',
|
||||||
'z-index': data.zIndex,
|
'z-index': data.zIndex,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
6
dist/swipe-cell/index.js
vendored
6
dist/swipe-cell/index.js
vendored
@ -26,7 +26,7 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
asyncClose: Boolean,
|
asyncClose: Boolean,
|
||||||
name: {
|
name: {
|
||||||
type: [Number, String],
|
type: null,
|
||||||
value: '',
|
value: '',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@ -99,7 +99,9 @@ VantComponent({
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.dragging = true;
|
this.dragging = true;
|
||||||
ARRAY.filter((item) => item !== this).forEach((item) => item.close());
|
ARRAY.filter(
|
||||||
|
(item) => item !== this && item.offset !== 0
|
||||||
|
).forEach((item) => item.close());
|
||||||
this.setData({ catchMove: true });
|
this.setData({ catchMove: true });
|
||||||
this.swipeMove(this.startOffset + this.deltaX);
|
this.swipeMove(this.startOffset + this.deltaX);
|
||||||
},
|
},
|
||||||
|
33
dist/switch/index.js
vendored
33
dist/switch/index.js
vendored
@ -1,23 +1,16 @@
|
|||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
import { BLUE, GRAY_DARK } from '../common/color';
|
|
||||||
VantComponent({
|
VantComponent({
|
||||||
field: true,
|
field: true,
|
||||||
classes: ['node-class'],
|
classes: ['node-class'],
|
||||||
props: {
|
props: {
|
||||||
checked: {
|
checked: null,
|
||||||
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,
|
||||||
inactiveColor: String,
|
inactiveColor: String,
|
||||||
size: {
|
size: {
|
||||||
type: String,
|
type: String,
|
||||||
value: '30px',
|
value: '30',
|
||||||
},
|
},
|
||||||
activeValue: {
|
activeValue: {
|
||||||
type: null,
|
type: null,
|
||||||
@ -28,24 +21,16 @@ VantComponent({
|
|||||||
value: false,
|
value: false,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
created() {
|
|
||||||
const { checked: value } = this.data;
|
|
||||||
const loadingColor = this.getLoadingColor(value);
|
|
||||||
this.setData({ value, loadingColor });
|
|
||||||
},
|
|
||||||
methods: {
|
methods: {
|
||||||
getLoadingColor(checked) {
|
|
||||||
const { activeColor, inactiveColor } = this.data;
|
|
||||||
return checked ? activeColor || BLUE : inactiveColor || GRAY_DARK;
|
|
||||||
},
|
|
||||||
onClick() {
|
onClick() {
|
||||||
const { activeValue, inactiveValue } = this.data;
|
const { activeValue, inactiveValue, disabled, loading } = this.data;
|
||||||
if (!this.data.disabled && !this.data.loading) {
|
if (disabled || loading) {
|
||||||
const checked = this.data.checked === activeValue;
|
return;
|
||||||
const value = checked ? inactiveValue : activeValue;
|
|
||||||
this.$emit('input', value);
|
|
||||||
this.$emit('change', value);
|
|
||||||
}
|
}
|
||||||
|
const checked = this.data.checked === activeValue;
|
||||||
|
const value = checked ? inactiveValue : activeValue;
|
||||||
|
this.$emit('input', value);
|
||||||
|
this.$emit('change', value);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
11
dist/switch/index.wxml
vendored
11
dist/switch/index.wxml
vendored
@ -1,11 +1,16 @@
|
|||||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
|
|
||||||
<view
|
<view
|
||||||
class="custom-class {{ utils.bem('switch', { on: value === activeValue, disabled }) }}"
|
class="{{ utils.bem('switch', { on: checked === activeValue, disabled }) }} custom-class"
|
||||||
style="font-size: {{ size }}; {{ (checked ? activeColor : inactiveColor) ? 'background-color: ' + (checked ? activeColor : inactiveColor ) : '' }}"
|
style="{{ computed.rootStyle({ size, checked, activeColor, inactiveColor }) }}"
|
||||||
bind:tap="onClick"
|
bind:tap="onClick"
|
||||||
>
|
>
|
||||||
<view class="van-switch__node node-class">
|
<view class="van-switch__node node-class">
|
||||||
<van-loading wx:if="{{ loading }}" color="{{ loadingColor }}" custom-class="van-switch__loading" />
|
<van-loading
|
||||||
|
wx:if="{{ loading }}"
|
||||||
|
color="{{ computed.loadingColor({ checked, activeColor, inactiveColor }) }}"
|
||||||
|
custom-class="van-switch__loading"
|
||||||
|
/>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
26
dist/switch/index.wxs
vendored
Normal file
26
dist/switch/index.wxs
vendored
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
/* eslint-disable */
|
||||||
|
var style = require('../wxs/style.wxs');
|
||||||
|
var addUnit = require('../wxs/add-unit.wxs');
|
||||||
|
|
||||||
|
function rootStyle(data) {
|
||||||
|
var currentColor = data.checked ? data.activeColor : data.inactiveColor;
|
||||||
|
|
||||||
|
return style({
|
||||||
|
'font-size': addUnit(data.size),
|
||||||
|
'background-color': currentColor,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
var BLUE = '#1989fa';
|
||||||
|
var GRAY_DARK = '#969799';
|
||||||
|
|
||||||
|
function loadingColor(data) {
|
||||||
|
return data.checked
|
||||||
|
? data.activeColor || BLUE
|
||||||
|
: data.inactiveColor || GRAY_DARK;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
rootStyle: rootStyle,
|
||||||
|
loadingColor: loadingColor,
|
||||||
|
};
|
9
dist/tab/index.js
vendored
9
dist/tab/index.js
vendored
@ -1,10 +1,7 @@
|
|||||||
|
import { useParent } from '../common/relation';
|
||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
VantComponent({
|
VantComponent({
|
||||||
relation: {
|
relation: useParent('tabs'),
|
||||||
name: 'tabs',
|
|
||||||
type: 'ancestor',
|
|
||||||
current: 'tab',
|
|
||||||
},
|
|
||||||
props: {
|
props: {
|
||||||
dot: {
|
dot: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
@ -27,7 +24,7 @@ VantComponent({
|
|||||||
observer: 'update',
|
observer: 'update',
|
||||||
},
|
},
|
||||||
name: {
|
name: {
|
||||||
type: [Number, String],
|
type: null,
|
||||||
value: '',
|
value: '',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
9
dist/tabbar-item/index.js
vendored
9
dist/tabbar-item/index.js
vendored
@ -1,4 +1,5 @@
|
|||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
|
import { useParent } from '../common/relation';
|
||||||
VantComponent({
|
VantComponent({
|
||||||
props: {
|
props: {
|
||||||
info: null,
|
info: null,
|
||||||
@ -10,13 +11,11 @@ VantComponent({
|
|||||||
value: 'van-icon',
|
value: 'van-icon',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
relation: {
|
relation: useParent('tabbar'),
|
||||||
name: 'tabbar',
|
|
||||||
type: 'ancestor',
|
|
||||||
current: 'tabbar-item',
|
|
||||||
},
|
|
||||||
data: {
|
data: {
|
||||||
active: false,
|
active: false,
|
||||||
|
activeColor: '',
|
||||||
|
inactiveColor: '',
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onClick() {
|
onClick() {
|
||||||
|
18
dist/tabbar/index.js
vendored
18
dist/tabbar/index.js
vendored
@ -1,18 +1,10 @@
|
|||||||
import { getRect } from '../common/utils';
|
|
||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
|
import { useChildren } from '../common/relation';
|
||||||
|
import { getRect } from '../common/utils';
|
||||||
VantComponent({
|
VantComponent({
|
||||||
relation: {
|
relation: useChildren('tabbar-item', function () {
|
||||||
name: 'tabbar-item',
|
this.updateChildren();
|
||||||
type: 'descendant',
|
}),
|
||||||
current: 'tabbar',
|
|
||||||
linked(target) {
|
|
||||||
target.parent = this;
|
|
||||||
target.updateFromParent();
|
|
||||||
},
|
|
||||||
unlinked() {
|
|
||||||
this.updateChildren();
|
|
||||||
},
|
|
||||||
},
|
|
||||||
props: {
|
props: {
|
||||||
active: {
|
active: {
|
||||||
type: null,
|
type: null,
|
||||||
|
26
dist/tabs/index.js
vendored
26
dist/tabs/index.js
vendored
@ -8,25 +8,13 @@ import {
|
|||||||
requestAnimationFrame,
|
requestAnimationFrame,
|
||||||
} from '../common/utils';
|
} from '../common/utils';
|
||||||
import { isDef } from '../common/validator';
|
import { isDef } from '../common/validator';
|
||||||
|
import { useChildren } from '../common/relation';
|
||||||
VantComponent({
|
VantComponent({
|
||||||
mixins: [touch],
|
mixins: [touch],
|
||||||
classes: ['nav-class', 'tab-class', 'tab-active-class', 'line-class'],
|
classes: ['nav-class', 'tab-class', 'tab-active-class', 'line-class'],
|
||||||
relation: {
|
relation: useChildren('tab', function () {
|
||||||
name: 'tab',
|
this.updateTabs();
|
||||||
type: 'descendant',
|
}),
|
||||||
current: 'tabs',
|
|
||||||
linked(target) {
|
|
||||||
target.index = this.children.length - 1;
|
|
||||||
this.updateTabs();
|
|
||||||
},
|
|
||||||
unlinked() {
|
|
||||||
this.children = this.children.map((child, index) => {
|
|
||||||
child.index = index;
|
|
||||||
return child;
|
|
||||||
});
|
|
||||||
this.updateTabs();
|
|
||||||
},
|
|
||||||
},
|
|
||||||
props: {
|
props: {
|
||||||
sticky: Boolean,
|
sticky: Boolean,
|
||||||
border: Boolean,
|
border: Boolean,
|
||||||
@ -43,16 +31,16 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
lineWidth: {
|
lineWidth: {
|
||||||
type: [String, Number],
|
type: null,
|
||||||
value: 40,
|
value: 40,
|
||||||
observer: 'resize',
|
observer: 'resize',
|
||||||
},
|
},
|
||||||
lineHeight: {
|
lineHeight: {
|
||||||
type: [String, Number],
|
type: null,
|
||||||
value: -1,
|
value: -1,
|
||||||
},
|
},
|
||||||
active: {
|
active: {
|
||||||
type: [String, Number],
|
type: null,
|
||||||
value: 0,
|
value: 0,
|
||||||
observer(name) {
|
observer(name) {
|
||||||
if (name !== this.getCurrentName()) {
|
if (name !== this.getCurrentName()) {
|
||||||
|
3
dist/tag/index.wxml
vendored
3
dist/tag/index.wxml
vendored
@ -1,8 +1,9 @@
|
|||||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
|
|
||||||
<view
|
<view
|
||||||
class="custom-class {{ utils.bem('tag', [type, size, { mark, plain, round }]) }}"
|
class="custom-class {{ utils.bem('tag', [type, size, { mark, plain, round }]) }}"
|
||||||
style="{{ color && !plain ? 'background-color: ' + color + ';' : '' }}{{ textColor || (color && plain) ? 'color: ' + (textColor || color) : '' }}"
|
style="{{ computed.rootStyle({ plain, color, textColor }) }}"
|
||||||
>
|
>
|
||||||
<slot />
|
<slot />
|
||||||
<van-icon
|
<van-icon
|
||||||
|
13
dist/tag/index.wxs
vendored
Normal file
13
dist/tag/index.wxs
vendored
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
/* eslint-disable */
|
||||||
|
var style = require('../wxs/style.wxs');
|
||||||
|
|
||||||
|
function rootStyle(data) {
|
||||||
|
return style({
|
||||||
|
'background-color': data.plain ? '' : data.color,
|
||||||
|
color: data.textColor || data.plain ? data.textColor || data.color : '',
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
rootStyle: rootStyle,
|
||||||
|
};
|
4
dist/transition/index.wxml
vendored
4
dist/transition/index.wxml
vendored
@ -1,7 +1,9 @@
|
|||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
|
|
||||||
<view
|
<view
|
||||||
wx:if="{{ inited }}"
|
wx:if="{{ inited }}"
|
||||||
class="van-transition custom-class {{ classes }}"
|
class="van-transition custom-class {{ classes }}"
|
||||||
style="-webkit-transition-duration:{{ currentDuration }}ms; transition-duration:{{ currentDuration }}ms; {{ display ? '' : 'display: none;' }} {{ customStyle }}"
|
style="{{ computed.rootStyle({ currentDuration, display, customStyle }) }}"
|
||||||
bind:transitionend="onTransitionEnd"
|
bind:transitionend="onTransitionEnd"
|
||||||
>
|
>
|
||||||
<slot />
|
<slot />
|
||||||
|
17
dist/transition/index.wxs
vendored
Normal file
17
dist/transition/index.wxs
vendored
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
/* eslint-disable */
|
||||||
|
var style = require('../wxs/style.wxs');
|
||||||
|
|
||||||
|
function rootStyle(data) {
|
||||||
|
return style([
|
||||||
|
{
|
||||||
|
'-webkit-transition-duration': data.currentDuration + 'ms',
|
||||||
|
'transition-duration': data.currentDuration + 'ms',
|
||||||
|
},
|
||||||
|
data.display ? null : 'display: none',
|
||||||
|
data.customStyle,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
rootStyle: rootStyle,
|
||||||
|
};
|
2
dist/tree-select/index.js
vendored
2
dist/tree-select/index.js
vendored
@ -20,7 +20,7 @@ VantComponent({
|
|||||||
observer: 'updateSubItems',
|
observer: 'updateSubItems',
|
||||||
},
|
},
|
||||||
height: {
|
height: {
|
||||||
type: [Number, String],
|
type: null,
|
||||||
value: 300,
|
value: 300,
|
||||||
},
|
},
|
||||||
max: {
|
max: {
|
||||||
|
2
dist/uploader/index.js
vendored
2
dist/uploader/index.js
vendored
@ -17,7 +17,7 @@ VantComponent({
|
|||||||
value: 80,
|
value: 80,
|
||||||
},
|
},
|
||||||
name: {
|
name: {
|
||||||
type: [Number, String],
|
type: null,
|
||||||
value: '',
|
value: '',
|
||||||
},
|
},
|
||||||
accept: {
|
accept: {
|
||||||
|
9
dist/uploader/index.wxml
vendored
9
dist/uploader/index.wxml
vendored
@ -1,4 +1,5 @@
|
|||||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
|
|
||||||
<view class="van-uploader">
|
<view class="van-uploader">
|
||||||
<view class="van-uploader__wrapper">
|
<view class="van-uploader__wrapper">
|
||||||
@ -17,7 +18,7 @@
|
|||||||
src="{{ item.thumb || item.url }}"
|
src="{{ item.thumb || item.url }}"
|
||||||
alt="{{ item.name || ('图片' + index) }}"
|
alt="{{ item.name || ('图片' + index) }}"
|
||||||
class="van-uploader__preview-image"
|
class="van-uploader__preview-image"
|
||||||
style="width: {{ utils.addUnit(previewSize) }}; height: {{ utils.addUnit(previewSize) }};"
|
style="{{ computed.sizeStyle({ previewSize }) }}"
|
||||||
data-index="{{ index }}"
|
data-index="{{ index }}"
|
||||||
bind:tap="onPreviewImage"
|
bind:tap="onPreviewImage"
|
||||||
/>
|
/>
|
||||||
@ -28,7 +29,7 @@
|
|||||||
poster="{{ item.thumb }}"
|
poster="{{ item.thumb }}"
|
||||||
autoplay="{{ item.autoplay }}"
|
autoplay="{{ item.autoplay }}"
|
||||||
class="van-uploader__preview-image"
|
class="van-uploader__preview-image"
|
||||||
style="width: {{ utils.addUnit(previewSize) }}; height: {{ utils.addUnit(previewSize) }};"
|
style="{{ computed.sizeStyle({ previewSize }) }}"
|
||||||
data-index="{{ index }}"
|
data-index="{{ index }}"
|
||||||
bind:tap="onPreviewVideo"
|
bind:tap="onPreviewVideo"
|
||||||
>
|
>
|
||||||
@ -36,7 +37,7 @@
|
|||||||
<view
|
<view
|
||||||
wx:else
|
wx:else
|
||||||
class="van-uploader__file"
|
class="van-uploader__file"
|
||||||
style="width: {{ utils.addUnit(previewSize) }}; height: {{ utils.addUnit(previewSize) }};"
|
style="{{ computed.sizeStyle({ previewSize }) }}"
|
||||||
>
|
>
|
||||||
<van-icon name="description" class="van-uploader__file-icon" />
|
<van-icon name="description" class="van-uploader__file-icon" />
|
||||||
<view class="van-uploader__file-name van-ellipsis">{{ item.name || item.url }}</view>
|
<view class="van-uploader__file-name van-ellipsis">{{ item.name || item.url }}</view>
|
||||||
@ -69,7 +70,7 @@
|
|||||||
<view
|
<view
|
||||||
wx:if="{{ showUpload }}"
|
wx:if="{{ showUpload }}"
|
||||||
class="van-uploader__upload {{ disabled ? 'van-uploader__upload--disabled': ''}}"
|
class="van-uploader__upload {{ disabled ? 'van-uploader__upload--disabled': ''}}"
|
||||||
style="width: {{ utils.addUnit(previewSize) }}; height: {{ utils.addUnit(previewSize) }};"
|
style="{{ computed.sizeStyle({ previewSize }) }}"
|
||||||
bindtap="startUpload"
|
bindtap="startUpload"
|
||||||
>
|
>
|
||||||
<van-icon name="{{ uploadIcon }}" class="van-uploader__upload-icon" />
|
<van-icon name="{{ uploadIcon }}" class="van-uploader__upload-icon" />
|
||||||
|
14
dist/uploader/index.wxs
vendored
Normal file
14
dist/uploader/index.wxs
vendored
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
/* eslint-disable */
|
||||||
|
var style = require('../wxs/style.wxs');
|
||||||
|
var addUnit = require('../wxs/add-unit.wxs');
|
||||||
|
|
||||||
|
function sizeStyle(data) {
|
||||||
|
return style({
|
||||||
|
width: addUnit(data.previewSize),
|
||||||
|
height: addUnit(data.previewSize),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
sizeStyle: sizeStyle,
|
||||||
|
};
|
2
dist/wxs/add-unit.wxs
vendored
2
dist/wxs/add-unit.wxs
vendored
@ -1,5 +1,5 @@
|
|||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
var REGEXP = getRegExp('^\d+(\.\d+)?$');
|
var REGEXP = getRegExp('^-?\d+(\.\d+)?$');
|
||||||
|
|
||||||
function addUnit(value) {
|
function addUnit(value) {
|
||||||
if (value == null) {
|
if (value == null) {
|
||||||
|
4
dist/wxs/style.wxs
vendored
4
dist/wxs/style.wxs
vendored
@ -6,7 +6,7 @@ function style(styles) {
|
|||||||
if (array.isArray(styles)) {
|
if (array.isArray(styles)) {
|
||||||
return styles
|
return styles
|
||||||
.filter(function (item) {
|
.filter(function (item) {
|
||||||
return item != null;
|
return item != null && item !== '';
|
||||||
})
|
})
|
||||||
.map(function (item) {
|
.map(function (item) {
|
||||||
return style(item);
|
return style(item);
|
||||||
@ -18,7 +18,7 @@ function style(styles) {
|
|||||||
return object
|
return object
|
||||||
.keys(styles)
|
.keys(styles)
|
||||||
.filter(function (key) {
|
.filter(function (key) {
|
||||||
return styles[key] != null;
|
return styles[key] != null && styles[key] !== '';
|
||||||
})
|
})
|
||||||
.map(function (key) {
|
.map(function (key) {
|
||||||
return [key, [styles[key]]].join(':');
|
return [key, [styles[key]]].join(':');
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
hover-class="van-button--active hover-class"
|
hover-class="van-button--active hover-class"
|
||||||
lang="{{ lang }}"
|
lang="{{ lang }}"
|
||||||
form-type="{{ formType }}"
|
form-type="{{ formType }}"
|
||||||
style="{{ computed.rootStyle({ plain, color }) }} {{ customStyle }}"
|
style="{{ computed.rootStyle({ plain, color, customStyle }) }}"
|
||||||
open-type="{{ disabled ? '' : openType }}"
|
open-type="{{ disabled ? '' : openType }}"
|
||||||
business-id="{{ businessId }}"
|
business-id="{{ businessId }}"
|
||||||
session-from="{{ sessionFrom }}"
|
session-from="{{ sessionFrom }}"
|
||||||
|
@ -3,7 +3,7 @@ var style = require('../wxs/style.wxs');
|
|||||||
|
|
||||||
function rootStyle(data) {
|
function rootStyle(data) {
|
||||||
if (!data.color) {
|
if (!data.color) {
|
||||||
return '';
|
return data.customStyle;
|
||||||
}
|
}
|
||||||
|
|
||||||
var properties = {
|
var properties = {
|
||||||
@ -18,7 +18,7 @@ function rootStyle(data) {
|
|||||||
properties['border-color'] = data.color;
|
properties['border-color'] = data.color;
|
||||||
}
|
}
|
||||||
|
|
||||||
return style(properties);
|
return style([properties, data.customStyle]);
|
||||||
}
|
}
|
||||||
|
|
||||||
function loadingColor(data) {
|
function loadingColor(data) {
|
||||||
|
@ -22,13 +22,13 @@ component_1.VantComponent({
|
|||||||
observer: 'setDays',
|
observer: 'setDays',
|
||||||
},
|
},
|
||||||
showMark: Boolean,
|
showMark: Boolean,
|
||||||
rowHeight: [Number, String],
|
rowHeight: null,
|
||||||
formatter: {
|
formatter: {
|
||||||
type: null,
|
type: null,
|
||||||
observer: 'setDays',
|
observer: 'setDays',
|
||||||
},
|
},
|
||||||
currentDate: {
|
currentDate: {
|
||||||
type: [null, Array],
|
type: null,
|
||||||
observer: 'setDays',
|
observer: 'setDays',
|
||||||
},
|
},
|
||||||
allowSameDay: Boolean,
|
allowSameDay: Boolean,
|
||||||
|
@ -42,7 +42,7 @@ component_1.VantComponent({
|
|||||||
},
|
},
|
||||||
rangePrompt: String,
|
rangePrompt: String,
|
||||||
defaultDate: {
|
defaultDate: {
|
||||||
type: [Number, Array],
|
type: null,
|
||||||
observer: function (val) {
|
observer: function (val) {
|
||||||
this.setData({ currentDate: val });
|
this.setData({ currentDate: val });
|
||||||
this.scrollIntoView();
|
this.scrollIntoView();
|
||||||
@ -72,7 +72,7 @@ component_1.VantComponent({
|
|||||||
value: 'bottom',
|
value: 'bottom',
|
||||||
},
|
},
|
||||||
rowHeight: {
|
rowHeight: {
|
||||||
type: [Number, String],
|
type: null,
|
||||||
value: utils_1.ROW_HEIGHT,
|
value: utils_1.ROW_HEIGHT,
|
||||||
},
|
},
|
||||||
round: {
|
round: {
|
||||||
@ -108,7 +108,7 @@ component_1.VantComponent({
|
|||||||
value: true,
|
value: true,
|
||||||
},
|
},
|
||||||
maxRange: {
|
maxRange: {
|
||||||
type: [Number, String],
|
type: null,
|
||||||
value: null,
|
value: null,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
|
|
||||||
<view
|
<view
|
||||||
class="custom-class {{ utils.bem('cell', [size, { center, required, borderless: !border, clickable: isLink || clickable }]) }}"
|
class="custom-class {{ utils.bem('cell', [size, { center, required, borderless: !border, clickable: isLink || clickable }]) }}"
|
||||||
@ -16,7 +17,7 @@
|
|||||||
<slot wx:else name="icon" />
|
<slot wx:else name="icon" />
|
||||||
|
|
||||||
<view
|
<view
|
||||||
style="{{ (titleWidth ? 'max-width:' + titleWidth + ';min-width:' + titleWidth + ';' : '') + titleStyle }}"
|
style="{{ computed.titleStyle({ titleWidth, titleStyle }) }}"
|
||||||
class="van-cell__title title-class"
|
class="van-cell__title title-class"
|
||||||
>
|
>
|
||||||
<block wx:if="{{ title }}">{{ title }}</block>
|
<block wx:if="{{ title }}">{{ title }}</block>
|
||||||
|
17
lib/cell/index.wxs
Normal file
17
lib/cell/index.wxs
Normal file
@ -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,
|
||||||
|
};
|
@ -1,16 +1,12 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
Object.defineProperty(exports, '__esModule', { value: true });
|
Object.defineProperty(exports, '__esModule', { value: true });
|
||||||
|
var relation_1 = require('../common/relation');
|
||||||
var component_1 = require('../common/component');
|
var component_1 = require('../common/component');
|
||||||
component_1.VantComponent({
|
component_1.VantComponent({
|
||||||
field: true,
|
field: true,
|
||||||
relation: {
|
relation: relation_1.useChildren('checkbox', function (target) {
|
||||||
name: 'checkbox',
|
this.updateChild(target);
|
||||||
type: 'descendant',
|
}),
|
||||||
current: 'checkbox-group',
|
|
||||||
linked: function (target) {
|
|
||||||
this.updateChild(target);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
props: {
|
props: {
|
||||||
max: Number,
|
max: Number,
|
||||||
value: {
|
value: {
|
||||||
@ -25,7 +21,7 @@ component_1.VantComponent({
|
|||||||
methods: {
|
methods: {
|
||||||
updateChildren: function () {
|
updateChildren: function () {
|
||||||
var _this = this;
|
var _this = this;
|
||||||
(this.children || []).forEach(function (child) {
|
this.children.forEach(function (child) {
|
||||||
return _this.updateChild(child);
|
return _this.updateChild(child);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
Object.defineProperty(exports, '__esModule', { value: true });
|
Object.defineProperty(exports, '__esModule', { value: true });
|
||||||
|
var relation_1 = require('../common/relation');
|
||||||
var component_1 = require('../common/component');
|
var component_1 = require('../common/component');
|
||||||
function emit(target, value) {
|
function emit(target, value) {
|
||||||
target.$emit('input', value);
|
target.$emit('input', value);
|
||||||
@ -7,11 +8,7 @@ function emit(target, value) {
|
|||||||
}
|
}
|
||||||
component_1.VantComponent({
|
component_1.VantComponent({
|
||||||
field: true,
|
field: true,
|
||||||
relation: {
|
relation: relation_1.useParent('checkbox-group'),
|
||||||
name: 'checkbox-group',
|
|
||||||
type: 'ancestor',
|
|
||||||
current: 'checkbox',
|
|
||||||
},
|
|
||||||
classes: ['icon-class', 'label-class'],
|
classes: ['icon-class', 'label-class'],
|
||||||
props: {
|
props: {
|
||||||
value: Boolean,
|
value: Boolean,
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user