uk-form-width removed
This commit is contained in:
parent
df733bd0d9
commit
88883b4281
|
@ -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 -->
|
||||
|
|
Loading…
Reference in New Issue