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
"description": "Registers a custom UI component on an extensible metadata object. Either a component type string, or an object with a `type` and optional `props`. See extensions/_component.md.",
"oneOf": [
{
"type": "string",
"minLength": 1,
"description": "Component type identifier (string shorthand, no configuration)."
},
{
"type": "object",
"required": ["type"],
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"minLength": 1,
"description": "Component type identifier (e.g. \"sha256-content-prover\", \"color-picker\")."
},
"props": {
"type": "object",
"description": "Component-specific configuration passed to the component at runtime."