mirror of
https://github.com/pebble-dev/clay.git
synced 2026-08-28 04:46:57 -04:00
39 lines
708 B
JavaScript
39 lines
708 B
JavaScript
'use strict';
|
|
/* eslint-disable quotes */
|
|
|
|
module.exports = [
|
|
{
|
|
"type": "heading",
|
|
"id": "main-heading",
|
|
"defaultValue": "Clay Test Page",
|
|
"size": 1
|
|
},
|
|
{
|
|
"type": "text",
|
|
"defaultValue": "This is config 2"
|
|
},
|
|
{
|
|
"type": "section",
|
|
"items": [
|
|
{
|
|
"type": "heading",
|
|
"defaultValue": "This is a section"
|
|
},
|
|
{
|
|
"type": "input",
|
|
"appKey": "email",
|
|
"defaultValue": "",
|
|
"label": "Input Field",
|
|
"description": "This is a new field",
|
|
"attributes": {
|
|
"placeholder": "Placeholder set with attributes"
|
|
}
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"type": "submit",
|
|
"defaultValue": "Save"
|
|
}
|
|
];
|