Skip to content

Commit

Permalink
refactor(style): Migrate :style module to :style:theme
Browse files Browse the repository at this point in the history
  • Loading branch information
GerardPaligot committed Oct 20, 2023
1 parent 7d73593 commit 110471a
Show file tree
Hide file tree
Showing 62 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ include(":theme-m3:infos:infos-feature")
include(":theme-m3:event-list:event-list-ui")
include(":theme-m3:event-list:event-list-feature")
include(":theme-m3:navigation")
include(":theme-m3:style")
include(":theme-m3:style:theme")
include(":ui-camera")
2 changes: 1 addition & 1 deletion shared/core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ kotlin {
}
val androidMain by getting {
dependencies {
implementation(projects.themeM3.style)
implementation(projects.themeM3.style.theme)
implementation(libs.ktor.client.android)
implementation(libs.sqldelight.android)
implementation(libs.zxing)
Expand Down
2 changes: 1 addition & 1 deletion theme-m3/event-list/event-list-feature/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies {
implementation(projects.shared.core)
implementation(projects.themeM3.eventList.eventListUi)
implementation(projects.themeM3.navigation)
implementation(projects.themeM3.style)
implementation(projects.themeM3.style.theme)

implementation(libs.kotlinx.collections)

Expand Down
2 changes: 1 addition & 1 deletion theme-m3/event-list/event-list-ui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ android {

dependencies {
implementation(projects.shared.uiModels)
implementation(projects.themeM3.style)
implementation(projects.themeM3.style.theme)

implementation(platform(libs.androidx.compose.bom))
implementation(libs.androidx.compose.material3)
Expand Down
2 changes: 1 addition & 1 deletion theme-m3/infos/infos-feature/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies {
implementation(projects.shared.core)
implementation(projects.themeM3.infos.infosUi)
implementation(projects.themeM3.navigation)
implementation(projects.themeM3.style)
implementation(projects.themeM3.style.theme)

implementation(libs.kotlinx.collections)

Expand Down
2 changes: 1 addition & 1 deletion theme-m3/infos/infos-ui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies {
implementation(projects.uiCamera)
implementation(projects.shared.uiModels)
implementation(projects.themeM3.navigation)
implementation(projects.themeM3.style)
implementation(projects.themeM3.style.theme)

implementation(libs.kotlinx.collections)

Expand Down
2 changes: 1 addition & 1 deletion theme-m3/main/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ android {
dependencies {
api(projects.themeM3.schedules.schedulesUi)
api(projects.themeM3.speakers.speakersUi)
api(projects.themeM3.style)
api(projects.themeM3.style.theme)
implementation(projects.themeM3.schedules.schedulesFeature)
implementation(projects.themeM3.speakers.speakersFeature)
implementation(projects.themeM3.networking.networkingFeature)
Expand Down
2 changes: 1 addition & 1 deletion theme-m3/navigation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ android {
}

dependencies {
implementation(projects.themeM3.style)
implementation(projects.themeM3.style.theme)

implementation(libs.androidx.annotation)
implementation(libs.androidx.compose.icons)
Expand Down
2 changes: 1 addition & 1 deletion theme-m3/networking/networking-feature/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies {
implementation(projects.shared.core)
implementation(projects.themeM3.networking.networkingUi)
implementation(projects.themeM3.navigation)
implementation(projects.themeM3.style)
implementation(projects.themeM3.style.theme)

implementation(libs.kotlinx.collections)

Expand Down
2 changes: 1 addition & 1 deletion theme-m3/networking/networking-ui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies {
implementation(projects.uiCamera)
implementation(projects.shared.uiModels)
implementation(projects.themeM3.navigation)
implementation(projects.themeM3.style)
implementation(projects.themeM3.style.theme)

implementation(libs.kotlinx.collections)

Expand Down
2 changes: 1 addition & 1 deletion theme-m3/partners/partners-feature/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies {
implementation(projects.shared.core)
implementation(projects.themeM3.partners.partnersUi)
implementation(projects.themeM3.navigation)
implementation(projects.themeM3.style)
implementation(projects.themeM3.style.theme)

implementation(libs.kotlinx.collections)

Expand Down
2 changes: 1 addition & 1 deletion theme-m3/partners/partners-ui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ android {
dependencies {
implementation(projects.shared.uiModels)
implementation(projects.themeM3.navigation)
implementation(projects.themeM3.style)
implementation(projects.themeM3.style.theme)

implementation(libs.kotlinx.collections)

Expand Down
2 changes: 1 addition & 1 deletion theme-m3/schedules/schedules-feature/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies {
implementation(projects.shared.core)
implementation(projects.themeM3.schedules.schedulesUi)
implementation(projects.themeM3.navigation)
implementation(projects.themeM3.style)
implementation(projects.themeM3.style.theme)

implementation(libs.kotlinx.collections)

Expand Down
2 changes: 1 addition & 1 deletion theme-m3/schedules/schedules-ui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies {
implementation(projects.shared.uiModels)
implementation(projects.themeM3.speakers.speakersUi)
implementation(projects.themeM3.navigation)
implementation(projects.themeM3.style)
implementation(projects.themeM3.style.theme)

implementation(libs.kotlinx.collections)

Expand Down
2 changes: 1 addition & 1 deletion theme-m3/speakers/speakers-feature/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies {
implementation(projects.themeM3.schedules.schedulesUi)
implementation(projects.themeM3.speakers.speakersUi)
implementation(projects.themeM3.navigation)
implementation(projects.themeM3.style)
implementation(projects.themeM3.style.theme)

implementation(libs.kotlinx.collections)

Expand Down
2 changes: 1 addition & 1 deletion theme-m3/speakers/speakers-ui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ android {

dependencies {
implementation(projects.shared.uiModels)
implementation(projects.themeM3.style)
implementation(projects.themeM3.style.theme)

implementation(platform(libs.androidx.compose.bom))
implementation(libs.androidx.compose.material3)
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 110471a

Please sign in to comment.