Skip to content

Commit

Permalink
Merge pull request #329 from Spendesk/release/1.21.2
Browse files Browse the repository at this point in the history
Release 1.21.2
  • Loading branch information
RomainGF authored Jan 10, 2024
2 parents 9d96f1f + b4af008 commit 4666fe7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
grapes-version = '1.21.1'
grapes-version = '1.21.2'
androidMinSdk = "21"
androidTargetSdk = "34"
androidCompileSdk = "34"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ fun GrapesHighlightIconNeutral(
GrapesHighlightIcon(
painter = painter,
contentDescription = contentDescription,
tint = GrapesTheme.colors.neutralNormal,
tint = GrapesTheme.colors.neutralDark,
containerColor = GrapesTheme.colors.neutralLightest,
borderColor = GrapesTheme.colors.neutralLighter,
size = size,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,12 @@ internal fun GrapesSelector(
color = colors.backgroundColor,
shape = shape,
onClick = onClick,
modifier = modifier,
) {
Row(
verticalAlignment = Alignment.CenterVertically,
horizontalArrangement = Arrangement.spacedBy(GrapesTheme.dimensions.spacing1),
modifier = modifier
modifier = Modifier
.border(1.dp, colors.borderColor, shape = shape)
.padding(contentPadding)
) {
Expand Down

0 comments on commit 4666fe7

Please sign in to comment.