2019-07-13 11:35:57 +02:00
|
|
|
<script>
|
2020-09-09 13:06:04 +02:00
|
|
|
import Flatpickr from "svelte-flatpickr"
|
2020-09-09 17:27:46 +02:00
|
|
|
import { Label, DatePicker } from "@budibase/bbui"
|
2020-09-09 14:44:36 +02:00
|
|
|
|
|
|
|
export let label
|
|
|
|
export let value
|
2019-07-13 11:35:57 +02:00
|
|
|
</script>
|
|
|
|
|
2020-08-22 22:34:46 +02:00
|
|
|
<div class="bb-margin-m">
|
2020-09-01 22:28:38 +02:00
|
|
|
<Label small forAttr={'datepicker-label'}>{label}</Label>
|
2020-09-09 17:27:46 +02:00
|
|
|
<DatePicker placeholder={label} bind:value />
|
2020-09-09 14:44:36 +02:00
|
|
|
</div>
|