mirror of
https://github.com/kennethnym/aris.git
synced 2026-03-20 09:01:19 +00:00
Implement renderCalDavFeedItem using JRX JSX to render CalDAV events as FeedCard components. Bump @nym.sh/jrx to 0.2.0 for null/undefined child support. Co-authored-by: Ona <no-reply@ona.com>
18 lines
540 B
TypeScript
18 lines
540 B
TypeScript
export { CalDavCalendarKey, type CalendarContext } from "./calendar-context.ts"
|
|
export { CalDavSource, type CalDavSourceOptions } from "./caldav-source.ts"
|
|
export { parseICalEvents, type ICalTimeRange } from "./ical-parser.ts"
|
|
export { renderCalDavFeedItem } from "./renderer.tsx"
|
|
export {
|
|
AttendeeRole,
|
|
AttendeeStatus,
|
|
CalDavEventStatus,
|
|
CalDavFeedItemType,
|
|
type CalDavAlarm,
|
|
type CalDavAttendee,
|
|
type CalDavDAVCalendar,
|
|
type CalDavDAVClient,
|
|
type CalDavDAVObject,
|
|
type CalDavEventData,
|
|
type CalDavFeedItem,
|
|
} from "./types.ts"
|