bump bbui
This commit is contained in:
parent
dd76891181
commit
98c0e2dc42
|
@ -63,7 +63,7 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@budibase/bbui": "^1.53.1",
|
"@budibase/bbui": "^1.54.0",
|
||||||
"@budibase/client": "^0.5.3",
|
"@budibase/client": "^0.5.3",
|
||||||
"@budibase/colorpicker": "^1.0.1",
|
"@budibase/colorpicker": "^1.0.1",
|
||||||
"@budibase/svelte-ag-grid": "^0.0.16",
|
"@budibase/svelte-ag-grid": "^0.0.16",
|
||||||
|
|
|
@ -1,106 +0,0 @@
|
||||||
<script>
|
|
||||||
import groupBy from "lodash/fp/groupBy"
|
|
||||||
import {
|
|
||||||
Button,
|
|
||||||
TextArea,
|
|
||||||
Label,
|
|
||||||
Body,
|
|
||||||
Heading,
|
|
||||||
Spacer,
|
|
||||||
} from "@budibase/bbui"
|
|
||||||
import { createEventDispatcher } from "svelte"
|
|
||||||
|
|
||||||
const dispatch = createEventDispatcher()
|
|
||||||
export let bindableProperties
|
|
||||||
export let value = ""
|
|
||||||
export let close
|
|
||||||
|
|
||||||
function addToText(readableBinding) {
|
|
||||||
value = value + `{{ ${readableBinding} }}`
|
|
||||||
}
|
|
||||||
let originalValue = value
|
|
||||||
|
|
||||||
$: dispatch("update", value)
|
|
||||||
|
|
||||||
function cancel() {
|
|
||||||
dispatch("update", originalValue)
|
|
||||||
close()
|
|
||||||
}
|
|
||||||
|
|
||||||
$: ({ instance, context } = groupBy("type", bindableProperties))
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<div class="container" data-cy="binding-dropdown-modal">
|
|
||||||
<div class="list">
|
|
||||||
<Heading extraSmall>Objects</Heading>
|
|
||||||
<Spacer medium />
|
|
||||||
{#if context}
|
|
||||||
<Heading extraSmall>Tables</Heading>
|
|
||||||
<ul>
|
|
||||||
{#each context as { readableBinding }}
|
|
||||||
<li on:click={() => addToText(readableBinding)}>{readableBinding}</li>
|
|
||||||
{/each}
|
|
||||||
</ul>
|
|
||||||
{/if}
|
|
||||||
{#if instance}
|
|
||||||
<Heading extraSmall>Components</Heading>
|
|
||||||
<ul>
|
|
||||||
{#each instance as { readableBinding }}
|
|
||||||
<li on:click={() => addToText(readableBinding)}>{readableBinding}</li>
|
|
||||||
{/each}
|
|
||||||
</ul>
|
|
||||||
{/if}
|
|
||||||
</div>
|
|
||||||
<div class="text">
|
|
||||||
<TextArea
|
|
||||||
thin
|
|
||||||
bind:value
|
|
||||||
placeholder="Add text, or click the objects on the left to add them to the
|
|
||||||
textbox." />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<style>
|
|
||||||
.container {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: auto 1fr;
|
|
||||||
}
|
|
||||||
.list {
|
|
||||||
width: 150px;
|
|
||||||
border-right: 1.5px solid var(--grey-4);
|
|
||||||
padding: var(--spacing-s);
|
|
||||||
}
|
|
||||||
.text {
|
|
||||||
padding: var(--spacing-s);
|
|
||||||
font-family: var(--font-sans);
|
|
||||||
}
|
|
||||||
.text :global(p) {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
ul {
|
|
||||||
list-style: none;
|
|
||||||
padding-left: 0;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
li {
|
|
||||||
display: flex;
|
|
||||||
font-family: var(--font-sans);
|
|
||||||
font-size: var(--font-size-xs);
|
|
||||||
color: var(--grey-7);
|
|
||||||
padding: var(--spacing-s) 0;
|
|
||||||
margin: auto 0px;
|
|
||||||
align-items: center;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
li:hover {
|
|
||||||
color: var(--ink);
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
|
||||||
|
|
||||||
li:active {
|
|
||||||
color: var(--blue);
|
|
||||||
}
|
|
||||||
</style>
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script>
|
<script>
|
||||||
import { Button, Icon, Drawer } from "@budibase/bbui"
|
import { Icon } from "@budibase/bbui"
|
||||||
import Input from "./PropertyPanelControls/Input.svelte"
|
import Input from "./PropertyPanelControls/Input.svelte"
|
||||||
import { store, backendUiStore, currentAsset } from "builderStore"
|
import { store, backendUiStore, currentAsset } from "builderStore"
|
||||||
import fetchBindableProperties from "builderStore/fetchBindableProperties"
|
import fetchBindableProperties from "builderStore/fetchBindableProperties"
|
||||||
|
@ -7,7 +7,7 @@
|
||||||
readableToRuntimeBinding,
|
readableToRuntimeBinding,
|
||||||
runtimeToReadableBinding,
|
runtimeToReadableBinding,
|
||||||
} from "builderStore/replaceBindings"
|
} from "builderStore/replaceBindings"
|
||||||
import BindingDropdown from "components/userInterface/BindingDropdown.svelte"
|
import BindingDrawer from "components/userInterface/BindingDrawer.svelte"
|
||||||
|
|
||||||
export let label = ""
|
export let label = ""
|
||||||
export let bindable = true
|
export let bindable = true
|
||||||
|
@ -25,6 +25,7 @@
|
||||||
|
|
||||||
function handleClose() {
|
function handleClose() {
|
||||||
handleChange(key, temporaryBindableValue)
|
handleChange(key, temporaryBindableValue)
|
||||||
|
showDrawer = false
|
||||||
}
|
}
|
||||||
|
|
||||||
function getBindableProperties() {
|
function getBindableProperties() {
|
||||||
|
@ -99,33 +100,12 @@
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
{#if showDrawer}
|
<BindingDrawer
|
||||||
<Drawer
|
|
||||||
title="Binding"
|
|
||||||
onClose={() => {
|
|
||||||
handleClose()
|
|
||||||
showDrawer = false
|
|
||||||
}}>
|
|
||||||
<div slot="buttons">
|
|
||||||
<Button
|
|
||||||
blue
|
|
||||||
thin
|
|
||||||
on:click={() => {
|
|
||||||
notifier.success('Query parameters saved.')
|
|
||||||
handleSelected(value)
|
|
||||||
}}>
|
|
||||||
Save
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
<div class="drawer-contents" slot="body">
|
|
||||||
<BindingDropdown
|
|
||||||
{...handlevalueKey(value)}
|
{...handlevalueKey(value)}
|
||||||
close={() => showDrawer = false}
|
close={handleClose}
|
||||||
|
show={showDrawer}
|
||||||
on:update={e => (temporaryBindableValue = e.detail)}
|
on:update={e => (temporaryBindableValue = e.detail)}
|
||||||
{bindableProperties} />
|
{bindableProperties} />
|
||||||
</div>
|
|
||||||
</Drawer>
|
|
||||||
{/if}
|
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
.property-control {
|
.property-control {
|
||||||
|
|
|
@ -842,10 +842,10 @@
|
||||||
lodash "^4.17.19"
|
lodash "^4.17.19"
|
||||||
to-fast-properties "^2.0.0"
|
to-fast-properties "^2.0.0"
|
||||||
|
|
||||||
"@budibase/bbui@^1.53.0":
|
"@budibase/bbui@^1.54.0":
|
||||||
version "1.53.0"
|
version "1.54.0"
|
||||||
resolved "https://registry.yarnpkg.com/@budibase/bbui/-/bbui-1.53.0.tgz#36b57e6803fb7622111dce3e9766f6c63e34dbb2"
|
resolved "https://registry.yarnpkg.com/@budibase/bbui/-/bbui-1.54.0.tgz#60e6c0faa3d8f1781c503e74f8b8990f75ba2c40"
|
||||||
integrity sha512-v+L2HCaZ9MD2uyzpAvWQ5vWF+rf3WOkZLMMFpil2GHJ+DHwgm3/9eC4BhHoNjCntF5zxbfpO+Y2DG7AF4UhNgw==
|
integrity sha512-98koXkueqda6oQT6q0NPNvdL878ETRevtmmm34aSz9C6B4Oz68VVCsiFzRWuHvP/7wiNaAxMgY1nsEsCwP3LpQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
markdown-it "^12.0.2"
|
markdown-it "^12.0.2"
|
||||||
quill "^1.3.7"
|
quill "^1.3.7"
|
||||||
|
|
Loading…
Reference in New Issue