-
Notifications
You must be signed in to change notification settings - Fork 64
Document non-editable prop for interfaces #506
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
robluton
commented
Nov 14, 2025
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| | `collection` | string | The current collection name. | | ||
| | `field` | uuid | The key of the field. | | ||
| | `primaryKey` | string | The current item's primary key. | | ||
| | `disabled` | boolean | Prevents editing and applies subdued colors to the field. | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's rephrase this, since it's something that extension authors must implement themselves. Something like this — feel free to adapt it.
| | `disabled` | boolean | Prevents editing and applies subdued colors to the field. | | |
| | `disabled` | boolean | If true, it should appear in subdued colors with disabled interaction. We recommend implementing it. | |
| | `field` | uuid | The key of the field. | | ||
| | `primaryKey` | string | The current item's primary key. | | ||
| | `disabled` | boolean | Prevents editing and applies subdued colors to the field. | | ||
| | `nonEditable` | boolean | Prevents editing while maintaining normal visual styling. | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's rephrase this, since it's something that extension authors must implement themselves. Something like this — feel free to adapt it.
| | `nonEditable` | boolean | Prevents editing while maintaining normal visual styling. | | |
| | `nonEditable` | boolean | If true, the field will be disabled but retain its normal visual styling, with interaction elements hidden. We recommend implementing it. | |