You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/EdgeApps.md
+38-54Lines changed: 38 additions & 54 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -418,7 +418,7 @@ settings:
418
418
419
419
#### Input field types
420
420
421
-
Edge App settings support additional input field types beyond plain text and password. To render a specific input type in the UI, embed a small JSON descriptor inside the setting's `help_text` field. This JSON does not change the underlying storage type (which remains `string` or `secret`); it only instructs the UI how to render the input.
421
+
Edge App settings support additional input field types beyond plain text and password. To render a specific input type in the UI, embed a small descriptor inside the setting's `help_text` field. The descriptor can be provided either as an inline JSON string or, more ergonomically, as native YAML mapping values (shown below). This metadata does not change the underlying storage type (which remains `string` or `secret`); it only instructs the UI how to render the input.
422
422
423
423
- **Schema**: The JSON must include `schema_version` and a `properties` object.
424
424
- **Common keys**:
@@ -438,14 +438,11 @@ settings:
438
438
type: string
439
439
title: Start Date Time
440
440
optional: false
441
-
help_text: |
442
-
{
443
-
"schema_version": 1,
444
-
"properties": {
445
-
"help_text": "The start date and time of the event",
0 commit comments