svelte-datepicker icon indicating copy to clipboard operation
svelte-datepicker copied to clipboard

A lightweight datepicker written in Svelte

Results 35 svelte-datepicker issues
Sort by recently updated
recently updated
newest added

@antony Hello again. Recently I had to implement this functionality for a project, here's a PR in case you're interested in upstreaming it. Cheers.

When I bind to selected property, there is no two-way binding, only component->variable. When I change variable, component doesn't update

Hi, thanks for a great library! As I was trying it out, i noticed what I think is a bug when changing the locale for dayjs before rendering the `Datepicker`...

hey, first of all, thank you for this amazing rewrite! There currently is no way to open the "year" picker to select the year. Ideally when clicking on the year,...

Curious if there's a list or explanation of the API the components provide. Thank you 🙏

Hello, Here is a solution to using this library with vitejs as a bundler working with `"vite": "^3.0.7"` ## Step by step ### install `@rollup/plugin-replace` ``` npm install @rollup/plugin-replace ```...

Is there a way to set the default end date that shows up? Or set it programmatically somehow. We have an app where the default end date on the range...

Hi, any possibility to change the start of week from Sunday to Monday? thx

In the source code, there is an option to provide custom styling through the `styling` prop. Unfortunately, there is no example of how to use it properly. It always throws...

documentation

![image](https://user-images.githubusercontent.com/26248866/191438266-bc256aa1-8ced-421a-a1db-a26a621815ac.png) ``` import DatePicker from '@beyonk/svelte-datepicker/src/components/DatePicker.svelte' let selected let selected2 (selected = e.detail)} /> (selected = e.detail)} /> {JSON.stringify(selected)} {JSON.stringify(selected2)} ``` fixed it with: ` $: selected2 = dayjs(selected2).add(1, 'day').toString()...