Add settings schema for edge trigger options in CTile extension
This commit is contained in:
36
settings-schema.json
Normal file
36
settings-schema.json
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"layout": {
|
||||
"type": "layout",
|
||||
"pages": ["trigger-edges"],
|
||||
"trigger-edges": {
|
||||
"type": "page",
|
||||
"title": "Trigger Edges",
|
||||
"sections": ["edges-section"]
|
||||
},
|
||||
"edges-section": {
|
||||
"type": "section",
|
||||
"title": "Show overlay when dragging to edge",
|
||||
"keys": ["trigger-top", "trigger-bottom", "trigger-left", "trigger-right"]
|
||||
}
|
||||
},
|
||||
"trigger-top": {
|
||||
"type": "checkbox",
|
||||
"default": true,
|
||||
"description": "Top edge"
|
||||
},
|
||||
"trigger-bottom": {
|
||||
"type": "checkbox",
|
||||
"default": false,
|
||||
"description": "Bottom edge"
|
||||
},
|
||||
"trigger-left": {
|
||||
"type": "checkbox",
|
||||
"default": false,
|
||||
"description": "Left edge"
|
||||
},
|
||||
"trigger-right": {
|
||||
"type": "checkbox",
|
||||
"default": false,
|
||||
"description": "Right edge"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user