Skip to content

Commit

Permalink
pre.227
Browse files Browse the repository at this point in the history
  • Loading branch information
Leonya committed Aug 6, 2021
1 parent 243bb05 commit 8e9bc29
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ about version compatibility.
Just declare `kotlin-wrappers-bom` and specify the modules you need:

```kotlin
val kotlinWrappersVersion = "0.0.1-pre.222-kotlin-1.5.21"
val kotlinWrappersVersion = "0.0.1-pre.227-kotlin-1.5.21"

dependencies {
implementation(enforcedPlatform("org.jetbrains.kotlin-wrappers:kotlin-wrappers-bom:${kotlinWrappersVersion}"))
Expand All @@ -58,7 +58,7 @@ Or use a helper function:
fun kotlinw(target: String): String =
"org.jetbrains.kotlin-wrappers:kotlin-$target"

val kotlinWrappersVersion = "0.0.1-pre.222-kotlin-1.5.21"
val kotlinWrappersVersion = "0.0.1-pre.227-kotlin-1.5.21"

dependencies {
implementation(enforcedPlatform(kotlinw("wrappers-bom:${kotlinWrappersVersion}")))
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group=org.jetbrains.kotlin-wrappers
version.build=pre.226
version.build=pre.227

kotlin.code.style=official
kotlin.js.compiler=both
Expand Down
5 changes: 4 additions & 1 deletion kotlin-styled-next/src/jsTest/kotlin/test/AtRulesTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,10 @@ class AtRulesTest : TestBase() {
}
}
clearAndInject(styledComponent)
assertCssInjected("@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi)", listOf("font-size" to "18px"))
assertCssInjected(
"@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi)",
listOf("font-size" to "18px")
)
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ package test
import kotlinx.browser.window
import kotlinx.css.CssBuilder
import kotlinx.css.color
import kotlinx.html.ButtonType
import kotlinx.html.InputType
import react.RProps
import react.dom.*
import react.dom.attrs
import react.fc
import runTest
import styled.*
import styled.css
import styled.styledDiv
import styled.styledInput
import kotlin.test.Test
import kotlin.test.assertEquals
import kotlin.test.assertNotEquals
Expand Down
3 changes: 2 additions & 1 deletion kotlin-styled-next/src/jsTest/kotlin/test/StyleSheetTest.kt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package test

import kotlinx.css.*
import kotlinx.css.CssBuilder
import kotlinx.css.px
import react.RProps
import react.fc
import runTest
Expand Down
2 changes: 1 addition & 1 deletion kotlin-wrappers-bom/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ to have version mismatches.
Usage:

```kotlin
val kotlinWrappersVersion = "0.0.1-pre.222-kotlin-1.5.21"
val kotlinWrappersVersion = "0.0.1-pre.227-kotlin-1.5.21"

dependencies {
implementation(enforcedPlatform("org.jetbrains.kotlin-wrappers:kotlin-wrappers-bom:${kotlinWrappersVersion}"))
Expand Down

0 comments on commit 8e9bc29

Please sign in to comment.