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