Alex Bates

Results 259 comments of Alex Bates

May be able to partially achieve this with linker export maps: ``` { global: mac_00_main; local: ∗; }; ```

See https://github.com/pmret/papermario/pull/790#pullrequestreview-1123464917

Thank you! How do I access the Nanocomponent instance?

I'm not using nanocomponent in my app :( Is there any other way (read: not setTimeout) I can detect once a render is complete?

if we're considering changing the api here (to, from) would be cool.

Is this a bug in nanomorph? I guess it just needs to not consider `el.value` a modified property.

Using `drag({ clampWheel: true })` fixes this.

A good way to do private vars is to feature-check for ES6 Symbols and use a fallback if the browser does not support them. e.g. ```js Nanocomponent.id = Symbol in...