1
0
Fork 0
mirror of synced 2024-09-10 22:46:09 +12:00

Updated action categories, adding a logic specific entry for the conditional step. Shift the action text above the button.

This commit is contained in:
Dean 2022-07-13 12:30:58 +01:00
parent b5183fec93
commit e3170c2a2f
2 changed files with 9 additions and 7 deletions

View file

@ -76,8 +76,9 @@
} set` } set`
</script> </script>
<ActionButton on:click={openDrawer}>Define actions</ActionButton>
<div class="action-count">{actionText}</div> <div class="action-count">{actionText}</div>
<ActionButton on:click={openDrawer}>Define actions</ActionButton>
<Drawer bind:this={drawer} title={"Actions"}> <Drawer bind:this={drawer} title={"Actions"}>
<svelte:fragment slot="description"> <svelte:fragment slot="description">
Define what actions to run. Define what actions to run.
@ -94,6 +95,7 @@
<style> <style>
.action-count { .action-count {
padding-top: var(--spacing-s); padding-bottom: var(--spacing-s);
font-weight: 600;
} }
</style> </style>

View file

@ -29,7 +29,7 @@
}, },
{ {
"name": "Navigate To", "name": "Navigate To",
"type": "ui/ux", "type": "application",
"component": "NavigateTo" "component": "NavigateTo"
}, },
{ {
@ -45,7 +45,7 @@
}, },
{ {
"name": "Trigger Automation", "name": "Trigger Automation",
"type": "ui/ux", "type": "application",
"component": "TriggerAutomation" "component": "TriggerAutomation"
}, },
{ {
@ -70,12 +70,12 @@
}, },
{ {
"name": "Log Out", "name": "Log Out",
"type": "ui/ux", "type": "application",
"component": "LogOut" "component": "LogOut"
}, },
{ {
"name": "Close Screen Modal", "name": "Close Screen Modal",
"type": "ui/ux", "type": "application",
"component": "CloseScreenModal" "component": "CloseScreenModal"
}, },
{ {
@ -107,7 +107,7 @@
}, },
{ {
"name": "Continue if / Stop if", "name": "Continue if / Stop if",
"type": "ui/ux", "type": "logic",
"component": "ContinueIf", "component": "ContinueIf",
"dependsOnFeature": "continueIfAction" "dependsOnFeature": "continueIfAction"
} }