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.

13 lines (10 loc) 263 B
import type { Paragraphs } from "../paragraps-around-image/webcomponent.type"; export type Component = { paragraph?: Paragraphs | string; id?: string; style?: string; max_lines?: number; }; export type Events = { paragraphPressed: { key: string }; };