DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
834 Bytes
<script>import { melt } from "@melt-ui/svelte";
import { getCtx } from "../ctx.js";
import { createDispatcher } from "../../../internal/events.js";
export let asChild = false;
export let id = void 0;
export let el = void 0;
const {
elements: { calendar },
states: { months: localMonths, weekdays },
ids,
getCalendarAttrs
} = getCtx();
$:
if (id) {
ids.calendar.calendar.set(id);
}
const attrs = getCalendarAttrs("root");
const dispatch = createDispatcher();
$:
builder = $calendar;
$:
Object.assign(builder, attrs);
let months = $localMonths;
$:
months = $localMonths;
</script>
{#if asChild}
<slot {builder} {months} weekdays={$weekdays} />
{:else}
<div bind:this={el} {...builder} use:builder.action {...$$restProps} on:m-keydown={dispatch}>
<slot {builder} {months} weekdays={$weekdays} />
</div>
{/if}