Miško Hevery

Results 40 issues of Miško Hevery

Initial implementation of Qwik SDK generated by mitosis ## Description Add a short description of what changes you made, why you made them, and any other context that you think...

- Don't flatten state getters into state. This allows the state object to be removed in most cases, so that Qwik does not need to serialize it unnecessarily. - Support...

Currently, Mitosis generates the original prototype version of Qwik. Update the mitosis to generate the latest `qHook` syntax. - Idea is that this will be compatible with the optimizer. (https://github.com/BuilderIO/qwik/issues/60)...

enhancement
core
qwik

- Don't flatten state getters into state. This allows the state object to be removed in most cases, so that Qwik does not need to serialize it unnecessarily. - Support...

I have created a repro here: https://stackblitz.com/edit/js-z6rmar?file=index.js,index.html - The page renders! - But no events work! The reason is that because it is client-side rendering the system needs to generate...

bug

### Qwik Version any ### Operating System (or Browser) any ### Node Version (if applicable) _No response_ ### Which component is affected? Qwik Runtime ### Expected Behaviour Given: ```typscript ```...

bug

imagine you have `tabs` and `pane` directives where `pane` has to be a direct child of `tabs` ``` foo text ``` The above works, but so does this: ``` foo...

Maps are used often in Angular. Most of the maps have fewer than 20 keys, yet they create many objects. For small maps it is more efficient to do a...

Initial work here: https://github.com/angular/angular.dart/tree/macro A macro directive would execute on Template rather than after the Template is instantiated in the view. The exact details are not clear, but I think...

Currently an expression `a.b` matches both `a.b` as well as `a['b']`. The issue is that if `a` is a Map it is not possible to access map properties such as...