Convert AutomationBindingPanel to new DrawerContent panel
This commit is contained in:
parent
016a780322
commit
a1220cf048
|
@ -1,6 +1,12 @@
|
||||||
<script>
|
<script>
|
||||||
import groupBy from "lodash/fp/groupBy"
|
import groupBy from "lodash/fp/groupBy"
|
||||||
import { Input, TextArea, Heading, Layout } from "@budibase/bbui"
|
import {
|
||||||
|
Input,
|
||||||
|
TextArea,
|
||||||
|
Heading,
|
||||||
|
Layout,
|
||||||
|
DrawerContent,
|
||||||
|
} from "@budibase/bbui"
|
||||||
import { createEventDispatcher } from "svelte"
|
import { createEventDispatcher } from "svelte"
|
||||||
import { isValid } from "@budibase/string-templates"
|
import { isValid } from "@budibase/string-templates"
|
||||||
import { handlebarsCompletions } from "constants/completions"
|
import { handlebarsCompletions } from "constants/completions"
|
||||||
|
@ -44,8 +50,8 @@
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="container">
|
<DrawerContent>
|
||||||
<div class="list">
|
<div slot="sidebar" class="list">
|
||||||
<Layout>
|
<Layout>
|
||||||
<div class="section">
|
<div class="section">
|
||||||
<Heading s h3>Available bindings</Heading>
|
<Heading s h3>Available bindings</Heading>
|
||||||
|
@ -98,16 +104,9 @@
|
||||||
</p>
|
</p>
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</DrawerContent>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
.container {
|
|
||||||
height: 40vh;
|
|
||||||
overflow-y: auto;
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: 290px 1fr;
|
|
||||||
}
|
|
||||||
|
|
||||||
.list {
|
.list {
|
||||||
grid-gap: var(--spacing-s);
|
grid-gap: var(--spacing-s);
|
||||||
border-right: var(--border-light);
|
border-right: var(--border-light);
|
||||||
|
|
Loading…
Reference in New Issue