I’m trying to create a web-plugin component that uses a library component (miro.board.ui.openLibrary) that tries to capture events (change or paste) events so the user can paste data into the component. In the event, I am trying to access navigator.clipboard.readText(). It fails on this line with the following error in chrome:
Uncaught (in promise) DOMException: Disabled in this document by Feature Policy.
It would seem that access to the clipboard is not allowed within a web-plugin? If it is allowed, is there something specific I need to do to enable it?