@htmlbricks/hb-bundle
Version:
Single IIFE loader for all HTML Bricks hb-* web components from the jsDelivr CDN, with optional Subresource Integrity; includes agent/LLM docs and theme CSS variables.
22 lines (20 loc) • 392 B
TypeScript
export interface IEvent {
date: Date;
label: string;
id: string;
link?: string;
icon?: string;
color?: string;
}
export type Component = {
id?: string;
date?: Date;
events?: IEvent[];
selected?: Date;
disable_header?: boolean;
};
export type Events = {
calendarEventClick: { eventId: string };
changeCalendarDate: { date: Date };
changeSelectedDate: { selectedDate: Date };
};