fix(VantComponent): remove optionalTypes (#4501)

* fix(VantComponent): remove optionalTypes

* fix: reset project.config.json
This commit is contained in:
nemo-shen 2021-09-18 10:02:06 +08:00 committed by GitHub
parent 5fcb206f2a
commit 3afe10c0f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
14 changed files with 17 additions and 33 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -33,10 +33,9 @@ VantComponent({
value: '40%',
},
rowWidth: {
type: String,
optionalTypes: [Array],
type: null,
value: '100%',
observer(val: string | string[]) {
observer(val) {
this.setData({ isArray: val instanceof Array });
},
},

View File

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

View File

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

View File

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

View File

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

View File

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