removed Dropdown.svelte
This commit is contained in:
parent
d8f8ade898
commit
159c665ca5
|
@ -1,45 +0,0 @@
|
||||||
<script>
|
|
||||||
import { createEventDispatcher } from "svelte"
|
|
||||||
import Select from "../common/Select.svelte"
|
|
||||||
|
|
||||||
export let selected
|
|
||||||
export let label
|
|
||||||
export let options
|
|
||||||
export let valueMember
|
|
||||||
export let textMember
|
|
||||||
export let multiple = false
|
|
||||||
export let width = "medium"
|
|
||||||
export let size = "small"
|
|
||||||
|
|
||||||
const dispatch = createEventDispatcher()
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<div class="uk-margin">
|
|
||||||
<label class="uk-form-label">{label}</label>
|
|
||||||
<div class="uk-form-controls">
|
|
||||||
{#if multiple}
|
|
||||||
<Select
|
|
||||||
class="uk-select uk-form-width-{width} uk-form-{size}"
|
|
||||||
multiple
|
|
||||||
bind:value={selected}
|
|
||||||
on:change>
|
|
||||||
{#each options as option}
|
|
||||||
<option value={!valueMember ? option : valueMember(option)}>
|
|
||||||
{!textMember ? option : textMember(option)}
|
|
||||||
</option>
|
|
||||||
{/each}
|
|
||||||
</Select>
|
|
||||||
{:else}
|
|
||||||
<Select
|
|
||||||
class="uk-select uk-form-width-{width} uk-form-{size}"
|
|
||||||
bind:value={selected}
|
|
||||||
on:change>
|
|
||||||
{#each options as option}
|
|
||||||
<option value={!valueMember ? option : valueMember(option)}>
|
|
||||||
{!textMember ? option : textMember(option)}
|
|
||||||
</option>
|
|
||||||
{/each}
|
|
||||||
</Select>
|
|
||||||
{/if}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
|
@ -5,7 +5,6 @@
|
||||||
import { store, backendUiStore } from "builderStore"
|
import { store, backendUiStore } from "builderStore"
|
||||||
import { FIELDS } from "constants/backend"
|
import { FIELDS } from "constants/backend"
|
||||||
import { notifier } from "builderStore/store/notifications"
|
import { notifier } from "builderStore/store/notifications"
|
||||||
import Dropdown from "components/common/Dropdown.svelte"
|
|
||||||
import Textbox from "components/common/Textbox.svelte"
|
import Textbox from "components/common/Textbox.svelte"
|
||||||
import ButtonGroup from "components/common/ButtonGroup.svelte"
|
import ButtonGroup from "components/common/ButtonGroup.svelte"
|
||||||
import NumberBox from "components/common/NumberBox.svelte"
|
import NumberBox from "components/common/NumberBox.svelte"
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
import Textbox from "components/common/Textbox.svelte"
|
import Textbox from "components/common/Textbox.svelte"
|
||||||
import CodeArea from "components/common/CodeArea.svelte"
|
import CodeArea from "components/common/CodeArea.svelte"
|
||||||
import Button from "components/common/Button.svelte"
|
import Button from "components/common/Button.svelte"
|
||||||
import Dropdown from "components/common/Dropdown.svelte"
|
|
||||||
import { store, backendUiStore } from "builderStore"
|
import { store, backendUiStore } from "builderStore"
|
||||||
import { filter, some, map, compose } from "lodash/fp"
|
import { filter, some, map, compose } from "lodash/fp"
|
||||||
import ErrorsBox from "components/common/ErrorsBox.svelte"
|
import ErrorsBox from "components/common/ErrorsBox.svelte"
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
<script>
|
<script>
|
||||||
import { backendUiStore } from "builderStore"
|
import { backendUiStore } from "builderStore"
|
||||||
import { Button } from "@budibase/bbui"
|
import { Button } from "@budibase/bbui"
|
||||||
import Dropdown from "components/common/Dropdown.svelte"
|
|
||||||
import Textbox from "components/common/Textbox.svelte"
|
import Textbox from "components/common/Textbox.svelte"
|
||||||
import ButtonGroup from "components/common/ButtonGroup.svelte"
|
import ButtonGroup from "components/common/ButtonGroup.svelte"
|
||||||
import NumberBox from "components/common/NumberBox.svelte"
|
import NumberBox from "components/common/NumberBox.svelte"
|
||||||
|
|
|
@ -14,7 +14,6 @@
|
||||||
import { pipe } from "components/common/core"
|
import { pipe } from "components/common/core"
|
||||||
import Checkbox from "components/common/Checkbox.svelte"
|
import Checkbox from "components/common/Checkbox.svelte"
|
||||||
import Textbox from "components/common/Textbox.svelte"
|
import Textbox from "components/common/Textbox.svelte"
|
||||||
import Dropdown from "components/common/Dropdown.svelte"
|
|
||||||
import PlusButton from "components/common/PlusButton.svelte"
|
import PlusButton from "components/common/PlusButton.svelte"
|
||||||
import IconButton from "components/common/IconButton.svelte"
|
import IconButton from "components/common/IconButton.svelte"
|
||||||
import EventEditorModal from "./EventEditorModal.svelte"
|
import EventEditorModal from "./EventEditorModal.svelte"
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
import { store } from "builderStore"
|
import { store } from "builderStore"
|
||||||
import Checkbox from "../common/Checkbox.svelte"
|
import Checkbox from "../common/Checkbox.svelte"
|
||||||
import Textbox from "../common/Textbox.svelte"
|
import Textbox from "../common/Textbox.svelte"
|
||||||
import Dropdown from "../common/Dropdown.svelte"
|
|
||||||
import StateBindingControl from "./StateBindingControl.svelte"
|
import StateBindingControl from "./StateBindingControl.svelte"
|
||||||
|
|
||||||
export let index
|
export let index
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
<script>
|
<script>
|
||||||
import { some, includes, filter } from "lodash/fp"
|
import { some, includes, filter } from "lodash/fp"
|
||||||
import Textbox from "../common/Textbox.svelte"
|
import Textbox from "../common/Textbox.svelte"
|
||||||
import Dropdown from "../common/Dropdown.svelte"
|
|
||||||
import PropControl from "./PropControl.svelte"
|
import PropControl from "./PropControl.svelte"
|
||||||
import IconButton from "../common/IconButton.svelte"
|
import IconButton from "../common/IconButton.svelte"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue