mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 10:22:44 +08:00
build: compile 1.10.3
This commit is contained in:
parent
0d61b6283a
commit
45e307903e
5
dist/area/index.js
vendored
5
dist/area/index.js
vendored
@ -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;
|
||||
|
2
dist/area/index.wxml
vendored
2
dist/area/index.wxml
vendored
@ -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 }}"
|
||||
|
1
dist/calendar/index.wxs
vendored
1
dist/calendar/index.wxs
vendored
@ -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());
|
||||
|
1
dist/collapse-item/index.js
vendored
1
dist/collapse-item/index.js
vendored
@ -5,6 +5,7 @@ VantComponent({
|
||||
classes: ['title-class', 'content-class'],
|
||||
relation: useParent('collapse'),
|
||||
props: {
|
||||
size: String,
|
||||
name: null,
|
||||
title: null,
|
||||
value: null,
|
||||
|
1
dist/collapse-item/index.wxml
vendored
1
dist/collapse-item/index.wxml
vendored
@ -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 }}"
|
||||
|
3
dist/common/utils.d.ts
vendored
3
dist/common/utils.d.ts
vendored
@ -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[]>;
|
||||
|
2
dist/icon/index.wxss
vendored
2
dist/icon/index.wxss
vendored
File diff suppressed because one or more lines are too long
6
dist/notice-bar/index.js
vendored
6
dist/notice-bar/index.js
vendored
@ -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(),
|
||||
});
|
||||
|
5
dist/uploader/index.wxs
vendored
5
dist/uploader/index.wxs
vendored
@ -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),
|
||||
});
|
||||
|
@ -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;
|
||||
|
@ -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 }}"
|
||||
|
@ -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());
|
||||
|
@ -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,
|
||||
|
@ -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 }}"
|
||||
|
3
lib/common/utils.d.ts
vendored
3
lib/common/utils.d.ts
vendored
@ -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
@ -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(),
|
||||
});
|
||||
|
@ -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),
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user