@tradle/models
Version:
models for tradle apps
53 lines (52 loc) • 878 B
JSON
{
"id": "tradle.Tour",
"type": "tradle.Model",
"title": "Tour",
"properties": {
"message": {
"type": "string"
},
"pages": {
"type": "array",
"inlined": true,
"description": "urls of tour pages",
"items": {
"ref": "tradle.TourPage"
}
},
"dotColor": {
"type": "string"
},
"activeDotColor": {
"type": "string"
},
"leftTextColor": {
"type": "string"
},
"rightTextColor": {
"type": "string"
},
"skipBtnText": {
"type": "string"
},
"nextBtnText": {
"type": "string"
},
"doneBtnText": {
"type": "string"
},
"showDots": {
"type": "boolean"
},
"showSkipButton": {
"type": "boolean"
},
"showDoneButton": {
"type": "boolean"
}
},
"required": [
"message",
"pages"
]
}