mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 10:22:44 +08:00
build: compile 1.10.11
This commit is contained in:
parent
6ca6bb896c
commit
7fdb7fbf03
4
dist/image/index.js
vendored
4
dist/image/index.js
vendored
@ -25,6 +25,10 @@ VantComponent({
|
||||
type: String,
|
||||
value: 'fill',
|
||||
},
|
||||
webp: {
|
||||
type: Boolean,
|
||||
value: false,
|
||||
},
|
||||
showError: {
|
||||
type: Boolean,
|
||||
value: true,
|
||||
|
1
dist/image/index.wxml
vendored
1
dist/image/index.wxml
vendored
@ -11,6 +11,7 @@
|
||||
src="{{ src }}"
|
||||
mode="{{ computed.mode(fit) }}"
|
||||
lazy-load="{{ lazyLoad }}"
|
||||
webp="{{ webp }}"
|
||||
class="image-class van-image__img"
|
||||
show-menu-by-longpress="{{ showMenuByLongpress }}"
|
||||
bind:load="onLoad"
|
||||
|
3
dist/mixins/transition.js
vendored
3
dist/mixins/transition.js
vendored
@ -49,6 +49,9 @@ export function transition(showDefaultValue) {
|
||||
const { duration, name } = this.data;
|
||||
const classNames = getClassNames(name);
|
||||
const currentDuration = isObj(duration) ? duration.enter : duration;
|
||||
if (this.status === 'enter') {
|
||||
return;
|
||||
}
|
||||
this.status = 'enter';
|
||||
this.$emit('before-enter');
|
||||
requestAnimationFrame(() => {
|
||||
|
3
dist/stepper/index.js
vendored
3
dist/stepper/index.js
vendored
@ -85,7 +85,7 @@ VantComponent({
|
||||
}
|
||||
},
|
||||
isDisabled(type) {
|
||||
const { disabled, disablePlus, disableMinus, currentValue, max, min, } = this.data;
|
||||
const { disabled, disablePlus, disableMinus, currentValue, max, min } = this.data;
|
||||
if (type === 'plus') {
|
||||
return disabled || disablePlus || currentValue >= max;
|
||||
}
|
||||
@ -96,6 +96,7 @@ VantComponent({
|
||||
},
|
||||
onBlur(event) {
|
||||
const value = this.format(event.detail.value);
|
||||
this.setData({ currentValue: value });
|
||||
this.$emit('blur', Object.assign(Object.assign({}, event.detail), { value }));
|
||||
},
|
||||
// filter illegal characters
|
||||
|
4
dist/steps/index.wxml
vendored
4
dist/steps/index.wxml
vendored
@ -20,7 +20,7 @@
|
||||
wx:if="{{ item.inactiveIcon || inactiveIcon }}"
|
||||
color="{{ status(index, active) === 'inactive' ? inactiveColor: activeColor }}"
|
||||
name="{{ item.inactiveIcon || inactiveIcon }}"
|
||||
custom-class="van-step__icon"
|
||||
class="van-step__icon"
|
||||
/>
|
||||
<view
|
||||
wx:else
|
||||
@ -29,7 +29,7 @@
|
||||
/>
|
||||
</block>
|
||||
|
||||
<van-icon wx:else name="{{ item.activeIcon || activeIcon }}" color="{{ activeColor }}" custom-class="van-step__icon" />
|
||||
<van-icon wx:else name="{{ item.activeIcon || activeIcon }}" color="{{ activeColor }}" class="van-step__icon" />
|
||||
</view>
|
||||
<view
|
||||
wx:if="{{ index !== steps.length - 1 }}"
|
||||
|
6
dist/uploader/index.js
vendored
6
dist/uploader/index.js
vendored
@ -1,9 +1,9 @@
|
||||
import { VantComponent } from '../common/component';
|
||||
import { isImageFile, chooseFile, isVideoFile } from './utils';
|
||||
import { chooseImageProps, chooseVideoProps, chooseMediaProps } from './shared';
|
||||
import { chooseImageProps, chooseVideoProps, chooseMediaProps, chooseMessageFileProps, } from './shared';
|
||||
import { isBoolean, isPromise } from '../common/validator';
|
||||
VantComponent({
|
||||
props: Object.assign(Object.assign(Object.assign({ disabled: Boolean, multiple: Boolean, uploadText: String, useBeforeRead: Boolean, afterRead: null, beforeRead: null, previewSize: {
|
||||
props: Object.assign(Object.assign(Object.assign(Object.assign({ disabled: Boolean, multiple: Boolean, uploadText: String, useBeforeRead: Boolean, afterRead: null, beforeRead: null, previewSize: {
|
||||
type: null,
|
||||
value: 80,
|
||||
}, name: {
|
||||
@ -40,7 +40,7 @@ VantComponent({
|
||||
}, uploadIcon: {
|
||||
type: String,
|
||||
value: 'photograph',
|
||||
} }, chooseImageProps), chooseVideoProps), chooseMediaProps),
|
||||
} }, chooseImageProps), chooseVideoProps), chooseMediaProps), chooseMessageFileProps),
|
||||
data: {
|
||||
lists: [],
|
||||
isInCount: true,
|
||||
|
3
dist/uploader/shared.d.ts
vendored
3
dist/uploader/shared.d.ts
vendored
@ -44,3 +44,6 @@ export declare const chooseMediaProps: {
|
||||
value: string;
|
||||
};
|
||||
};
|
||||
export declare const chooseMessageFileProps: {
|
||||
extension: null;
|
||||
};
|
||||
|
4
dist/uploader/shared.js
vendored
4
dist/uploader/shared.js
vendored
@ -47,3 +47,7 @@ export const chooseMediaProps = {
|
||||
value: 'back',
|
||||
},
|
||||
};
|
||||
// props for choose file
|
||||
export const chooseMessageFileProps = {
|
||||
extension: null,
|
||||
};
|
||||
|
3
dist/uploader/utils.d.ts
vendored
3
dist/uploader/utils.d.ts
vendored
@ -10,7 +10,7 @@ export interface File {
|
||||
}
|
||||
export declare function isImageFile(item: File): boolean;
|
||||
export declare function isVideoFile(item: File): boolean;
|
||||
export declare function chooseFile({ accept, multiple, capture, compressed, maxDuration, sizeType, camera, maxCount, mediaType, }: {
|
||||
export declare function chooseFile({ accept, multiple, capture, compressed, maxDuration, sizeType, camera, maxCount, mediaType, extension, }: {
|
||||
accept: any;
|
||||
multiple: any;
|
||||
capture: any;
|
||||
@ -20,4 +20,5 @@ export declare function chooseFile({ accept, multiple, capture, compressed, maxD
|
||||
camera: any;
|
||||
maxCount: any;
|
||||
mediaType: any;
|
||||
extension: any;
|
||||
}): Promise<File | File[]>;
|
||||
|
9
dist/uploader/utils.js
vendored
9
dist/uploader/utils.js
vendored
@ -38,7 +38,7 @@ function formatMedia(res) {
|
||||
function formatFile(res) {
|
||||
return res.tempFiles.map((item) => (Object.assign(Object.assign({}, pickExclude(item, ['path'])), { url: item.path })));
|
||||
}
|
||||
export function chooseFile({ accept, multiple, capture, compressed, maxDuration, sizeType, camera, maxCount, mediaType, }) {
|
||||
export function chooseFile({ accept, multiple, capture, compressed, maxDuration, sizeType, camera, maxCount, mediaType, extension, }) {
|
||||
return new Promise((resolve, reject) => {
|
||||
switch (accept) {
|
||||
case 'image':
|
||||
@ -73,12 +73,7 @@ export function chooseFile({ accept, multiple, capture, compressed, maxDuration,
|
||||
});
|
||||
break;
|
||||
default:
|
||||
wx.chooseMessageFile({
|
||||
count: multiple ? maxCount : 1,
|
||||
type: accept,
|
||||
success: (res) => resolve(formatFile(res)),
|
||||
fail: reject,
|
||||
});
|
||||
wx.chooseMessageFile(Object.assign(Object.assign({ count: multiple ? maxCount : 1, type: accept }, (extension ? { extension } : {})), { success: (res) => resolve(formatFile(res)), fail: reject }));
|
||||
break;
|
||||
}
|
||||
});
|
||||
|
@ -27,6 +27,10 @@ var button_1 = require("../mixins/button");
|
||||
type: String,
|
||||
value: 'fill',
|
||||
},
|
||||
webp: {
|
||||
type: Boolean,
|
||||
value: false,
|
||||
},
|
||||
showError: {
|
||||
type: Boolean,
|
||||
value: true,
|
||||
|
@ -11,6 +11,7 @@
|
||||
src="{{ src }}"
|
||||
mode="{{ computed.mode(fit) }}"
|
||||
lazy-load="{{ lazyLoad }}"
|
||||
webp="{{ webp }}"
|
||||
class="image-class van-image__img"
|
||||
show-menu-by-longpress="{{ showMenuByLongpress }}"
|
||||
bind:load="onLoad"
|
||||
|
@ -53,6 +53,9 @@ function transition(showDefaultValue) {
|
||||
var _a = this.data, duration = _a.duration, name = _a.name;
|
||||
var classNames = getClassNames(name);
|
||||
var currentDuration = (0, validator_1.isObj)(duration) ? duration.enter : duration;
|
||||
if (this.status === 'enter') {
|
||||
return;
|
||||
}
|
||||
this.status = 'enter';
|
||||
this.$emit('before-enter');
|
||||
(0, utils_1.requestAnimationFrame)(function () {
|
||||
|
@ -109,6 +109,7 @@ function equal(value1, value2) {
|
||||
},
|
||||
onBlur: function (event) {
|
||||
var value = this.format(event.detail.value);
|
||||
this.setData({ currentValue: value });
|
||||
this.$emit('blur', __assign(__assign({}, event.detail), { value: value }));
|
||||
},
|
||||
// filter illegal characters
|
||||
|
@ -20,7 +20,7 @@
|
||||
wx:if="{{ item.inactiveIcon || inactiveIcon }}"
|
||||
color="{{ status(index, active) === 'inactive' ? inactiveColor: activeColor }}"
|
||||
name="{{ item.inactiveIcon || inactiveIcon }}"
|
||||
custom-class="van-step__icon"
|
||||
class="van-step__icon"
|
||||
/>
|
||||
<view
|
||||
wx:else
|
||||
@ -29,7 +29,7 @@
|
||||
/>
|
||||
</block>
|
||||
|
||||
<van-icon wx:else name="{{ item.activeIcon || activeIcon }}" color="{{ activeColor }}" custom-class="van-step__icon" />
|
||||
<van-icon wx:else name="{{ item.activeIcon || activeIcon }}" color="{{ activeColor }}" class="van-step__icon" />
|
||||
</view>
|
||||
<view
|
||||
wx:if="{{ index !== steps.length - 1 }}"
|
||||
|
@ -16,7 +16,7 @@ var utils_1 = require("./utils");
|
||||
var shared_1 = require("./shared");
|
||||
var validator_1 = require("../common/validator");
|
||||
(0, component_1.VantComponent)({
|
||||
props: __assign(__assign(__assign({ disabled: Boolean, multiple: Boolean, uploadText: String, useBeforeRead: Boolean, afterRead: null, beforeRead: null, previewSize: {
|
||||
props: __assign(__assign(__assign(__assign({ disabled: Boolean, multiple: Boolean, uploadText: String, useBeforeRead: Boolean, afterRead: null, beforeRead: null, previewSize: {
|
||||
type: null,
|
||||
value: 80,
|
||||
}, name: {
|
||||
@ -53,7 +53,7 @@ var validator_1 = require("../common/validator");
|
||||
}, uploadIcon: {
|
||||
type: String,
|
||||
value: 'photograph',
|
||||
} }, shared_1.chooseImageProps), shared_1.chooseVideoProps), shared_1.chooseMediaProps),
|
||||
} }, shared_1.chooseImageProps), shared_1.chooseVideoProps), shared_1.chooseMediaProps), shared_1.chooseMessageFileProps),
|
||||
data: {
|
||||
lists: [],
|
||||
isInCount: true,
|
||||
|
3
lib/uploader/shared.d.ts
vendored
3
lib/uploader/shared.d.ts
vendored
@ -44,3 +44,6 @@ export declare const chooseMediaProps: {
|
||||
value: string;
|
||||
};
|
||||
};
|
||||
export declare const chooseMessageFileProps: {
|
||||
extension: null;
|
||||
};
|
||||
|
@ -1,6 +1,6 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.chooseMediaProps = exports.chooseVideoProps = exports.chooseImageProps = void 0;
|
||||
exports.chooseMessageFileProps = exports.chooseMediaProps = exports.chooseVideoProps = exports.chooseImageProps = void 0;
|
||||
// props for choose image
|
||||
exports.chooseImageProps = {
|
||||
sizeType: {
|
||||
@ -50,3 +50,7 @@ exports.chooseMediaProps = {
|
||||
value: 'back',
|
||||
},
|
||||
};
|
||||
// props for choose file
|
||||
exports.chooseMessageFileProps = {
|
||||
extension: null,
|
||||
};
|
||||
|
3
lib/uploader/utils.d.ts
vendored
3
lib/uploader/utils.d.ts
vendored
@ -10,7 +10,7 @@ export interface File {
|
||||
}
|
||||
export declare function isImageFile(item: File): boolean;
|
||||
export declare function isVideoFile(item: File): boolean;
|
||||
export declare function chooseFile({ accept, multiple, capture, compressed, maxDuration, sizeType, camera, maxCount, mediaType, }: {
|
||||
export declare function chooseFile({ accept, multiple, capture, compressed, maxDuration, sizeType, camera, maxCount, mediaType, extension, }: {
|
||||
accept: any;
|
||||
multiple: any;
|
||||
capture: any;
|
||||
@ -20,4 +20,5 @@ export declare function chooseFile({ accept, multiple, capture, compressed, maxD
|
||||
camera: any;
|
||||
maxCount: any;
|
||||
mediaType: any;
|
||||
extension: any;
|
||||
}): Promise<File | File[]>;
|
||||
|
@ -55,7 +55,7 @@ function formatFile(res) {
|
||||
return res.tempFiles.map(function (item) { return (__assign(__assign({}, (0, utils_1.pickExclude)(item, ['path'])), { url: item.path })); });
|
||||
}
|
||||
function chooseFile(_a) {
|
||||
var accept = _a.accept, multiple = _a.multiple, capture = _a.capture, compressed = _a.compressed, maxDuration = _a.maxDuration, sizeType = _a.sizeType, camera = _a.camera, maxCount = _a.maxCount, mediaType = _a.mediaType;
|
||||
var accept = _a.accept, multiple = _a.multiple, capture = _a.capture, compressed = _a.compressed, maxDuration = _a.maxDuration, sizeType = _a.sizeType, camera = _a.camera, maxCount = _a.maxCount, mediaType = _a.mediaType, extension = _a.extension;
|
||||
return new Promise(function (resolve, reject) {
|
||||
switch (accept) {
|
||||
case 'image':
|
||||
@ -90,12 +90,7 @@ function chooseFile(_a) {
|
||||
});
|
||||
break;
|
||||
default:
|
||||
wx.chooseMessageFile({
|
||||
count: multiple ? maxCount : 1,
|
||||
type: accept,
|
||||
success: function (res) { return resolve(formatFile(res)); },
|
||||
fail: reject,
|
||||
});
|
||||
wx.chooseMessageFile(__assign(__assign({ count: multiple ? maxCount : 1, type: accept }, (extension ? { extension: extension } : {})), { success: function (res) { return resolve(formatFile(res)); }, fail: reject }));
|
||||
break;
|
||||
}
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user