Files
floret-kit/build.gradle.kts
Jean-Luc Makiola 2124227a7f feat(components): add CustomAmountEditor, bump to 0.2.0
Extract the shared presets-plus-custom editor card — tonal surface with the
connected shape, an optional single-choice unit toggle, and an amount field
with a live preview + confirm — used by the reminder, agenda-range and snooze
pickers into one reusable, presentational component.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-08 18:01:42 +02:00

15 lines
545 B
Kotlin

// Top-level build for floret-kit. Plugins are declared here (apply false) and
// applied per-module. Every module shares the family group + version so the
// consuming apps can depend on `de.jeanlucmakiola.floret:<module>` and Gradle's
// composite-build substitution maps it to the local source module.
plugins {
alias(libs.plugins.android.library) apply false
alias(libs.plugins.kotlin.compose) apply false
alias(libs.plugins.kotlin.jvm) apply false
}
subprojects {
group = "de.jeanlucmakiola.floret"
version = "0.2.0"
}