Initialize plugins before render

The plugin API seems to execute callbacks on input type elements post render cycle which results in flash delayed replacements. Below is an example of this with the star rating plugin:

example

From what I am observing the content workspaces are generated virtually and I’m going to assume is using React but whatever the case, can plugins be executed at a different lifecycle opposed to post render to prevent this?

I develop SPA’s using an esoteric framework known as Mithril and use a state management pattern known as Meiosis when virtually rendering applications. Preventing re-renders and executing external callbacks pre-render/mount similar to how the plugin API functions is rather simple with that stack. Meiosis might be helpful in preventing the re-renders.