- Introduced `NennungsEingangScreen` for managing online nomination entries. - Added `NennungsEingang` to `AppScreen` with corresponding route configuration. - Updated `DesktopMainLayout` to include navigation and UI components for `NennungsEingang`. - Adjusted `PreviewMain` for screen integration and testing.
72 lines
1.8 KiB
Plaintext
72 lines
1.8 KiB
Plaintext
@file:OptIn(ExperimentalWasmDsl::class)
|
|
|
|
import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl
|
|
|
|
plugins {
|
|
alias(libs.plugins.kotlinMultiplatform)
|
|
alias(libs.plugins.composeCompiler)
|
|
alias(libs.plugins.composeMultiplatform)
|
|
alias(libs.plugins.kotlinSerialization)
|
|
}
|
|
|
|
kotlin {
|
|
jvm()
|
|
|
|
js(IR) {
|
|
binaries.library()
|
|
browser {
|
|
testTask {
|
|
enabled = false
|
|
}
|
|
}
|
|
}
|
|
|
|
wasmJs {
|
|
browser {
|
|
testTask {
|
|
enabled = false
|
|
}
|
|
}
|
|
binaries.executable()
|
|
}
|
|
|
|
sourceSets {
|
|
wasmJsMain.dependencies {
|
|
// Core-Module
|
|
implementation(projects.frontend.core.domain)
|
|
implementation(projects.frontend.core.designSystem)
|
|
implementation(projects.frontend.core.navigation)
|
|
implementation(projects.frontend.core.network)
|
|
implementation(projects.frontend.core.auth)
|
|
|
|
// Feature-Module (die öffentlich sein dürfen)
|
|
implementation(projects.frontend.features.veranstaltungFeature)
|
|
implementation(projects.frontend.features.turnierFeature)
|
|
implementation(projects.frontend.features.nennungFeature)
|
|
implementation(projects.frontend.features.billingFeature)
|
|
|
|
// Compose Multiplatform
|
|
implementation(compose.runtime)
|
|
implementation(compose.foundation)
|
|
implementation(compose.material3)
|
|
implementation(compose.ui)
|
|
implementation(compose.components.resources)
|
|
implementation(libs.compose.materialIconsExtended)
|
|
|
|
// DI (Koin)
|
|
implementation(libs.koin.core)
|
|
implementation(libs.koin.compose)
|
|
implementation(libs.koin.compose.viewmodel)
|
|
|
|
// Bundles
|
|
implementation(libs.bundles.kmp.common)
|
|
implementation(libs.bundles.compose.common)
|
|
}
|
|
|
|
wasmJsTest.dependencies {
|
|
// Core-Module
|
|
implementation(projects.frontend.core.domain)
|
|
}
|
|
}
|
|
}
|