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.

27 lines (24 loc) 404 B
export interface INavLink { key: string; icon?: string; group?: string; label: string; badge?: { text: string; class?: string; classcolor?: string; }; subLinks?: INavLink[]; active?: boolean; open?: boolean; } export type Component = { id?: string; style?: string; navlink: INavLink; navpage?: string; selected?: boolean; }; export type Events = { pageChange: { page: string }; };