Mark Chris Levy

Results 26 comments of Mark Chris Levy

@lodybo dispatchEvent shouldn't be used at all if you don't need to send "native" events. Other events should be declared and send just like they are described in the [docs](https://stenciljs.com/docs/events).

@lodybo Imho it is always better to use @Event decorator, as it is easier, cleaner and there are framework bindings. My solution to use dispatchEvent was only for cases, when...

@lodybo Just to clarify: all stencil events are native DOM events, but when using @Event decorator you cannot emit standard/basic DOM events like change or click - you can emit...

Setting externalRuntime = true doesn't fix the loading issue - in the example component (https://github.com/MarkChrisLevy/stencil-www-issues2/blob/0d2c42bffd81cb1bd2052464bcf253a99f8187f2/stencil.config.ts#L10) it was already set to true. My changes, that fixes loading issue were made without...

I have a similar problem, I can reproduce it in my app, however not able to reproduce in test repo. I will try to describe what I see: - User...

@dconeybe It is not about the nullValue error, it is about the status of the firestore instance after this error (but very likely after other errors) - as you can...