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.

37 lines (33 loc) 651 B
export type Component = { id?: string; style?: string; pad_or_joystick?: "dpad" | "joystick"; joystick_parameters?: { internalFillColor?: string; internalLineWidth?: number; internalStrokeColor?: string; externalLineWidth?: number; externalStrokeColor?: string; }; }; export type CardinalDirection = | "C" | "N" | "S" | "NE" | "SE" | "NW" | "SW" | "NO" | "SO" | "W" | "O"; export type Events = { sendDirection: { direction: "up" | "right" | "down" | "left"; id: string }; sendJoystickPosition: { x: number; y: number; cardinalDirection: CardinalDirection; id: string; }; };