Victor Turansky

Results 74 comments of Victor Turansky

@iamcyw We already have support "spread operator" for `Props` You can use [following syntax](https://github.com/karakum-team/mui-kotlin/blob/fbd03eacb3543299451c7e767aa7a4022e0a3ed6/playground/src/jsMain/kotlin/MyAutocomplete.kt#L18)

> We have plans for react hook form or @tanstack/react-form? Unfortunately no :( We checked both. They are very TS/JS-oriented. As result - it's hard to provide strict API. MUI...

Compiler plugin with conditional rendering support [is ready](https://github.com/turansky/seskar#conditional-rendering)!

@Ayfri Are you ready to test resulted declarations?

@lucgirardin I don't see `unstable_useTimeout` or `useTimeout` in Kotlin declarations. It looks like MUI (JS library) issue, which will be solved with MUI upgrade.

@lucgirardin Could you please check if problem reproduced with `pre.706`?

For Node.js applications you need use CommonJS or ES module (both modular). ```kotlin kotlin { js { useCommonJs() // useEsModules() (fine default for Node and Browser) } } ``` also...

> I.e. will it force the chosen module system on them? Partially. You can force modular module system (CommonJS or ESM) via declarations - like we do. Module kind of...

What about [Fastify](https://fastify.dev/)? Will it work for you (instead of expressjs)?