You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
768 B
37 lines
768 B
const FRONT_COLORS = ['#ffffff', '#000000']
|
|
export const setNavigationBarColor = {
|
|
frontColor: {
|
|
type: String,
|
|
required: true,
|
|
validator (frontColor, params) {
|
|
if (FRONT_COLORS.indexOf(frontColor) === -1) {
|
|
return `invalid frontColor "${frontColor}"`
|
|
}
|
|
}
|
|
},
|
|
backgroundColor: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
animation: {
|
|
type: Object,
|
|
default () {
|
|
return {
|
|
duration: 0,
|
|
timingFunc: 'linear'
|
|
}
|
|
},
|
|
validator (animation = {}, params) {
|
|
params.animation = {
|
|
duration: animation.duration || 0,
|
|
timingFunc: animation.timingFunc || 'linear'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
export const setNavigationBarTitle = {
|
|
title: {
|
|
type: String,
|
|
required: true
|
|
}
|
|
}
|
|
|