@almadar/patterns 2.31.0 → 2.32.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3092,6 +3092,10 @@ export interface PatternPropsMap {
3092
3092
  onDraw?: ((...args: unknown[]) => unknown) | string;
3093
3093
  /** Called each tick with delta time in seconds */
3094
3094
  onTick?: ((...args: unknown[]) => unknown) | string;
3095
+ /** Event name emitted each tick with { dt, frame } — for closed-circuit .orb integration */
3096
+ tickEvent?: string;
3097
+ /** Event name emitted each draw frame with { frame } — for closed-circuit .orb integration */
3098
+ drawEvent?: string;
3095
3099
  /** Target frames per second */
3096
3100
  fps?: number | string;
3097
3101
  /** Additional CSS classes */