static-cms/packages/docs/content/docs/widget-uuid.mdx
2023-04-26 15:12:17 -04:00

38 lines
945 B
Plaintext

---
group: Widgets
title: UUID
weight: 26
---
- **Name:** `uuid`
- **UI:** Text input
- **Data type:** `string`
The uuid widget generates a unique id (uuid) and saves it as a string.
## Widget Options
For common options, see [Common widget options](/docs/widgets#common-widget-options).
| Name | Type | Default | Description |
| ---------------- | ------- | ------- | -------------------------------------------------------------------------------------- |
| allow_regenerate | boolean | `true` | _Optional_. If set to `false` the `Generate new UUID` button does not appear in the UI |
| prefix | string | | _Optional_. A value to add at the beginning of the UUID |
## Example
<CodeTabs>
```yaml
name: id
label: Id
widget: uuid
```
```js
name: 'id',
label: 'Id',
widget: 'uuid',
```
</CodeTabs>