UNPKG

@devexcelsior/healing-ui-overlay

Version:

Visual overlay component to display fallback suppression, license expiration, or runtime governance warnings in healing-enabled applications.

11 lines (10 loc) 483 B
"use strict"; // © 2025 DevExcelsior – Commercial use prohibited. License required. // Visual fallback suppression overlay for healing SDK runtime enforcement. Object.defineProperty(exports, "__esModule", { value: true }); exports.renderGovernanceOverlay = renderGovernanceOverlay; function renderGovernanceOverlay({ message = "Fallback blocked by policy", visible }) { if (!visible) return ''; return `<div class="healing-governance-overlay">${message}</div>`; }