build: compile 1.8.6

This commit is contained in:
nemo-shen 2021-09-20 16:18:49 +08:00
parent 3afe10c0f9
commit 127cae1ba9
32 changed files with 42 additions and 68 deletions

3
dist/area/index.js vendored
View File

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

View File

@ -44,6 +44,10 @@ VantComponent({
type: String, type: String,
value: '确定', value: '确定',
}, },
confirmDisabledText: {
type: String,
value: '确定',
},
rangePrompt: String, rangePrompt: String,
showRangePrompt: { showRangePrompt: {
type: Boolean, type: Boolean,
@ -57,7 +61,6 @@ VantComponent({
}, },
}, },
allowSameDay: Boolean, allowSameDay: Boolean,
confirmDisabledText: String,
type: { type: {
type: String, type: String,
value: 'single', value: 'single',

View File

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

View File

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

3
dist/grid/index.js vendored
View File

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

View File

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

View File

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

3
dist/radio/index.js vendored
View File

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

View File

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

View File

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

View File

@ -23,9 +23,8 @@ VantComponent({
value: 1, value: 1,
}, },
value: { value: {
type: Number, type: null,
value: 0, value: 0,
optionalTypes: [Array],
observer(val) { observer(val) {
if (val !== this.value) { if (val !== this.value) {
this.updateValue(val); this.updateValue(val);

View File

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

6
dist/tabs/index.js vendored
View File

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

View File

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

View File

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

View File

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

View File

@ -46,6 +46,10 @@ component_1.VantComponent({
type: String, type: String,
value: '确定', value: '确定',
}, },
confirmDisabledText: {
type: String,
value: '确定',
},
rangePrompt: String, rangePrompt: String,
showRangePrompt: { showRangePrompt: {
type: Boolean, type: Boolean,
@ -59,7 +63,6 @@ component_1.VantComponent({
}, },
}, },
allowSameDay: Boolean, allowSameDay: Boolean,
confirmDisabledText: String,
type: { type: {
type: String, type: String,
value: 'single', value: 'single',

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -34,8 +34,7 @@ component_1.VantComponent({
value: '40%', value: '40%',
}, },
rowWidth: { rowWidth: {
type: String, type: null,
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

@ -25,9 +25,8 @@ component_1.VantComponent({
value: 1, value: 1,
}, },
value: { value: {
type: Number, type: null,
value: 0, value: 0,
optionalTypes: [Array],
observer: function (val) { observer: function (val) {
if (val !== this.value) { if (val !== this.value) {
this.updateValue(val); this.updateValue(val);

View File

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

View File

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

View File

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

View File

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