Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion skills/objectui/guides/auth-permissions.md
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ Then in schema — note the `data.` root:
|---|---|---|
| `data` | the `dataSource` passed to `SchemaRendererProvider` | `${data.canDeleteContacts}` |
| `user` / `current_user` | the ambient host scope (app-shell's `ExpressionProvider`) | `${user.id}` |
| `app`, `features` | the ambient host scope | `${features.multiOrgEnabled}` |
| `features` | the ambient host scope | `${features.multiOrgEnabled}` |
| `page` | `PageSchema.variables`, inside a Page | `${page.selectedId}` |

The ambient roots exist only while a host scope is mounted — `ExpressionProvider`
Expand Down
2 changes: 1 addition & 1 deletion skills/objectui/rules/protocol.md
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ form-supported type (`select`, `lookup`, `date`, `file`, `image`, `richtext`,
options, lookup config, `multiple`/`accept`/`maxSize` from the object field;
inline properties override.
- `required` blocks submit; `visible` is a CEL predicate
(`features` / `current_user` / `app` / `data`) that hides the param.
(`data` / `features` / `current_user`) that hides the param.

**❌ DO NOT** invent param-only type spellings — use spec `FieldType` values.
**❌ DO NOT** add bespoke per-type render branches to `ActionParamDialog`;
Expand Down