Skip to content

Commit 8570a1a

Browse files
committed
Update storytale
1 parent 7014412 commit 8570a1a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[versions]
22
aboutlibraries = "12.2.3"
3-
storytale = "0.0.4-alpha01+dev17"
3+
storytale = "0.0.4-alpha01+dev18"
44
agp = "8.7.3"
55
android-compileSdk = "35"
66
android-minSdk = "26"

ui-components/src/commonStories/kotlin/Divider.story.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ val `Custom Color Divider` by story {
3232
}
3333

3434
val `Divider with Parameters` by story {
35-
val thickness by parameter(2.dp)
35+
val thickness by parameter(2)
3636
val useCustomColor by parameter(false)
3737

3838
KotlinConfTheme {
3939
Divider(
40-
thickness = thickness,
40+
thickness = thickness.dp,
4141
color = if (useCustomColor) KotlinConfTheme.colors.primaryBackground else KotlinConfTheme.colors.strokeHalf
4242
)
4343
}
44-
}
44+
}

0 commit comments

Comments
 (0)