@jsenv/navi 0.23.0 → 0.23.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.
@@ -31171,7 +31171,9 @@ const CodeBlock = ({
31171
31171
  };
31172
31172
  }
31173
31173
  }
31174
- customElements.define("clipboard-copy", ClipboardCopy);
31174
+ if (!customElements.get("clipboard-copy")) {
31175
+ customElements.define("clipboard-copy", ClipboardCopy);
31176
+ }
31175
31177
  const addToClipboard = async text => {
31176
31178
  const type = "text/plain";
31177
31179
  const clipboardItemData = {