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

Change start of week to Monday

Open shadowempire123 opened this issue 2 years ago • 1 comments

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

shadowempire123 avatar Feb 27 '23 08:02 shadowempire123

Funny that ai.com tells following answer which sound logically but is not working:

To change the start of the week from Sunday to Monday in the @beyonk/svelte-datepicker component, you can use the "firstDay" prop. This prop accepts a number representing the index of the first day of the week, where 0 represents Sunday, 1 represents Monday, and so on.

Here's an example code snippet that sets the first day of the week to Monday:

<script>
  import { DatePicker } from '@beyonk/svelte-datepicker';
</script>

<DatePicker firstDay="1" />

By setting the "firstDay" prop to 1, you are telling the component to use Monday as the first day of the week.

--> <DatePicker> was created with unknown prop 'firstDay'

shadowempire123 avatar Feb 27 '23 08:02 shadowempire123