1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12:00

uk-form-width removed

This commit is contained in:
Victoria Sloan 2020-09-01 22:00:30 +01:00
parent df733bd0d9
commit 88883b4281

View file

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