mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
fix(VantComponent): remove optionalTypes (#4501)
* fix(VantComponent): remove optionalTypes * fix: reset project.config.json
This commit is contained in:
parent
5fcb206f2a
commit
3afe10c0f9
@ -27,8 +27,7 @@ VantComponent({
|
||||
observer: 'setValues',
|
||||
},
|
||||
columnsNum: {
|
||||
type: Number,
|
||||
optionalTypes: [String],
|
||||
type: null,
|
||||
value: 3,
|
||||
},
|
||||
columnsPlaceholder: {
|
||||
|
@ -31,8 +31,7 @@ VantComponent({
|
||||
value: 'round',
|
||||
},
|
||||
iconSize: {
|
||||
type: Number,
|
||||
optionalTypes: [String],
|
||||
type: null,
|
||||
value: 20,
|
||||
},
|
||||
},
|
||||
|
@ -41,8 +41,7 @@ VantComponent({
|
||||
value: WHITE,
|
||||
},
|
||||
color: {
|
||||
type: String,
|
||||
optionalTypes: [Object],
|
||||
type: null,
|
||||
value: BLUE,
|
||||
observer() {
|
||||
this.setHoverColor().then(() => {
|
||||
|
@ -10,8 +10,7 @@ VantComponent({
|
||||
observer: 'updateChildren',
|
||||
},
|
||||
gutter: {
|
||||
type: Number,
|
||||
optionalTypes: [String],
|
||||
type: null,
|
||||
value: 0,
|
||||
observer: 'updateChildren',
|
||||
},
|
||||
|
@ -5,8 +5,7 @@ VantComponent({
|
||||
show: Boolean,
|
||||
customStyle: String,
|
||||
duration: {
|
||||
type: Number,
|
||||
optionalTypes: [String],
|
||||
type: null,
|
||||
value: 300,
|
||||
},
|
||||
zIndex: {
|
||||
|
@ -25,9 +25,8 @@ VantComponent({
|
||||
value: '#fff',
|
||||
},
|
||||
strokeWidth: {
|
||||
type: Number,
|
||||
type: null,
|
||||
value: 4,
|
||||
optionalTypes: [String],
|
||||
},
|
||||
},
|
||||
|
||||
|
@ -27,8 +27,7 @@ VantComponent({
|
||||
value: 'round',
|
||||
},
|
||||
iconSize: {
|
||||
type: Number,
|
||||
optionalTypes: [String],
|
||||
type: null,
|
||||
value: 20,
|
||||
},
|
||||
},
|
||||
|
@ -34,8 +34,7 @@ VantComponent({
|
||||
value: true,
|
||||
},
|
||||
duration: {
|
||||
type: Number,
|
||||
optionalTypes: [String],
|
||||
type: null,
|
||||
value: 300,
|
||||
},
|
||||
},
|
||||
|
@ -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 });
|
||||
},
|
||||
},
|
||||
|
@ -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);
|
||||
|
@ -28,8 +28,7 @@ VantComponent({
|
||||
},
|
||||
asyncClose: Boolean,
|
||||
name: {
|
||||
type: String,
|
||||
optionalTypes: [Number],
|
||||
type: null,
|
||||
value: '',
|
||||
},
|
||||
},
|
||||
|
@ -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: {
|
||||
|
@ -22,8 +22,7 @@ VantComponent({
|
||||
observer: 'updateSubItems',
|
||||
},
|
||||
height: {
|
||||
type: Number,
|
||||
optionalTypes: [String],
|
||||
type: null,
|
||||
value: 300,
|
||||
},
|
||||
max: {
|
||||
|
@ -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: {
|
||||
|
Loading…
x
Reference in New Issue
Block a user