mirror of
https://github.com/ByteAtATime/raycast-linux.git
synced 2025-08-31 03:07:23 +00:00
feat(actions): add ActionSubmitForm to action components
This commit is contained in:
parent
a0b303492f
commit
5ddba9d8fe
1 changed files with 3 additions and 1 deletions
|
@ -11,6 +11,7 @@ const ActionPanelSubmenu = createWrapperComponent('ActionPanel.Submenu');
|
|||
const ActionPaste = createWrapperComponent('Action.Paste');
|
||||
const ActionCopy = createWrapperComponent('Action.CopyToClipboard');
|
||||
const ActionOpenInBrowser = createWrapperComponent('Action.OpenInBrowser');
|
||||
const ActionSubmitForm = createWrapperComponent('Action.SubmitForm');
|
||||
|
||||
const ActionPush = ({
|
||||
onPush,
|
||||
|
@ -34,7 +35,8 @@ Object.assign(Action, {
|
|||
Paste: ActionPaste,
|
||||
CopyToClipboard: ActionCopy,
|
||||
OpenInBrowser: ActionOpenInBrowser,
|
||||
Push: ActionPush
|
||||
Push: ActionPush,
|
||||
SubmitForm: ActionSubmitForm
|
||||
});
|
||||
Object.assign(ActionPanel, {
|
||||
Section: ActionPanelSection,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue