UNPKG

@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.

18 lines (15 loc) 282 B
export type Line = { text: string; value: string; link?: { type: "tab" | "page" | "event"; uri: string }; index?: number; icon?: string; }; export type Component = { id?: string; style?: string; lines?: Line[]; }; export type Events = { counterClick: { key: string }; };