interface CardActionRendererProps {
    action: CardActionDef;
    data: unknown;
    entityIRI?: string;
    onIntent?: (intent: CardActionIntent) => void;
    schema: JSONSchema7;
}

Properties

action: CardActionDef
data: unknown
entityIRI?: string
onIntent?: (intent: CardActionIntent) => void

Invoked for built-in show / edit intents on declared actions.

schema: JSONSchema7