| 1 |
{ |
| 2 |
"$schema": "https://json-schema.org/draft/2020-12/schema", |
| 3 |
"$id": "extendify/launch-template/split", |
| 4 |
"title": "Split", |
| 5 |
"type": "object", |
| 6 |
"additionalProperties": false, |
| 7 |
"properties": { |
| 8 |
"--ext-tpl-split-direction": { |
| 9 |
"type": "string", |
| 10 |
"enum": ["row", "row-reverse"], |
| 11 |
"default": "row", |
| 12 |
"x-card": "Columns", |
| 13 |
"x-label": "Text side", |
| 14 |
"x-control": "select", |
| 15 |
"x-options": [ |
| 16 |
{ |
| 17 |
"value": "row", |
| 18 |
"label": "Left" |
| 19 |
}, |
| 20 |
{ |
| 21 |
"value": "row-reverse", |
| 22 |
"label": "Right" |
| 23 |
} |
| 24 |
] |
| 25 |
}, |
| 26 |
"--ext-tpl-split-text-width": { |
| 27 |
"type": "number", |
| 28 |
"minimum": 220, |
| 29 |
"maximum": 720, |
| 30 |
"default": 420, |
| 31 |
"x-card": "Columns", |
| 32 |
"x-label": "Text width", |
| 33 |
"x-control": "length" |
| 34 |
}, |
| 35 |
"--ext-tpl-split-gap": { |
| 36 |
"type": "number", |
| 37 |
"minimum": 0, |
| 38 |
"maximum": 160, |
| 39 |
"default": 48, |
| 40 |
"x-card": "Columns", |
| 41 |
"x-label": "Gap", |
| 42 |
"x-control": "length" |
| 43 |
}, |
| 44 |
"--ext-tpl-split-text-align": { |
| 45 |
"type": "string", |
| 46 |
"enum": ["flex-start", "center", "flex-end"], |
| 47 |
"default": "flex-start", |
| 48 |
"x-card": "Columns", |
| 49 |
"x-label": "Text position", |
| 50 |
"x-control": "select", |
| 51 |
"x-options": [ |
| 52 |
{ |
| 53 |
"value": "flex-start", |
| 54 |
"label": "Top" |
| 55 |
}, |
| 56 |
{ |
| 57 |
"value": "center", |
| 58 |
"label": "Middle" |
| 59 |
}, |
| 60 |
{ |
| 61 |
"value": "flex-end", |
| 62 |
"label": "Bottom" |
| 63 |
} |
| 64 |
] |
| 65 |
} |
| 66 |
} |
| 67 |
} |
| 68 |
|