mirror of https://github.com/Budibase/budibase.git
13 changed files with 13 additions and 52 deletions
@ -0,0 +1,3 @@ |
|||
export { default as CoreTextField } from "./TextField.svelte" |
|||
export { default as CoreSelect } from "./Select.svelte" |
|||
export { default as CoreMultiselect } from "./Multiselect.svelte" |
|||
@ -1,3 +0,0 @@ |
|||
export { default as TextField } from "./TextField.svelte" |
|||
export { default as Select } from "./Select.svelte" |
|||
export { default as Multiselect } from "./Multiselect.svelte" |
|||
@ -1,33 +0,0 @@ |
|||
<script> |
|||
import { Input } from "@budibase/bbui" |
|||
export let validationErrors |
|||
|
|||
let blurred = { api: false } |
|||
</script> |
|||
|
|||
<h2>Set up your API Key</h2> |
|||
<div class="container"> |
|||
<Input |
|||
on:input={() => (blurred.api = true)} |
|||
label="API Key" |
|||
name="apiKey" |
|||
placeholder="Use command-V to paste your API Key" |
|||
type="password" |
|||
error={blurred.api && validationErrors.apiKey} /> |
|||
<a target="_blank" href="https://portal.budi.live/">Get API Key</a> |
|||
</div> |
|||
|
|||
<style> |
|||
.container { |
|||
display: grid; |
|||
grid-gap: 40px; |
|||
} |
|||
a { |
|||
color: var(--grey-7); |
|||
font-weight: 500; |
|||
font-size: var(--font-size-s); |
|||
} |
|||
a:hover { |
|||
color: var(--ink); |
|||
} |
|||
</style> |
|||
Loading…
Reference in new issue