1
0
Fork 0
mirror of synced 2024-08-12 08:31:27 +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`
</script>
<ActionButton on:click={openDrawer}>Define actions</ActionButton>
<div class="action-count">{actionText}</div>
<ActionButton on:click={openDrawer}>Define actions</ActionButton>
<Drawer bind:this={drawer} title={"Actions"}>
<svelte:fragment slot="description">
Define what actions to run.
@ -94,6 +95,7 @@
<style>
.action-count {
padding-top: var(--spacing-s);
padding-bottom: var(--spacing-s);
font-weight: 600;
}
</style>

View file

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