@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.
24 lines (22 loc) • 520 B
TypeScript
export type Component = {
id?: string;
style?: string;
show?: "yes" | "no";
confirm_btn_class?: string;
title?: string;
backdrop?: boolean;
keyboard?: boolean;
describedby?: string;
labelledby?: string;
content?: string;
closelabel?: string;
confirmlabel?: string;
disable_confirm?: boolean;
close_btn_class?: string;
hide_close?: boolean;
hide_confirm?: boolean;
};
export type Events = {
modalConfirm: { id: string; confirm: boolean };
modalShow: { id: string; show: boolean };
};