File size: 466 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
<script>import { getCtx } from "../ctx.js";
export let date;
export let asChild = false;
export let el = void 0;
const {
helpers: { isDateDisabled, isDateUnavailable },
getAttrs
} = getCtx();
$:
attrs = {
...getAttrs("cell"),
"aria-disabled": $isDateDisabled(date) || $isDateUnavailable(date),
role: "gridcell"
};
</script>
{#if asChild}
<slot {attrs} />
{:else}
<td bind:this={el} {...$$restProps} {...attrs}>
<slot {attrs} />
</td>
{/if}
|