Add missing content folder

This commit is contained in:
Daniel Lautzenheiser
2022-09-30 11:39:35 -04:00
parent eaef0286be
commit 6015d2be44
57 changed files with 6093 additions and 1 deletions

View File

@ -0,0 +1,16 @@
---
label: "Text"
title: text
---
The text widget takes a multiline text field and saves it as a string. For shorter text inputs, use the string widget.
- **Name:** `text`
- **UI:** HTML textarea
- **Data type:** string
- **Options:**
- `default`: accepts a string; defaults to an empty string
- **Example:**
```yaml
- {label: "Description", name: "description", widget: "text"}
```