uk-form-width removed
This commit is contained in:
parent
df733bd0d9
commit
88883b4281
|
@ -2,12 +2,10 @@
|
||||||
import flatpickr from "flatpickr"
|
import flatpickr from "flatpickr"
|
||||||
import "flatpickr/dist/flatpickr.css"
|
import "flatpickr/dist/flatpickr.css"
|
||||||
import { onMount } from "svelte"
|
import { onMount } from "svelte"
|
||||||
import { Label } from "@budibase/bbui"
|
import { Label, Input } from "@budibase/bbui"
|
||||||
|
|
||||||
export let value
|
export let value
|
||||||
export let label
|
export let label
|
||||||
export let width = "medium"
|
|
||||||
export let size = "small"
|
|
||||||
|
|
||||||
let input
|
let input
|
||||||
let fpInstance
|
let fpInstance
|
||||||
|
@ -27,7 +25,8 @@
|
||||||
|
|
||||||
<div class="bb-margin-m">
|
<div class="bb-margin-m">
|
||||||
<Label small forAttr={'datepicker-label'}>{label}</Label>
|
<Label small forAttr={'datepicker-label'}>{label}</Label>
|
||||||
<input
|
<Input thin bind:this={input} />
|
||||||
class="uk-input uk-form-width-{width} uk-form-{size}"
|
|
||||||
bind:this={input} />
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- TODO: Verify DatePicker Input works as expected when datetime property used again
|
||||||
|
in CreateEditColumn -->
|
||||||
|
|
Loading…
Reference in New Issue