build: compile 1.8.5

This commit is contained in:
nemo-shen 2021-09-15 10:05:59 +08:00
parent df2f297541
commit 9450660ada
30 changed files with 62 additions and 34 deletions

3
dist/area/index.js vendored
View File

@ -18,7 +18,8 @@ VantComponent({
observer: 'setValues', observer: 'setValues',
}, },
columnsNum: { columnsNum: {
type: null, type: Number,
optionalTypes: [String],
value: 3, value: 3,
}, },
columnsPlaceholder: { columnsPlaceholder: {

View File

@ -317,7 +317,6 @@ VantComponent({
if (maxRange && calcDateNum(date) > maxRange) { if (maxRange && calcDateNum(date) > maxRange) {
if (showRangePrompt) { if (showRangePrompt) {
Toast({ Toast({
duration: 0,
context: this, context: this,
message: rangePrompt || `选择天数不能超过 ${maxRange}`, message: rangePrompt || `选择天数不能超过 ${maxRange}`,
}); });

View File

@ -23,7 +23,8 @@ VantComponent({
value: 'round', value: 'round',
}, },
iconSize: { iconSize: {
type: null, type: Number,
optionalTypes: [String],
value: 20, value: 20,
}, },
}, },

View File

@ -39,7 +39,8 @@ VantComponent({
value: WHITE, value: WHITE,
}, },
color: { color: {
type: null, type: String,
optionalTypes: [Object],
value: BLUE, value: BLUE,
observer() { observer() {
this.setHoverColor().then(() => { this.setHoverColor().then(() => {

3
dist/grid/index.js vendored
View File

@ -8,7 +8,8 @@ VantComponent({
observer: 'updateChildren', observer: 'updateChildren',
}, },
gutter: { gutter: {
type: null, type: Number,
optionalTypes: [String],
value: 0, value: 0,
observer: 'updateChildren', observer: 'updateChildren',
}, },

View File

@ -25,7 +25,7 @@ export const pageScrollMixin = (scroller) =>
detached() { detached() {
var _a; var _a;
const page = getCurrentPage(); const page = getCurrentPage();
if (!isDef(page)) { if (isDef(page)) {
page.vanPageScroller = page.vanPageScroller =
((_a = page.vanPageScroller) === null || _a === void 0 ((_a = page.vanPageScroller) === null || _a === void 0
? void 0 ? void 0

View File

@ -4,7 +4,8 @@ VantComponent({
show: Boolean, show: Boolean,
customStyle: String, customStyle: String,
duration: { duration: {
type: null, type: Number,
optionalTypes: [String],
value: 300, value: 300,
}, },
zIndex: { zIndex: {

View File

@ -24,8 +24,9 @@ VantComponent({
value: '#fff', value: '#fff',
}, },
strokeWidth: { strokeWidth: {
type: null, type: Number,
value: 4, value: 4,
optionalTypes: [String],
}, },
}, },
data: { data: {

3
dist/radio/index.js vendored
View File

@ -23,7 +23,8 @@ VantComponent({
value: 'round', value: 'round',
}, },
iconSize: { iconSize: {
type: null, type: Number,
optionalTypes: [String],
value: 20, value: 20,
}, },
}, },

View File

@ -33,7 +33,8 @@ VantComponent({
value: true, value: true,
}, },
duration: { duration: {
type: null, type: Number,
optionalTypes: [String],
value: 300, value: 300,
}, },
}, },

View File

@ -32,7 +32,8 @@ VantComponent({
value: '40%', value: '40%',
}, },
rowWidth: { rowWidth: {
type: null, type: String,
optionalTypes: [Array],
value: '100%', value: '100%',
observer(val) { observer(val) {
this.setData({ isArray: val instanceof Array }); this.setData({ isArray: val instanceof Array });

View File

@ -26,7 +26,8 @@ VantComponent({
}, },
asyncClose: Boolean, asyncClose: Boolean,
name: { name: {
type: null, type: String,
optionalTypes: [Number],
value: '', value: '',
}, },
}, },

6
dist/tabs/index.js vendored
View File

@ -31,12 +31,14 @@ VantComponent({
}, },
}, },
lineWidth: { lineWidth: {
type: null, type: Number,
optionalTypes: [String],
value: 40, value: 40,
observer: 'resize', observer: 'resize',
}, },
lineHeight: { lineHeight: {
type: null, type: Number,
optionalTypes: [String],
value: -1, value: -1,
}, },
active: { active: {

View File

@ -20,7 +20,8 @@ VantComponent({
observer: 'updateSubItems', observer: 'updateSubItems',
}, },
height: { height: {
type: null, type: Number,
optionalTypes: [String],
value: 300, value: 300,
}, },
max: { max: {

View File

@ -13,11 +13,13 @@ VantComponent({
afterRead: null, afterRead: null,
beforeRead: null, beforeRead: null,
previewSize: { previewSize: {
type: null, type: Number,
optionalTypes: [String],
value: 80, value: 80,
}, },
name: { name: {
type: null, type: String,
optionalTypes: [Number],
value: '', value: '',
}, },
accept: { accept: {

View File

@ -35,7 +35,8 @@ component_1.VantComponent({
observer: 'setValues', observer: 'setValues',
}, },
columnsNum: { columnsNum: {
type: null, type: Number,
optionalTypes: [String],
value: 3, value: 3,
}, },
columnsPlaceholder: { columnsPlaceholder: {

View File

@ -348,7 +348,6 @@ component_1.VantComponent({
if (maxRange && utils_1.calcDateNum(date) > maxRange) { if (maxRange && utils_1.calcDateNum(date) > maxRange) {
if (showRangePrompt) { if (showRangePrompt) {
toast_1.default({ toast_1.default({
duration: 0,
context: this, context: this,
message: message:
rangePrompt || rangePrompt ||

View File

@ -25,7 +25,8 @@ component_1.VantComponent({
value: 'round', value: 'round',
}, },
iconSize: { iconSize: {
type: null, type: Number,
optionalTypes: [String],
value: 20, value: 20,
}, },
}, },

View File

@ -41,7 +41,8 @@ component_1.VantComponent({
value: color_1.WHITE, value: color_1.WHITE,
}, },
color: { color: {
type: null, type: String,
optionalTypes: [Object],
value: color_1.BLUE, value: color_1.BLUE,
observer: function () { observer: function () {
var _this = this; var _this = this;

View File

@ -10,7 +10,8 @@ component_1.VantComponent({
observer: 'updateChildren', observer: 'updateChildren',
}, },
gutter: { gutter: {
type: null, type: Number,
optionalTypes: [String],
value: 0, value: 0,
observer: 'updateChildren', observer: 'updateChildren',
}, },

View File

@ -29,7 +29,7 @@ var pageScrollMixin = function (scroller) {
detached: function () { detached: function () {
var _a; var _a;
var page = utils_1.getCurrentPage(); var page = utils_1.getCurrentPage();
if (!utils_1.isDef(page)) { if (utils_1.isDef(page)) {
page.vanPageScroller = page.vanPageScroller =
((_a = page.vanPageScroller) === null || _a === void 0 ((_a = page.vanPageScroller) === null || _a === void 0
? void 0 ? void 0

View File

@ -6,7 +6,8 @@ component_1.VantComponent({
show: Boolean, show: Boolean,
customStyle: String, customStyle: String,
duration: { duration: {
type: null, type: Number,
optionalTypes: [String],
value: 300, value: 300,
}, },
zIndex: { zIndex: {

View File

@ -26,8 +26,9 @@ component_1.VantComponent({
value: '#fff', value: '#fff',
}, },
strokeWidth: { strokeWidth: {
type: null, type: Number,
value: 4, value: 4,
optionalTypes: [String],
}, },
}, },
data: { data: {

View File

@ -25,7 +25,8 @@ component_1.VantComponent({
value: 'round', value: 'round',
}, },
iconSize: { iconSize: {
type: null, type: Number,
optionalTypes: [String],
value: 20, value: 20,
}, },
}, },

View File

@ -35,7 +35,8 @@ component_1.VantComponent({
value: true, value: true,
}, },
duration: { duration: {
type: null, type: Number,
optionalTypes: [String],
value: 300, value: 300,
}, },
}, },

View File

@ -34,7 +34,8 @@ component_1.VantComponent({
value: '40%', value: '40%',
}, },
rowWidth: { rowWidth: {
type: null, type: String,
optionalTypes: [Array],
value: '100%', value: '100%',
observer: function (val) { observer: function (val) {
this.setData({ isArray: val instanceof Array }); this.setData({ isArray: val instanceof Array });

View File

@ -34,7 +34,8 @@ component_1.VantComponent({
}, },
asyncClose: Boolean, asyncClose: Boolean,
name: { name: {
type: null, type: String,
optionalTypes: [Number],
value: '', value: '',
}, },
}, },

View File

@ -28,12 +28,14 @@ component_1.VantComponent({
}, },
}, },
lineWidth: { lineWidth: {
type: null, type: Number,
optionalTypes: [String],
value: 40, value: 40,
observer: 'resize', observer: 'resize',
}, },
lineHeight: { lineHeight: {
type: null, type: Number,
optionalTypes: [String],
value: -1, value: -1,
}, },
active: { active: {

View File

@ -22,7 +22,8 @@ component_1.VantComponent({
observer: 'updateSubItems', observer: 'updateSubItems',
}, },
height: { height: {
type: null, type: Number,
optionalTypes: [String],
value: 300, value: 300,
}, },
max: { max: {

View File

@ -30,11 +30,13 @@ component_1.VantComponent({
afterRead: null, afterRead: null,
beforeRead: null, beforeRead: null,
previewSize: { previewSize: {
type: null, type: Number,
optionalTypes: [String],
value: 80, value: 80,
}, },
name: { name: {
type: null, type: String,
optionalTypes: [Number],
value: '', value: '',
}, },
accept: { accept: {