Action Components
Submit action
submit type , will submit a form , so any components along with an id/name will be sent to the submit action
"action": { "type": "submit" }
url action will open a link
"action": { type: 'url', url: "http://google.com" }
Content
This will send a request to the content hook of your app, you must reply with a definition
{type: 'content', content_url: "/internal/ui_catalog",}
Frame action
This will open a iframe with your content
action: { type: "frame", url: "/package_iframe_internal/article_search" }
`