build: compile 1.10.3

This commit is contained in:
chenjiahan 2022-05-02 10:50:10 +08:00
parent 0d61b6283a
commit 45e307903e
18 changed files with 35 additions and 18 deletions

5
dist/area/index.js vendored
View File

@ -4,7 +4,10 @@ import { requestAnimationFrame } from '../common/utils';
const EMPTY_CODE = '000000';
VantComponent({
classes: ['active-class', 'toolbar-class', 'column-class'],
props: Object.assign(Object.assign({}, pickerProps), { value: {
props: Object.assign(Object.assign({}, pickerProps), { showToolbar: {
type: Boolean,
value: true,
}, value: {
type: String,
observer(value) {
this.code = value;

View File

@ -5,7 +5,7 @@
active-class="active-class"
toolbar-class="toolbar-class"
column-class="column-class"
show-toolbar
show-toolbar="{{ showToolbar }}"
value-key="name"
title="{{ title }}"
loading="{{ loading }}"

View File

@ -6,7 +6,6 @@ function getMonths(minDate, maxDate) {
var cursor = getDate(minDate);
cursor.setDate(1);
cursor.setMinutes(cursor.getMinutes() - cursor.getTimezoneOffset());
do {
months.push(cursor.getTime());

View File

@ -5,6 +5,7 @@ VantComponent({
classes: ['title-class', 'content-class'],
relation: useParent('collapse'),
props: {
size: String,
name: null,
title: null,
value: null,

View File

@ -2,6 +2,7 @@
<view class="van-collapse-item custom-class {{ index !== 0 ? 'van-hairline--top' : '' }}">
<van-cell
size="{{ size }}"
title="{{ title }}"
title-class="title-class"
icon="{{ icon }}"

View File

@ -1,10 +1,11 @@
/// <reference types="miniprogram-api-typings" />
/// <reference types="node" />
export { isDef } from './validator';
export declare function range(num: number, min: number, max: number): number;
export declare function nextTick(cb: (...args: any[]) => void): void;
export declare function getSystemInfoSync(): WechatMiniprogram.SystemInfo;
export declare function addUnit(value?: string | number): string | undefined;
export declare function requestAnimationFrame(cb: () => void): number | WechatMiniprogram.NodesRef;
export declare function requestAnimationFrame(cb: () => void): NodeJS.Timeout | WechatMiniprogram.NodesRef;
export declare function pickExclude(obj: unknown, keys: string[]): {};
export declare function getRect(context: WechatMiniprogram.Component.TrivialInstance, selector: string): Promise<WechatMiniprogram.BoundingClientRectCallbackResult>;
export declare function getAllRect(context: WechatMiniprogram.Component.TrivialInstance, selector: string): Promise<WechatMiniprogram.BoundingClientRectCallbackResult[]>;

File diff suppressed because one or more lines are too long

View File

@ -79,17 +79,17 @@ VantComponent({
timingFunction: 'linear',
delay,
});
this.scroll();
this.scroll(true);
}
});
});
},
scroll() {
scroll(isInit = false) {
this.timer && clearTimeout(this.timer);
this.timer = null;
this.setData({
animationData: this.resetAnimation
.translateX(this.wrapWidth)
.translateX(isInit ? 0 : this.wrapWidth)
.step()
.export(),
});

View File

@ -3,7 +3,10 @@ var style = require('../wxs/style.wxs');
var addUnit = require('../wxs/add-unit.wxs');
function sizeStyle(data) {
return style({
return "Array" === data.previewSize.constructor ? style({
width: addUnit(data.previewSize[0]),
height: addUnit(data.previewSize[1]),
}) : style({
width: addUnit(data.previewSize),
height: addUnit(data.previewSize),
});

View File

@ -17,7 +17,10 @@ var utils_1 = require("../common/utils");
var EMPTY_CODE = '000000';
(0, component_1.VantComponent)({
classes: ['active-class', 'toolbar-class', 'column-class'],
props: __assign(__assign({}, shared_1.pickerProps), { value: {
props: __assign(__assign({}, shared_1.pickerProps), { showToolbar: {
type: Boolean,
value: true,
}, value: {
type: String,
observer: function (value) {
this.code = value;

View File

@ -5,7 +5,7 @@
active-class="active-class"
toolbar-class="toolbar-class"
column-class="column-class"
show-toolbar
show-toolbar="{{ showToolbar }}"
value-key="name"
title="{{ title }}"
loading="{{ loading }}"

View File

@ -6,7 +6,6 @@ function getMonths(minDate, maxDate) {
var cursor = getDate(minDate);
cursor.setDate(1);
cursor.setMinutes(cursor.getMinutes() - cursor.getTimezoneOffset());
do {
months.push(cursor.getTime());

View File

@ -7,6 +7,7 @@ var animate_1 = require("./animate");
classes: ['title-class', 'content-class'],
relation: (0, relation_1.useParent)('collapse'),
props: {
size: String,
name: null,
title: null,
value: null,

View File

@ -2,6 +2,7 @@
<view class="van-collapse-item custom-class {{ index !== 0 ? 'van-hairline--top' : '' }}">
<van-cell
size="{{ size }}"
title="{{ title }}"
title-class="title-class"
icon="{{ icon }}"

View File

@ -1,10 +1,11 @@
/// <reference types="miniprogram-api-typings" />
/// <reference types="node" />
export { isDef } from './validator';
export declare function range(num: number, min: number, max: number): number;
export declare function nextTick(cb: (...args: any[]) => void): void;
export declare function getSystemInfoSync(): WechatMiniprogram.SystemInfo;
export declare function addUnit(value?: string | number): string | undefined;
export declare function requestAnimationFrame(cb: () => void): number | WechatMiniprogram.NodesRef;
export declare function requestAnimationFrame(cb: () => void): NodeJS.Timeout | WechatMiniprogram.NodesRef;
export declare function pickExclude(obj: unknown, keys: string[]): {};
export declare function getRect(context: WechatMiniprogram.Component.TrivialInstance, selector: string): Promise<WechatMiniprogram.BoundingClientRectCallbackResult>;
export declare function getAllRect(context: WechatMiniprogram.Component.TrivialInstance, selector: string): Promise<WechatMiniprogram.BoundingClientRectCallbackResult[]>;

File diff suppressed because one or more lines are too long

View File

@ -82,18 +82,19 @@ var utils_1 = require("../common/utils");
timingFunction: 'linear',
delay: delay,
});
_this.scroll();
_this.scroll(true);
}
});
});
},
scroll: function () {
scroll: function (isInit) {
var _this = this;
if (isInit === void 0) { isInit = false; }
this.timer && clearTimeout(this.timer);
this.timer = null;
this.setData({
animationData: this.resetAnimation
.translateX(this.wrapWidth)
.translateX(isInit ? 0 : this.wrapWidth)
.step()
.export(),
});

View File

@ -3,7 +3,10 @@ var style = require('../wxs/style.wxs');
var addUnit = require('../wxs/add-unit.wxs');
function sizeStyle(data) {
return style({
return "Array" === data.previewSize.constructor ? style({
width: addUnit(data.previewSize[0]),
height: addUnit(data.previewSize[1]),
}) : style({
width: addUnit(data.previewSize),
height: addUnit(data.previewSize),
});