Is it possible to get a component's instance outside components files?
For example, if I programmatically create a component using const myComponent = new Component(options), I can access its instance and call methods such as myComponent.$set(props).
Is it possible to get an instance of some deeply nested component, outside any component scope?
Either to get it by id (the dom class svelte-someid), or to get it internally inside a component (and use it to create a global registry of component instance references).