fix(deps): update dependency androidx.compose.material3:material3 to v1.0.0-beta02 (#2115)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
parent
76f77073ec
commit
ddef295aa6
3 changed files with 17 additions and 5 deletions
14
.github/renovate.json
vendored
14
.github/renovate.json
vendored
|
@ -5,8 +5,20 @@
|
||||||
],
|
],
|
||||||
"packageRules": [
|
"packageRules": [
|
||||||
{
|
{
|
||||||
"matchPackagePatterns": ["^kotlin", "^org.jetbrains.kotlin"],
|
"matchPackagePatterns": [
|
||||||
|
"^kotlin",
|
||||||
|
"^org.jetbrains.kotlin"
|
||||||
|
],
|
||||||
"groupName": "kotlin"
|
"groupName": "kotlin"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"managers": [
|
||||||
|
"gradle"
|
||||||
|
],
|
||||||
|
"matchPackagePatterns": [
|
||||||
|
"^androidx.appcompat"
|
||||||
|
],
|
||||||
|
"enabled": false
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"regexManagers": [
|
"regexManagers": [
|
||||||
|
|
|
@ -17,7 +17,7 @@ androidx-activity-compose = { module = "androidx.activity:activity-compose", ver
|
||||||
androidx-activity-ktx = { module = "androidx.activity:activity-ktx", version.ref = "androidxActivity" }
|
androidx-activity-ktx = { module = "androidx.activity:activity-ktx", version.ref = "androidxActivity" }
|
||||||
androidx-annotation = "androidx.annotation:annotation:1.5.0-rc01"
|
androidx-annotation = "androidx.annotation:annotation:1.5.0-rc01"
|
||||||
# @pin beta01 moved DrawableWrapper to public API, breaking the FastScroll library
|
# @pin beta01 moved DrawableWrapper to public API, breaking the FastScroll library
|
||||||
androidx-appcompat = "androidx.appcompat:appcompat:1.6.0-rc01"
|
androidx-appcompat = "androidx.appcompat:appcompat:1.6.0-alpha05"
|
||||||
androidx-autofill = "androidx.autofill:autofill:1.2.0-beta01"
|
androidx-autofill = "androidx.autofill:autofill:1.2.0-beta01"
|
||||||
androidx-biometricKtx = "androidx.biometric:biometric-ktx:1.2.0-alpha04"
|
androidx-biometricKtx = "androidx.biometric:biometric-ktx:1.2.0-alpha04"
|
||||||
androidx-constraintlayout = "androidx.constraintlayout:constraintlayout:2.2.0-alpha03"
|
androidx-constraintlayout = "androidx.constraintlayout:constraintlayout:2.2.0-alpha03"
|
||||||
|
@ -55,7 +55,7 @@ compose-foundation-core = { module = "androidx.compose.foundation:foundation", v
|
||||||
compose-foundation-layout = { module = "androidx.compose.foundation:foundation-layout", version.ref = "composeFoundation" }
|
compose-foundation-layout = { module = "androidx.compose.foundation:foundation-layout", version.ref = "composeFoundation" }
|
||||||
compose-hilt = "androidx.hilt:hilt-navigation-compose:1.0.0"
|
compose-hilt = "androidx.hilt:hilt-navigation-compose:1.0.0"
|
||||||
compose-material = "androidx.compose.material:material:1.2.1"
|
compose-material = "androidx.compose.material:material:1.2.1"
|
||||||
compose-material3 = "androidx.compose.material3:material3:1.0.0-beta01"
|
compose-material3 = "androidx.compose.material3:material3:1.0.0-beta02"
|
||||||
compose-runtime = "androidx.compose.runtime:runtime:1.3.0-beta02"
|
compose-runtime = "androidx.compose.runtime:runtime:1.3.0-beta02"
|
||||||
compose-ui-core = { module = "androidx.compose.ui:ui", version.ref = "composeUi" }
|
compose-ui-core = { module = "androidx.compose.ui:ui", version.ref = "composeUi" }
|
||||||
compose-ui-test = { module = "androidx.compose.ui:ui-test-junit4", version.ref = "composeUi" }
|
compose-ui-test = { module = "androidx.compose.ui:ui-test-junit4", version.ref = "composeUi" }
|
||||||
|
|
|
@ -3,8 +3,8 @@ package app.passwordstore.ui
|
||||||
import androidx.compose.material3.ExperimentalMaterial3Api
|
import androidx.compose.material3.ExperimentalMaterial3Api
|
||||||
import androidx.compose.material3.Icon
|
import androidx.compose.material3.Icon
|
||||||
import androidx.compose.material3.IconButton
|
import androidx.compose.material3.IconButton
|
||||||
import androidx.compose.material3.SmallTopAppBar
|
|
||||||
import androidx.compose.material3.Text
|
import androidx.compose.material3.Text
|
||||||
|
import androidx.compose.material3.TopAppBar
|
||||||
import androidx.compose.material3.TopAppBarDefaults
|
import androidx.compose.material3.TopAppBarDefaults
|
||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
|
@ -20,7 +20,7 @@ public fun APSAppBar(
|
||||||
onNavigationIconClick: (() -> Unit)?,
|
onNavigationIconClick: (() -> Unit)?,
|
||||||
modifier: Modifier = Modifier,
|
modifier: Modifier = Modifier,
|
||||||
) {
|
) {
|
||||||
SmallTopAppBar(
|
TopAppBar(
|
||||||
title = { Text(text = title) },
|
title = { Text(text = title) },
|
||||||
navigationIcon = {
|
navigationIcon = {
|
||||||
if (navigationIcon != null) {
|
if (navigationIcon != null) {
|
||||||
|
|
Loading…
Reference in a new issue