UNPKG

reka-ui

Version:

Vue port for Radix UI Primitives.

53 lines (50 loc) 1.64 kB
import { Primitive } from "../Primitive/Primitive.js"; import { injectCalendarRootContext } from "./CalendarRoot.js"; import { createBlock, defineComponent, openBlock, renderSlot, unref, withCtx } from "vue"; //#region src/Calendar/CalendarCell.vue?vue&type=script&setup=true&lang.ts var CalendarCell_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ defineComponent({ __name: "CalendarCell", props: { date: { type: null, required: true }, asChild: { type: Boolean, required: false }, as: { type: null, required: false, default: "td" } }, setup(__props) { const rootContext = injectCalendarRootContext(); return (_ctx, _cache) => { return openBlock(), createBlock(unref(Primitive), { as: _ctx.as, "as-child": _ctx.asChild, role: "gridcell", "aria-selected": unref(rootContext).isDateSelected(_ctx.date) ? true : void 0, "aria-disabled": unref(rootContext).isDateDisabled(_ctx.date) || unref(rootContext).isDateUnavailable?.(_ctx.date) || unref(rootContext).disableDaysOutsideCurrentView.value, "data-disabled": unref(rootContext).isDateDisabled(_ctx.date) || unref(rootContext).disableDaysOutsideCurrentView.value ? "" : void 0 }, { default: withCtx(() => [renderSlot(_ctx.$slots, "default")]), _: 3 }, 8, [ "as", "as-child", "aria-selected", "aria-disabled", "data-disabled" ]); }; } }); //#endregion //#region src/Calendar/CalendarCell.vue var CalendarCell_default = CalendarCell_vue_vue_type_script_setup_true_lang_default; //#endregion export { CalendarCell_default }; //# sourceMappingURL=CalendarCell.js.map