We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Current version of this tutorial depends on kotlin-wrappers-bom:1.0.0-pre.430. https://github.com/kotlin-hands-on/web-app-react-kotlin-js-gradle/blob/finished/build.gradle.kts#L28
kotlin-wrappers-bom:1.0.0-pre.430
But the latest version is kotlin-wrappers-bom:1.0.0-pre.750. I want to use the recent version of the module.
kotlin-wrappers-bom:1.0.0-pre.750
but kotlin-wrappers introduce following patch between 1.0.0-pre.430 and 1.0.0-pre.431. JetBrains/kotlin-wrappers@e7d01b1
As a result, this tutorial can't compile with the latest kotlin-wrappers-bom:1.0.0-pre.750.
Type mismatch: inferred type is org.w3c.dom.Element but web.dom.Element was expected
The text was updated successfully, but these errors were encountered:
If my understanding is correct, use import web.dom.document instead of import kotlinx.browser.document resolve the issue.
import web.dom.document
import kotlinx.browser.document
Sorry, something went wrong.
I recently did the jump from 1.0.0-pre.430 to 2025.1.3, see the commit here :: [Commit1][Commit2]. Some things I had to change ::
1.0.0-pre.430
2025.1.3
import csstype.*
import web.cssom.*
import dom.html.*
import web.html.*
@tokuhirom hope this helps 😄
No branches or pull requests
Current version of this tutorial depends on
kotlin-wrappers-bom:1.0.0-pre.430
.https://github.com/kotlin-hands-on/web-app-react-kotlin-js-gradle/blob/finished/build.gradle.kts#L28
But the latest version is
kotlin-wrappers-bom:1.0.0-pre.750
. I want to use the recent version of the module.but kotlin-wrappers introduce following patch between 1.0.0-pre.430 and 1.0.0-pre.431.
JetBrains/kotlin-wrappers@e7d01b1
As a result, this tutorial can't compile with the latest
kotlin-wrappers-bom:1.0.0-pre.750
.The text was updated successfully, but these errors were encountered: