diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..88a1917b --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,56 @@ +name: CI + +on: + push: + branches: [ "*" ] +# pull_request: +# branches: [ "*" ] + +jobs: + check: + + strategy: + matrix: + os: [ ubuntu-latest, macos-latest, windows-latest ] + runs-on: ${{ matrix.os }} + permissions: + contents: read + + steps: + - uses: actions/checkout@v4 + - name: Set up JDK 8 + uses: actions/setup-java@v4 + with: + java-version: '8' + distribution: 'zulu' + - name: Set up JDK 17 + uses: actions/setup-java@v4 + with: + java-version: '17' + distribution: 'temurin' + + - name: Setup Gradle + uses: gradle/actions/setup-gradle@v4 + + - name: Check with Gradle Wrapper + run: ./gradlew check + + dependency-submission: + + strategy: + matrix: + os: [ ubuntu-latest, macos-latest, windows-latest ] + runs-on: ${{ matrix.os }} + permissions: + contents: write + + steps: + - uses: actions/checkout@v4 + - name: Set up JDK 17 + uses: actions/setup-java@v4 + with: + java-version: '17' + distribution: 'temurin' + + - name: Generate and submit dependency graph + uses: gradle/actions/dependency-submission@v4 diff --git a/.github/workflows/demo-gh-pages.yml b/.github/workflows/demo-gh-pages.yml new file mode 100644 index 00000000..5d7e2b77 --- /dev/null +++ b/.github/workflows/demo-gh-pages.yml @@ -0,0 +1,61 @@ +name: Deploy the demo to GitHub Pages + +on: + push: + branches: [ "release" ] + pull_request: + branches: [ "release" ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + # Build job + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup Pages + uses: actions/configure-pages@v5 + + - name: Set up JDK 17 + uses: actions/setup-java@v4 + with: + java-version: "17" + distribution: "temurin" + + - name: Setup Gradle + uses: gradle/actions/setup-gradle@v4 + + - name: Build the distribution with Gradle Wrapper + run: ./gradlew :compose-multiplatform-html-unified-demo:sideBySideBrowserDistribution + + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + with: + path: demo/build/dist/sideBySide/productionExecutable/ + + # Deployment job + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + needs: build + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ca9f898..aed6f9ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Change log +## v0.5.0 / 2024-12-05 + +Important changes: + +* This library is renamed from **Compose Multiplatform Material** to **Compose Multiplatform HTML Unified** which better describes its purpose since this release. The **Maven coordinates** have changed accordingly. Please adapt to these changes following the updated README.md. +* replace the terms "Androidx"/"androidx"/"AndroidxCommon"/"androidxCommon" with Compose UI / "ComposeUi" / "composeUi" at appropriate places, both in docs and in code + + This introduces some breaking changes. Please adapt accordingly. We are sorry for the inconvenience. + +Functional change: + +* delegate `Spacer` just to `DivBox` on JS DOM because the Kobweb `Spacer` has a different semantic from the Compose UI one + +Miscellaneous changes: + +* bump Kotlin to 2.1.0, Compose Multiplatform to 1.7.1, and Kobweb to 0.20.0 +* add a "side by side" demo hosted at +* add CODE_OF_CONDUCT.md and CONTRIBUTING.md +* use the Kotlin binary compatibility validator +* run IntelliJ IDEA Code Cleanup and Reformat Code on the whole project + ## v0.4.0 / 2024-10-24 * fix a bug that a dependent project might crash on Android and add the Android target explicitly for all modules diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 00000000..da809872 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,128 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +We as members, contributors, and leaders pledge to make participation in our +community a harassment-free experience for everyone, regardless of age, body +size, visible or invisible disability, ethnicity, sex characteristics, gender +identity and expression, level of experience, education, socio-economic status, +nationality, personal appearance, race, religion, or sexual identity +and orientation. + +We pledge to act and interact in ways that contribute to an open, welcoming, +diverse, inclusive, and healthy community. + +## Our Standards + +Examples of behavior that contributes to a positive environment for our +community include: + +* Demonstrating empathy and kindness toward other people +* Being respectful of differing opinions, viewpoints, and experiences +* Giving and gracefully accepting constructive feedback +* Accepting responsibility and apologizing to those affected by our mistakes, + and learning from the experience +* Focusing on what is best not just for us as individuals, but for the + overall community + +Examples of unacceptable behavior include: + +* The use of sexualized language or imagery, and sexual attention or + advances of any kind +* Trolling, insulting or derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or email + address, without their explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Enforcement Responsibilities + +Community leaders are responsible for clarifying and enforcing our standards of +acceptable behavior and will take appropriate and fair corrective action in +response to any behavior that they deem inappropriate, threatening, offensive, +or harmful. + +Community leaders have the right and responsibility to remove, edit, or reject +comments, commits, code, wiki edits, issues, and other contributions that are +not aligned to this Code of Conduct, and will communicate reasons for moderation +decisions when appropriate. + +## Scope + +This Code of Conduct applies within all community spaces, and also applies when +an individual is officially representing the community in public spaces. +Examples of representing our community include using an official e-mail address, +posting via an official social media account, or acting as an appointed +representative at an online or offline event. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported to the community leaders responsible for enforcement at +shreckye@gmail.com. +All complaints will be reviewed and investigated promptly and fairly. + +All community leaders are obligated to respect the privacy and security of the +reporter of any incident. + +## Enforcement Guidelines + +Community leaders will follow these Community Impact Guidelines in determining +the consequences for any action they deem in violation of this Code of Conduct: + +### 1. Correction + +**Community Impact**: Use of inappropriate language or other behavior deemed +unprofessional or unwelcome in the community. + +**Consequence**: A private, written warning from community leaders, providing +clarity around the nature of the violation and an explanation of why the +behavior was inappropriate. A public apology may be requested. + +### 2. Warning + +**Community Impact**: A violation through a single incident or series +of actions. + +**Consequence**: A warning with consequences for continued behavior. No +interaction with the people involved, including unsolicited interaction with +those enforcing the Code of Conduct, for a specified period of time. This +includes avoiding interactions in community spaces as well as external channels +like social media. Violating these terms may lead to a temporary or +permanent ban. + +### 3. Temporary Ban + +**Community Impact**: A serious violation of community standards, including +sustained inappropriate behavior. + +**Consequence**: A temporary ban from any sort of interaction or public +communication with the community for a specified period of time. No public or +private interaction with the people involved, including unsolicited interaction +with those enforcing the Code of Conduct, is allowed during this period. +Violating these terms may lead to a permanent ban. + +### 4. Permanent Ban + +**Community Impact**: Demonstrating a pattern of violation of community +standards, including sustained inappropriate behavior, harassment of an +individual, or aggression toward or disparagement of classes of individuals. + +**Consequence**: A permanent ban from any sort of public interaction within +the community. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], +version 2.0, available at +https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. + +Community Impact Guidelines were inspired by [Mozilla's code of conduct +enforcement ladder](https://github.com/mozilla/diversity). + +[homepage]: https://www.contributor-covenant.org + +For answers to common questions about this code of conduct, see the FAQ at +https://www.contributor-covenant.org/faq. Translations are available at +https://www.contributor-covenant.org/translations. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..ca714dfe --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,23 @@ +# Contributing guidelines + +Hello, thank you for your interest in contributing to our project. + +## Issues and Discussions + +You are welcome to submit issues on bugs or feature requests. If you have questions, please ask them in GitHub Discussions. + +## Pull requests + +If you want to contribute to the code of our project, you are welcome to open pull requests. However, it's always a good idea to open a related issue or talk with us in Discussions first. + +## Development + +Please make sure you have a valid JDK installed. Some projects may require multiple JDKs of different versions. The JDK version we use can be found in the [GitHub Actions workflow files](.github/workflows). + +We recommend developing with IntelliJ IDEA. In IntelliJ IDEA, select the correct [Project SDK in Project Structure](https://www.jetbrains.com/help/idea/project-settings-and-structure.html#project-sdk) and it's recommended to set [Gradle JVM](https://www.jetbrains.com/help/idea/gradle-jvm-selection.html#jvm_settings) to "Project SDK". + +Run the `publishToMavenLocal` Gradle task to publish the libraries to your machine's Maven Local Repository so your projects can depend on the changes you have made, run `check` to ensure our limited number of tests pass. + +## Furthur notice + +We are currently a small team with limited effort. While we may not always implement your requested features, merge your pull requests, or do such things in time, you are always welcome to create your own fork and make any changes you like. diff --git a/README.md b/README.md index 50de60de..4858815a 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,27 @@ -# Compose Multiplatform Material (better name pending): unified Compose Multiplatform common extensions and Material wrappers for `androidx.compose` and Compose HTML +# Compose Multiplatform HTML Unified -[![Maven Central](https://img.shields.io/maven-central/v/com.huanshankeji/compose-multiplatform-material3)](https://search.maven.org/search?q=g:com.huanshankeji%20AND%20a:compose-multiplatform-*) -![Kotlin version](https://kotlin-version.aws.icerock.dev/kotlin-version?group=com.huanshankeji&name=compose-multiplatform-material3) +[![Maven Central](https://img.shields.io/maven-central/v/com.huanshankeji/compose-multiplatform-html-unified-common)](https://search.maven.org/search?q=g:com.huanshankeji%20AND%20a:compose-multiplatform-html-unified-*) +![Kotlin version](https://kotlin-version.aws.icerock.dev/kotlin-version?group=com.huanshankeji&name=compose-multiplatform-html-unified-common) -Unified Compose Multiplatform wrappers of common components, layouts, and Material Design components for `androidx.compose` (officially supported on Android, desktop (JVM), iOS, and web (Kotlin/Wasm)) and Compose HTML (mainly based on [Kobweb Silk](https://github.com/varabyte/kobweb?tab=readme-ov-file#silk) [Compose](https://github.com/varabyte/kobweb/tree/main/frontend/kobweb-compose), [KMDC](https://github.com/mpetuska/kmdc), and [Compose HTML Material](https://github.com/huanshankeji/compose-html-material) (which is then based on [Material Web](https://github.com/material-components/material-web))) +Unified Compose Multiplatform wrappers of common and **Material Design** APIs for **rendering-based Compose UI** (officially supported on Android, desktop (JVM), iOS, and web (Kotlin/Wasm)) and **DOM-based Compose HTML** -We try to provide a set of common extensions and composable component APIs akin to those in `androidx.compose` (`androidx.compose.foundation`, `androidx.compose.material`, and `androidx.compose.material3`), meanwhile making them compatible with the Compose HTML APIs. However, only subsets of the composables and composable parameters are supported due to the API differences, limitations of the JS (web) platform and the Compose HTML composables this project depends on, and our limited effort. +This library was previously named "Compose Multiplatform Material". -Complete visual consistency across different platforms is not guaranteed. +## The scope and implementations of the APIs provided -This project is still in development and has not reached the stable state yet. Some APIs are likely to be changed and there is no detailed documentation yet. Check out [the demo project](demo) on how to use the components in addition to the information below. +We try to provide a set of common APIs including composable component APIs akin to those in `androidx.compose` (`androidx.compose.foundation`, `androidx.compose.material`, and `androidx.compose.material3`), meanwhile making them compatible with the Compose HTML APIs. However, only subsets of the composables and composable parameters are supported due to the underlying API differences, limitations of the JS platform and the available Compose HTML composables this project depends on, and our limited effort. -## Supported features +The modules of this library correspond to the Compose Multiplatform modules (or Compose modules in AndroidX) that are not available for Compose HTML, aka those that depend on [the UI module](https://github.com/JetBrains/compose-multiplatform-core/tree/jb-main/compose/ui), more specifically [`ui-graphics`](https://github.com/JetBrains/compose-multiplatform-core/tree/jb-main/compose/ui/ui-graphics). The `common` module of this library corresponds to the `ui` and `foundation` modules, offering UI components (including layouts), modifiers, UI configuration classes, etc. + +The Compose HTML / JS DOM source is mainly based on [Kobweb Silk](https://github.com/varabyte/kobweb?tab=readme-ov-file#silk) [Compose](https://github.com/varabyte/kobweb/tree/main/frontend/kobweb-compose), [KMDC](https://github.com/mpetuska/kmdc), and [Compose HTML Material](https://github.com/huanshankeji/compose-html-material) (which is then based on [Material Web](https://github.com/material-components/material-web)). + +## References and limitations + +Complete visual consistency across different platforms is not guaranteed. See [the side-by-side demo site](https://huanshankeji.github.io/compose-multiplatform-html-unified/) for the visual effects and their differences. + +This project is still in development and has not reached a stable state. Some APIs are subject to change and there is no detailed documentation yet. Check out [the demo project source](demo) on how to use the components in addition to the sections below. + +## Supported API catalog ### Components @@ -32,7 +42,7 @@ This project is still in development and has not reached the stable state yet. S ###### `ext` layouts - - `BoxWithConstraints` +- `BoxWithConstraints` ##### Lazy @@ -82,7 +92,7 @@ This project is still in development and has not reached the stable state yet. S - `Button` (`FilledButton`), `ElevatedButton`, `FilledTonalButton`, `OutlinedButton`, `TextButton` - `Card` (`FilledCard`), `ElevatedCard`, `OutlinedCard` - `DropdownMenu`, `DropdownMenuItem` - - `ExposedDropdownMenuBox`, `ExposedDropdownMenuBoxScope.ExposedDropdownMenuBoxTextField`, `ExposedDropdownMenuBoxScope.ExposedDropdownMenu`, `ExposedDropdownMenuWithTextField` + - `ExposedDropdownMenuBox`, `ExposedDropdownMenuBoxScope.ExposedDropdownMenuBoxTextField`, `ExposedDropdownMenuBoxScope.ExposedDropdownMenu`, `ExposedDropdownMenuWithTextField` - `FloatingActionButton`, `SmallFloatingActionButton`, `LargeFloatingActionButton`, `ExtendedFloatingActionButton` - `IconButton`, `IconToggleButton`, `FilledIconButton`, `FilledIconToggleButton`, `FilledTonalIconButton`, `FilledTonalIconToggleButton`, `OutlinedIconButton`, `OutlinedIconToggleButton` - `NavigationBar`, `NavigationBarItem` @@ -95,12 +105,11 @@ This project is still in development and has not reached the stable state yet. S #### About `ext` components (components in the `ext` packages) -The components in the `ext` packages don't follow the `androidx.compose` APIs exactly, but rather provide wrappers are more idiomatic and conventional on both kinds of targets, wrapping different APIs which can't be unified following the `androidx.compose` APIs. +The components in the `ext` packages don't follow the `androidx.compose` APIs exactly, but rather provide wrappers that are more idiomatic and conventional on both kinds of targets, wrapping different APIs that can't be unified following the `androidx.compose` APIs. #### About parameter names -The parameter names with suffixes such as "JsDom" or "AndroidxCommon" are platform-specific, and only apply on their respective platform(s), Compose HTML / JS DOM or -`androidx.compose` platforms. +The parameter names with suffixes such as "JsDom" or "ComposeUi" are platform-specific, and only apply on their respective platform(s), Compose HTML / JS DOM or Compose UI platforms. #### Material Icons @@ -144,23 +153,24 @@ transition or animation on Compose HTML / JS DOM. These APIs are also highly exp See [CMP-4966](https://youtrack.jetbrains.com/issue/CMP-4966) for a bug to avoid. Also, ViewModel-related functions are not implemented yet on Compose HTML / JS DOM. -## Add the libraries to your dependency +## Add to your dependencies Maven coordinate: ```kotlin -"com.huanshankeji:compose-multiplatform-$module:$version" +"com.huanshankeji:compose-multiplatform-html-unified-$module:$version" ``` More specifically: + ```kotlin -"com.huanshankeji:compose-multiplatform-common:$version" -"com.huanshankeji:compose-multiplatform-material-icons-core:$version" -"com.huanshankeji:compose-multiplatform-material2:$version" -"com.huanshankeji:compose-multiplatform-material3:$version" +"com.huanshankeji:compose-multiplatform-html-unified-common:$version" +"com.huanshankeji:compose-multiplatform-html-unified-material-icons-core:$version" +"com.huanshankeji:compose-multiplatform-html-unified-material2:$version" +"com.huanshankeji:compose-multiplatform-html-unified-material3:$version" ``` -For example, depend on the Material 3 module with Gradle: +For example, to depend on the Material 3 module with Gradle: ```kotlin kotlin { @@ -168,7 +178,7 @@ kotlin { commonMain { dependencies { // ... - implementation("com.huanshankeji:compose-multiplatform-material3:$version") + implementation("com.huanshankeji:compose-multiplatform-html-unified-material3:$version") } } } diff --git a/build.gradle.kts b/build.gradle.kts index 1241019e..bbd56293 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,3 +1,18 @@ tasks.wrapper { distributionType = Wrapper.DistributionType.ALL } + +plugins { + id("org.jetbrains.kotlinx.binary-compatibility-validator") version "0.16.3" +} + +apiValidation { + @OptIn(kotlinx.validation.ExperimentalBCVApi::class) + klib { + enabled = true + } + + ignoredProjects += "compose-multiplatform-html-unified".let { + listOf("$it-demo", "$it-common-legacy") + } +} diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts index 5af5195f..20dc3e2c 100644 --- a/buildSrc/build.gradle.kts +++ b/buildSrc/build.gradle.kts @@ -3,19 +3,18 @@ plugins { } repositories { - mavenLocal() // TODO comment out when not needed + //mavenLocal() // comment out when not needed gradlePluginPortal() google() mavenCentral() } dependencies { - // With Kotlin 2.0.20, a "Could not parse POM" build error occurs in the JVM projects of some dependent projects. - val kotlinVersion = "2.0.10" + val kotlinVersion = "2.1.0" implementation(kotlin("gradle-plugin", kotlinVersion)) implementation("org.jetbrains.kotlin:compose-compiler-gradle-plugin:$kotlinVersion") - implementation("org.jetbrains.compose:compose-gradle-plugin:1.7.0") - implementation("com.huanshankeji.team:gradle-plugins:0.6.0") // don't use a snapshot version in a main branch + implementation("org.jetbrains.compose:compose-gradle-plugin:1.7.1") + implementation("com.huanshankeji.team:gradle-plugins:0.9.0") // don't use a snapshot version in a main branch implementation("com.android.tools.build:gradle:8.5.2") - implementation("com.huanshankeji:common-gradle-dependencies:0.8.0-20241016") // don't use a snapshot version in a main branch + implementation("com.huanshankeji:common-gradle-dependencies:0.9.0-20241203") // don't use a snapshot version in a main branch } diff --git a/buildSrc/src/main/kotlin/Constants.kt b/buildSrc/src/main/kotlin/Constants.kt index cfcdfdb0..caad779e 100644 --- a/buildSrc/src/main/kotlin/Constants.kt +++ b/buildSrc/src/main/kotlin/Constants.kt @@ -1,3 +1,3 @@ -const val FOR_COMPOSE_TARGETS_IN_TITLE = "for `androidx.compose` and Compose HTML" +const val FOR_COMPOSE_TARGETS_IN_TITLE = "for Compose UI and Compose HTML" const val FOR_COMPOSE_TARGETS_IN_DESCRIPTION = - "for `androidx.compose` (Android, desktop (JVM), iOS, and web (Kotlin/Wasm)) and Compose HTML" + "for Compose UI (Android, desktop (JVM), iOS, and web (Kotlin/Wasm)) and Compose HTML" diff --git a/buildSrc/src/main/kotlin/VersionsAndDependencies.kt b/buildSrc/src/main/kotlin/VersionsAndDependencies.kt index 86221b19..d3203a82 100644 --- a/buildSrc/src/main/kotlin/VersionsAndDependencies.kt +++ b/buildSrc/src/main/kotlin/VersionsAndDependencies.kt @@ -1,7 +1,7 @@ import com.huanshankeji.CommonDependencies import org.jetbrains.compose.ComposeBuildConfig -val projectVersion = "0.4.0" +val projectVersion = "0.5.0" val commonDependencies = CommonDependencies() diff --git a/buildSrc/src/main/kotlin/common-conventions.gradle.kts b/buildSrc/src/main/kotlin/common-conventions.gradle.kts index e525ae45..2df0e731 100644 --- a/buildSrc/src/main/kotlin/common-conventions.gradle.kts +++ b/buildSrc/src/main/kotlin/common-conventions.gradle.kts @@ -1,5 +1,5 @@ import org.jetbrains.kotlin.gradle.ExperimentalKotlinGradlePluginApi -import org.jetbrains.kotlin.gradle.targets.js.dsl.ExperimentalWasmDsl +import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl plugins { kotlin("multiplatform") @@ -8,7 +8,7 @@ plugins { } repositories { - mavenLocal() + //mavenLocal() // commented out so the build is always reproducible by others // put back if needed when depending on a snapshot mavenCentral() google() maven("https://us-central1-maven.pkg.dev/varabyte-repos/public") // for Kobweb @@ -18,7 +18,7 @@ group = "com.huanshankeji" version = projectVersion kotlin { - // for `androidx.compose` + // for Compose UI jvm() // TODO: `jvm("desktop")`? jvmToolchain(8) @@ -38,7 +38,21 @@ kotlin { js() + @OptIn(ExperimentalKotlinGradlePluginApi::class) + applyDefaultHierarchyTemplate { + common { + group("composeUi") { + withJvm() + withAndroidTarget() + group("ios") + withWasmJs() + } + } + } + + + compilerOptions { freeCompilerArgs.add("-Xexpect-actual-classes") } diff --git a/buildSrc/src/main/kotlin/lib-conventions-without-publishing.gradle.kts b/buildSrc/src/main/kotlin/lib-conventions-without-publishing.gradle.kts index c05e8410..052a2868 100644 --- a/buildSrc/src/main/kotlin/lib-conventions-without-publishing.gradle.kts +++ b/buildSrc/src/main/kotlin/lib-conventions-without-publishing.gradle.kts @@ -1,5 +1,3 @@ -import org.jetbrains.kotlin.gradle.ExperimentalKotlinGradlePluginApi - plugins { id("common-conventions") id("com.huanshankeji.kotlin-multiplatform-conventional-targets") @@ -11,26 +9,12 @@ kotlin { publishLibraryVariants("release", "debug") } - // move to `common-conventions` if necessary - - @OptIn(ExperimentalKotlinGradlePluginApi::class) - applyDefaultHierarchyTemplate { - common { - group("androidxCommon") { - withJvm() - withAndroidTarget() - group("ios") - withWasmJs() - } - } - } - /* sourceSets { - val androidxCommonMain by creating { dependsOn(commonMain.get()) } - jvmMain { dependsOn(androidxCommonMain) } - iosMain { dependsOn(androidxCommonMain) } - named("wasmJsMain") { dependsOn(androidxCommonMain) } + val composeUiMain by creating { dependsOn(commonMain.get()) } + jvmMain { dependsOn(composeUiMain) } + iosMain { dependsOn(composeUiMain) } + named("wasmJsMain") { dependsOn(composeUiMain) } } */ } diff --git a/common/api/android/compose-multiplatform-html-unified-common.api b/common/api/android/compose-multiplatform-html-unified-common.api new file mode 100644 index 00000000..27528923 --- /dev/null +++ b/common/api/android/compose-multiplatform-html-unified-common.api @@ -0,0 +1,807 @@ +public final class com/huanshankeji/compose/Content_composeUiKt { + public static final fun toContentWithoutModifier (Lkotlin/jvm/functions/Function3;)Lkotlin/jvm/functions/Function2; + public static final fun toNullableContentWithoutModifier (Lkotlin/jvm/functions/Function3;)Lkotlin/jvm/functions/Function2; +} + +public abstract interface annotation class com/huanshankeji/compose/ExtRecommendedApi : java/lang/annotation/Annotation { +} + +public abstract class com/huanshankeji/compose/ext/LoadingState { + public static final field $stable I +} + +public final class com/huanshankeji/compose/ext/LoadingState$Error : com/huanshankeji/compose/ext/LoadingState { + public static final field $stable I + public fun (Ljava/lang/Object;)V + public final fun getError ()Ljava/lang/Object; +} + +public final class com/huanshankeji/compose/ext/LoadingState$Loaded : com/huanshankeji/compose/ext/LoadingState { + public static final field $stable I + public fun (Ljava/lang/Object;)V + public final fun getValue ()Ljava/lang/Object; +} + +public final class com/huanshankeji/compose/ext/LoadingState$Loading : com/huanshankeji/compose/ext/LoadingState { + public static final field $stable I + public static final field INSTANCE Lcom/huanshankeji/compose/ext/LoadingState$Loading; +} + +public final class com/huanshankeji/compose/foundation/Background_composeUiKt { + public static final fun background (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/graphics/Color;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/BorderStroke { + public static final field $stable I + public synthetic fun (FLcom/huanshankeji/compose/ui/graphics/Brush;Lkotlin/jvm/internal/DefaultConstructorMarker;)V + public final fun component1-D9Ej5fM ()F + public final fun component2 ()Lcom/huanshankeji/compose/ui/graphics/Brush; + public final fun copy-D5KLDUw (FLcom/huanshankeji/compose/ui/graphics/Brush;)Lcom/huanshankeji/compose/foundation/BorderStroke; + public static synthetic fun copy-D5KLDUw$default (Lcom/huanshankeji/compose/foundation/BorderStroke;FLcom/huanshankeji/compose/ui/graphics/Brush;ILjava/lang/Object;)Lcom/huanshankeji/compose/foundation/BorderStroke; + public fun equals (Ljava/lang/Object;)Z + public final fun getBrush ()Lcom/huanshankeji/compose/ui/graphics/Brush; + public final fun getWidth-D9Ej5fM ()F + public fun hashCode ()I + public fun toString ()Ljava/lang/String; +} + +public final class com/huanshankeji/compose/foundation/BorderStroke_composeUiKt { + public static final fun toPlatformValue (Lcom/huanshankeji/compose/foundation/BorderStroke;)Landroidx/compose/foundation/BorderStroke; +} + +public final class com/huanshankeji/compose/foundation/Border_composeUiKt { + public static final fun border (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/foundation/BorderStroke;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun border-lG28NQ4 (Lcom/huanshankeji/compose/ui/Modifier;FLcom/huanshankeji/compose/ui/graphics/Color;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public abstract interface annotation class com/huanshankeji/compose/foundation/ExperimentalFoundationApi : java/lang/annotation/Annotation { +} + +public final class com/huanshankeji/compose/foundation/OnClick_androidKt { + public static final fun onClick (Lcom/huanshankeji/compose/ui/Modifier;Lkotlin/jvm/functions/Function0;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/OnClick_composeUiKt { + public static final fun clickable (Lcom/huanshankeji/compose/ui/Modifier;Lkotlin/jvm/functions/Function0;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/Scroll_composeUiKt { + public static final fun HorizontalScrollBox (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;II)V + public static final fun VerticalScrollBox (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;II)V + public static final fun horizontalScroll (Lcom/huanshankeji/compose/ui/Modifier;Landroidx/compose/foundation/ScrollState;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun rememberScrollState (ILandroidx/compose/runtime/Composer;II)Landroidx/compose/foundation/ScrollState; + public static final fun verticalScroll (Lcom/huanshankeji/compose/ui/Modifier;Landroidx/compose/foundation/ScrollState;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/ext/BackgroundAndBorder_composeUiKt { + public static final fun roundedCornerBackgroundAndOuterBorder (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/foundation/BorderStroke;ILcom/huanshankeji/compose/ui/graphics/Color;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun roundedCornerBackgroundAndOuterBorder-SW5qh9g (Lcom/huanshankeji/compose/ui/Modifier;FLcom/huanshankeji/compose/ui/graphics/Color;FLcom/huanshankeji/compose/ui/graphics/Color;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun roundedCornerBackgroundAndOuterBorder-d8LSEHM (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/foundation/BorderStroke;FLcom/huanshankeji/compose/ui/graphics/Color;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun roundedCornerBackgroundAndOuterBorder-rAjV9yQ (Lcom/huanshankeji/compose/ui/Modifier;FLcom/huanshankeji/compose/ui/graphics/Color;ILcom/huanshankeji/compose/ui/graphics/Color;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/ext/Border_composeUiKt { + public static final fun outerBorder (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/foundation/BorderStroke;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun outerBorder-lG28NQ4 (Lcom/huanshankeji/compose/ui/Modifier;FLcom/huanshankeji/compose/ui/graphics/Color;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun roundedCornerOuterBorder (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/foundation/BorderStroke;I)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun roundedCornerOuterBorder-vfC735M (Lcom/huanshankeji/compose/ui/Modifier;FLcom/huanshankeji/compose/ui/graphics/Color;F)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun roundedCornerOuterBorder-wH6b6FI (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/foundation/BorderStroke;F)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun roundedCornerOuterBorder-ziNgDLE (Lcom/huanshankeji/compose/ui/Modifier;FLcom/huanshankeji/compose/ui/graphics/Color;I)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/ext/MatchPositionRelativeParentJsOnly_composeUiKt { + public static final fun matchPositionRelativeParentJsDom (Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/layout/Arrangement { + public static final field $stable I + public static final field INSTANCE Lcom/huanshankeji/compose/foundation/layout/Arrangement; + public final fun getBottom ()Lcom/huanshankeji/compose/foundation/layout/Arrangement$Vertical; + public final fun getCenter ()Lcom/huanshankeji/compose/foundation/layout/Arrangement$HorizontalOrVertical; + public final fun getEnd ()Lcom/huanshankeji/compose/foundation/layout/Arrangement$Horizontal; + public final fun getSpaceAround ()Lcom/huanshankeji/compose/foundation/layout/Arrangement$HorizontalOrVertical; + public final fun getSpaceBetween ()Lcom/huanshankeji/compose/foundation/layout/Arrangement$HorizontalOrVertical; + public final fun getSpaceEvenly ()Lcom/huanshankeji/compose/foundation/layout/Arrangement$HorizontalOrVertical; + public final fun getStart ()Lcom/huanshankeji/compose/foundation/layout/Arrangement$Horizontal; + public final fun getTop ()Lcom/huanshankeji/compose/foundation/layout/Arrangement$Vertical; + public final fun spacedBy-0680j_4 (F)Lcom/huanshankeji/compose/foundation/layout/Arrangement$HorizontalOrVertical; +} + +public abstract interface class com/huanshankeji/compose/foundation/layout/Arrangement$Horizontal { + public abstract fun getPlatformValue ()Landroidx/compose/foundation/layout/Arrangement$Horizontal; +} + +public final class com/huanshankeji/compose/foundation/layout/Arrangement$Horizontal$Impl : com/huanshankeji/compose/foundation/layout/Arrangement$Horizontal { + public static final field $stable I + public fun (Landroidx/compose/foundation/layout/Arrangement$Horizontal;)V + public fun getPlatformValue ()Landroidx/compose/foundation/layout/Arrangement$Horizontal; +} + +public abstract interface class com/huanshankeji/compose/foundation/layout/Arrangement$HorizontalOrVertical : com/huanshankeji/compose/foundation/layout/Arrangement$Horizontal, com/huanshankeji/compose/foundation/layout/Arrangement$Vertical { + public abstract fun getPlatformValue ()Landroidx/compose/foundation/layout/Arrangement$HorizontalOrVertical; +} + +public final class com/huanshankeji/compose/foundation/layout/Arrangement$HorizontalOrVertical$Impl : com/huanshankeji/compose/foundation/layout/Arrangement$HorizontalOrVertical { + public static final field $stable I + public fun (Landroidx/compose/foundation/layout/Arrangement$HorizontalOrVertical;)V + public synthetic fun getPlatformValue ()Landroidx/compose/foundation/layout/Arrangement$Horizontal; + public fun getPlatformValue ()Landroidx/compose/foundation/layout/Arrangement$HorizontalOrVertical; + public synthetic fun getPlatformValue ()Landroidx/compose/foundation/layout/Arrangement$Vertical; +} + +public abstract interface class com/huanshankeji/compose/foundation/layout/Arrangement$Vertical { + public abstract fun getPlatformValue ()Landroidx/compose/foundation/layout/Arrangement$Vertical; +} + +public final class com/huanshankeji/compose/foundation/layout/Arrangement$Vertical$Impl : com/huanshankeji/compose/foundation/layout/Arrangement$Vertical { + public static final field $stable I + public fun (Landroidx/compose/foundation/layout/Arrangement$Vertical;)V + public fun getPlatformValue ()Landroidx/compose/foundation/layout/Arrangement$Vertical; +} + +public abstract interface class com/huanshankeji/compose/foundation/layout/BoxScope { + public abstract fun align (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment;)Lcom/huanshankeji/compose/ui/Modifier; + public abstract fun getPlatformBoxScope ()Landroidx/compose/foundation/layout/BoxScope; +} + +public final class com/huanshankeji/compose/foundation/layout/BoxScope$DefaultImpls { + public static fun align (Lcom/huanshankeji/compose/foundation/layout/BoxScope;Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/layout/BoxScope$Impl : com/huanshankeji/compose/foundation/layout/BoxScope { + public fun align (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment;)Lcom/huanshankeji/compose/ui/Modifier; + public static fun align-impl (Landroidx/compose/foundation/layout/BoxScope;Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment;)Lcom/huanshankeji/compose/ui/Modifier; + public static final synthetic fun box-impl (Landroidx/compose/foundation/layout/BoxScope;)Lcom/huanshankeji/compose/foundation/layout/BoxScope$Impl; + public static fun constructor-impl (Landroidx/compose/foundation/layout/BoxScope;)Landroidx/compose/foundation/layout/BoxScope; + public fun equals (Ljava/lang/Object;)Z + public static fun equals-impl (Landroidx/compose/foundation/layout/BoxScope;Ljava/lang/Object;)Z + public static final fun equals-impl0 (Landroidx/compose/foundation/layout/BoxScope;Landroidx/compose/foundation/layout/BoxScope;)Z + public fun getPlatformBoxScope ()Landroidx/compose/foundation/layout/BoxScope; + public fun hashCode ()I + public static fun hashCode-impl (Landroidx/compose/foundation/layout/BoxScope;)I + public fun toString ()Ljava/lang/String; + public static fun toString-impl (Landroidx/compose/foundation/layout/BoxScope;)Ljava/lang/String; + public final synthetic fun unbox-impl ()Landroidx/compose/foundation/layout/BoxScope; +} + +public final class com/huanshankeji/compose/foundation/layout/Box_composeUiKt { + public static final fun Box (Lcom/huanshankeji/compose/ui/Modifier;Landroidx/compose/runtime/Composer;I)V + public static final fun Box (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;II)V +} + +public final class com/huanshankeji/compose/foundation/layout/ColumnKt { + public static final fun toCommonColumnScopeContent (Lkotlin/jvm/functions/Function3;)Lkotlin/jvm/functions/Function3; +} + +public abstract interface class com/huanshankeji/compose/foundation/layout/ColumnScope { + public abstract fun align (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment$Horizontal;)Lcom/huanshankeji/compose/ui/Modifier; + public abstract fun getPlatformValue ()Landroidx/compose/foundation/layout/ColumnScope; + public abstract fun weight (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/layout/ColumnScope$DefaultImpls { + public static fun align (Lcom/huanshankeji/compose/foundation/layout/ColumnScope;Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment$Horizontal;)Lcom/huanshankeji/compose/ui/Modifier; + public static fun weight (Lcom/huanshankeji/compose/foundation/layout/ColumnScope;Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/layout/ColumnScope$Impl : com/huanshankeji/compose/foundation/layout/ColumnScope { + public fun align (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment$Horizontal;)Lcom/huanshankeji/compose/ui/Modifier; + public static fun align-impl (Landroidx/compose/foundation/layout/ColumnScope;Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment$Horizontal;)Lcom/huanshankeji/compose/ui/Modifier; + public static final synthetic fun box-impl (Landroidx/compose/foundation/layout/ColumnScope;)Lcom/huanshankeji/compose/foundation/layout/ColumnScope$Impl; + public static fun constructor-impl (Landroidx/compose/foundation/layout/ColumnScope;)Landroidx/compose/foundation/layout/ColumnScope; + public fun equals (Ljava/lang/Object;)Z + public static fun equals-impl (Landroidx/compose/foundation/layout/ColumnScope;Ljava/lang/Object;)Z + public static final fun equals-impl0 (Landroidx/compose/foundation/layout/ColumnScope;Landroidx/compose/foundation/layout/ColumnScope;)Z + public fun getPlatformValue ()Landroidx/compose/foundation/layout/ColumnScope; + public fun hashCode ()I + public static fun hashCode-impl (Landroidx/compose/foundation/layout/ColumnScope;)I + public fun toString ()Ljava/lang/String; + public static fun toString-impl (Landroidx/compose/foundation/layout/ColumnScope;)Ljava/lang/String; + public final synthetic fun unbox-impl ()Landroidx/compose/foundation/layout/ColumnScope; + public fun weight (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; + public static fun weight-impl (Landroidx/compose/foundation/layout/ColumnScope;Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/layout/Column_composeUiKt { + public static final fun Column (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/foundation/layout/Arrangement$Vertical;Lcom/huanshankeji/compose/ui/Alignment$Horizontal;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;II)V +} + +public final class com/huanshankeji/compose/foundation/layout/IntrinsicSize : java/lang/Enum { + public static final field Max Lcom/huanshankeji/compose/foundation/layout/IntrinsicSize; + public static final field Min Lcom/huanshankeji/compose/foundation/layout/IntrinsicSize; + public static fun getEntries ()Lkotlin/enums/EnumEntries; + public static fun valueOf (Ljava/lang/String;)Lcom/huanshankeji/compose/foundation/layout/IntrinsicSize; + public static fun values ()[Lcom/huanshankeji/compose/foundation/layout/IntrinsicSize; +} + +public final class com/huanshankeji/compose/foundation/layout/Intrinsic_composeUiKt { + public static final fun height (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/foundation/layout/IntrinsicSize;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun toPlatformValue (Lcom/huanshankeji/compose/foundation/layout/IntrinsicSize;)Landroidx/compose/foundation/layout/IntrinsicSize; + public static final fun width (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/foundation/layout/IntrinsicSize;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public abstract class com/huanshankeji/compose/foundation/layout/PaddingValues { + public static final field $stable I + public fun (Landroidx/compose/foundation/layout/PaddingValues;)V + public final fun getPlatformValue ()Landroidx/compose/foundation/layout/PaddingValues; +} + +public final class com/huanshankeji/compose/foundation/layout/PaddingValues$Absolute : com/huanshankeji/compose/foundation/layout/PaddingValues { + public static final field $stable I + public synthetic fun (FFFFILkotlin/jvm/internal/DefaultConstructorMarker;)V + public synthetic fun (FFFFLkotlin/jvm/internal/DefaultConstructorMarker;)V + public fun (Landroidx/compose/foundation/layout/PaddingValues$Absolute;)V +} + +public final class com/huanshankeji/compose/foundation/layout/Padding_composeUiKt { + public static final fun PaddingValues-0680j_4 (F)Lcom/huanshankeji/compose/foundation/layout/PaddingValues; + public static final fun PaddingValues-YgX7TsA (FF)Lcom/huanshankeji/compose/foundation/layout/PaddingValues; + public static synthetic fun PaddingValues-YgX7TsA$default (FFILjava/lang/Object;)Lcom/huanshankeji/compose/foundation/layout/PaddingValues; + public static final fun PaddingValues-a9UjIt4 (FFFF)Lcom/huanshankeji/compose/foundation/layout/PaddingValues; + public static synthetic fun PaddingValues-a9UjIt4$default (FFFFILjava/lang/Object;)Lcom/huanshankeji/compose/foundation/layout/PaddingValues; + public static final fun absolutePadding-qDBjuR0 (Lcom/huanshankeji/compose/ui/Modifier;FFFF)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun absolutePadding-qDBjuR0$default (Lcom/huanshankeji/compose/ui/Modifier;FFFFILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun padding (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/foundation/layout/PaddingValues;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun padding-3ABfNKs (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun padding-VpY3zN4 (Lcom/huanshankeji/compose/ui/Modifier;FF)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun padding-VpY3zN4$default (Lcom/huanshankeji/compose/ui/Modifier;FFILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun padding-qDBjuR0 (Lcom/huanshankeji/compose/ui/Modifier;FFFF)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun padding-qDBjuR0$default (Lcom/huanshankeji/compose/ui/Modifier;FFFFILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun toCommonValue (Landroidx/compose/foundation/layout/PaddingValues;)Lcom/huanshankeji/compose/foundation/layout/PaddingValues; +} + +public final class com/huanshankeji/compose/foundation/layout/RowKt { + public static final fun toPlatformRowScopeContent (Lkotlin/jvm/functions/Function3;)Lkotlin/jvm/functions/Function3; +} + +public abstract interface class com/huanshankeji/compose/foundation/layout/RowScope { + public abstract fun align (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment$Vertical;)Lcom/huanshankeji/compose/ui/Modifier; + public abstract fun getPlatformValue ()Landroidx/compose/foundation/layout/RowScope; + public abstract fun weight (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/layout/RowScope$DefaultImpls { + public static fun align (Lcom/huanshankeji/compose/foundation/layout/RowScope;Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment$Vertical;)Lcom/huanshankeji/compose/ui/Modifier; + public static fun weight (Lcom/huanshankeji/compose/foundation/layout/RowScope;Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/layout/RowScope$Impl : com/huanshankeji/compose/foundation/layout/RowScope { + public fun align (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment$Vertical;)Lcom/huanshankeji/compose/ui/Modifier; + public static fun align-impl (Landroidx/compose/foundation/layout/RowScope;Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment$Vertical;)Lcom/huanshankeji/compose/ui/Modifier; + public static final synthetic fun box-impl (Landroidx/compose/foundation/layout/RowScope;)Lcom/huanshankeji/compose/foundation/layout/RowScope$Impl; + public static fun constructor-impl (Landroidx/compose/foundation/layout/RowScope;)Landroidx/compose/foundation/layout/RowScope; + public fun equals (Ljava/lang/Object;)Z + public static fun equals-impl (Landroidx/compose/foundation/layout/RowScope;Ljava/lang/Object;)Z + public static final fun equals-impl0 (Landroidx/compose/foundation/layout/RowScope;Landroidx/compose/foundation/layout/RowScope;)Z + public fun getPlatformValue ()Landroidx/compose/foundation/layout/RowScope; + public fun hashCode ()I + public static fun hashCode-impl (Landroidx/compose/foundation/layout/RowScope;)I + public fun toString ()Ljava/lang/String; + public static fun toString-impl (Landroidx/compose/foundation/layout/RowScope;)Ljava/lang/String; + public final synthetic fun unbox-impl ()Landroidx/compose/foundation/layout/RowScope; + public fun weight (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; + public static fun weight-impl (Landroidx/compose/foundation/layout/RowScope;Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/layout/Row_composeUiKt { + public static final fun Row (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/foundation/layout/Arrangement$Horizontal;Lcom/huanshankeji/compose/ui/Alignment$Vertical;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;II)V +} + +public final class com/huanshankeji/compose/foundation/layout/SizeKt { + public static final fun size-6HolHcs (Lcom/huanshankeji/compose/ui/Modifier;J)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/layout/Size_composeUiKt { + public static final fun fillMaxHeight (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun fillMaxHeight$default (Lcom/huanshankeji/compose/ui/Modifier;FILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun fillMaxSize (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun fillMaxSize$default (Lcom/huanshankeji/compose/ui/Modifier;FILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun fillMaxWidth (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun fillMaxWidth$default (Lcom/huanshankeji/compose/ui/Modifier;FILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun height-3ABfNKs (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun heightIn-VpY3zN4 (Lcom/huanshankeji/compose/ui/Modifier;FF)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun heightIn-VpY3zN4$default (Lcom/huanshankeji/compose/ui/Modifier;FFILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun size-3ABfNKs (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun size-VpY3zN4 (Lcom/huanshankeji/compose/ui/Modifier;FF)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun sizeIn-qDBjuR0 (Lcom/huanshankeji/compose/ui/Modifier;FFFF)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun sizeIn-qDBjuR0$default (Lcom/huanshankeji/compose/ui/Modifier;FFFFILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun width-3ABfNKs (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun widthIn-VpY3zN4 (Lcom/huanshankeji/compose/ui/Modifier;FF)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun widthIn-VpY3zN4$default (Lcom/huanshankeji/compose/ui/Modifier;FFILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun wrapContentHeight (Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun wrapContentSize (Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun wrapContentWidth (Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/layout/Spacer_composeUiKt { + public static final fun Spacer (Lcom/huanshankeji/compose/ui/Modifier;Landroidx/compose/runtime/Composer;I)V +} + +public abstract interface class com/huanshankeji/compose/foundation/layout/ext/BoxWithConstraintsScope : com/huanshankeji/compose/foundation/layout/BoxScope { + public abstract fun getMaxHeight-D9Ej5fM ()F + public abstract fun getMaxWidth-D9Ej5fM ()F +} + +public final class com/huanshankeji/compose/foundation/layout/ext/BoxWithConstraintsScope$DefaultImpls { + public static fun align (Lcom/huanshankeji/compose/foundation/layout/ext/BoxWithConstraintsScope;Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/layout/ext/BoxWithConstraintsScopeImpl : com/huanshankeji/compose/foundation/layout/ext/BoxWithConstraintsScope { + public static final field $stable I + public synthetic fun (Landroidx/compose/foundation/layout/BoxScope;FFLkotlin/jvm/internal/DefaultConstructorMarker;)V + public fun align (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment;)Lcom/huanshankeji/compose/ui/Modifier; + public fun getMaxHeight-D9Ej5fM ()F + public fun getMaxWidth-D9Ej5fM ()F + public fun getPlatformBoxScope ()Landroidx/compose/foundation/layout/BoxScope; +} + +public final class com/huanshankeji/compose/foundation/layout/ext/BoxWithConstraints_composeUiKt { + public static final fun BoxWithConstraints (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;II)V +} + +public final class com/huanshankeji/compose/foundation/layout/ext/InnerPadding_composeUiKt { + public static final fun absoluteInnerPadding-qDBjuR0 (Lcom/huanshankeji/compose/ui/Modifier;FFFF)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun absoluteInnerPadding-qDBjuR0$default (Lcom/huanshankeji/compose/ui/Modifier;FFFFILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun innerPadding (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/foundation/layout/PaddingValues;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun innerPadding-3ABfNKs (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun innerPadding-VpY3zN4 (Lcom/huanshankeji/compose/ui/Modifier;FF)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun innerPadding-VpY3zN4$default (Lcom/huanshankeji/compose/ui/Modifier;FFILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun innerPadding-qDBjuR0 (Lcom/huanshankeji/compose/ui/Modifier;FFFF)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun innerPadding-qDBjuR0$default (Lcom/huanshankeji/compose/ui/Modifier;FFFFILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/layout/ext/OuterPadding_composeUiKt { + public static final fun absoluteOuterPadding-qDBjuR0 (Lcom/huanshankeji/compose/ui/Modifier;FFFF)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun absoluteOuterPadding-qDBjuR0$default (Lcom/huanshankeji/compose/ui/Modifier;FFFFILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun outerPadding (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/foundation/layout/PaddingValues;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun outerPadding-3ABfNKs (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun outerPadding-VpY3zN4 (Lcom/huanshankeji/compose/ui/Modifier;FF)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun outerPadding-VpY3zN4$default (Lcom/huanshankeji/compose/ui/Modifier;FFILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun outerPadding-qDBjuR0 (Lcom/huanshankeji/compose/ui/Modifier;FFFF)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun outerPadding-qDBjuR0$default (Lcom/huanshankeji/compose/ui/Modifier;FFFFILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/layout/ext/Size_composeUiKt { + public static final fun fillMaxHeightStretch (Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun fillMaxSizeStretch (Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun fillMaxWidthStretch (Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/lazy/LazyDslKt { + public static final fun items (Lcom/huanshankeji/compose/foundation/lazy/LazyListScope;Ljava/util/List;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function4;)V + public static final fun items (Lcom/huanshankeji/compose/foundation/lazy/LazyListScope;[Ljava/lang/Object;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function4;)V + public static synthetic fun items$default (Lcom/huanshankeji/compose/foundation/lazy/LazyListScope;Ljava/util/List;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function4;ILjava/lang/Object;)V + public static synthetic fun items$default (Lcom/huanshankeji/compose/foundation/lazy/LazyListScope;[Ljava/lang/Object;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function4;ILjava/lang/Object;)V + public static final fun itemsIndexed (Lcom/huanshankeji/compose/foundation/lazy/LazyListScope;Ljava/util/List;Lkotlin/jvm/functions/Function2;Lkotlin/jvm/functions/Function2;Lkotlin/jvm/functions/Function5;)V + public static final fun itemsIndexed (Lcom/huanshankeji/compose/foundation/lazy/LazyListScope;[Ljava/lang/Object;Lkotlin/jvm/functions/Function2;Lkotlin/jvm/functions/Function2;Lkotlin/jvm/functions/Function5;)V + public static synthetic fun itemsIndexed$default (Lcom/huanshankeji/compose/foundation/lazy/LazyListScope;Ljava/util/List;Lkotlin/jvm/functions/Function2;Lkotlin/jvm/functions/Function2;Lkotlin/jvm/functions/Function5;ILjava/lang/Object;)V + public static synthetic fun itemsIndexed$default (Lcom/huanshankeji/compose/foundation/lazy/LazyListScope;[Ljava/lang/Object;Lkotlin/jvm/functions/Function2;Lkotlin/jvm/functions/Function2;Lkotlin/jvm/functions/Function5;ILjava/lang/Object;)V +} + +public final class com/huanshankeji/compose/foundation/lazy/LazyDsl_composeUiKt { + public static final fun LazyColumn (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/foundation/layout/PaddingValues;ZLcom/huanshankeji/compose/foundation/layout/Arrangement$Vertical;Lcom/huanshankeji/compose/ui/Alignment$Horizontal;Lkotlin/jvm/functions/Function1;Landroidx/compose/runtime/Composer;II)V + public static final fun LazyRow (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/foundation/layout/PaddingValues;ZLcom/huanshankeji/compose/foundation/layout/Arrangement$Horizontal;Lcom/huanshankeji/compose/ui/Alignment$Vertical;Lkotlin/jvm/functions/Function1;Landroidx/compose/runtime/Composer;II)V +} + +public final class com/huanshankeji/compose/foundation/lazy/LazyItemScope { + public static final field $stable I + public fun (Landroidx/compose/foundation/lazy/LazyItemScope;)V + public final fun fillParentMaxHeight (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun fillParentMaxHeight$default (Lcom/huanshankeji/compose/foundation/lazy/LazyItemScope;Lcom/huanshankeji/compose/ui/Modifier;FILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public final fun fillParentMaxSize (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun fillParentMaxSize$default (Lcom/huanshankeji/compose/foundation/lazy/LazyItemScope;Lcom/huanshankeji/compose/ui/Modifier;FILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public final fun fillParentMaxWidth (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun fillParentMaxWidth$default (Lcom/huanshankeji/compose/foundation/lazy/LazyItemScope;Lcom/huanshankeji/compose/ui/Modifier;FILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public final fun getPlatformValue ()Landroidx/compose/foundation/lazy/LazyItemScope; +} + +public final class com/huanshankeji/compose/foundation/lazy/LazyListScope { + public static final field $stable I + public fun (Landroidx/compose/foundation/lazy/LazyListScope;)V + public final fun getPlatformValue ()Landroidx/compose/foundation/lazy/LazyListScope; + public final fun item (Ljava/lang/Object;Ljava/lang/Object;Lkotlin/jvm/functions/Function3;)V + public static synthetic fun item$default (Lcom/huanshankeji/compose/foundation/lazy/LazyListScope;Ljava/lang/Object;Ljava/lang/Object;Lkotlin/jvm/functions/Function3;ILjava/lang/Object;)V + public final fun items (ILkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function4;)V + public static synthetic fun items$default (Lcom/huanshankeji/compose/foundation/lazy/LazyListScope;ILkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function4;ILjava/lang/Object;)V +} + +public final class com/huanshankeji/compose/foundation/text/BasicTextKt { + public static final synthetic fun BasicText (Ljava/lang/String;Landroidx/compose/runtime/Composer;I)V +} + +public final class com/huanshankeji/compose/foundation/text/BasicText_composeUiKt { + public static final fun BasicText (Ljava/lang/String;Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/graphics/ColorProducer;Landroidx/compose/runtime/Composer;II)V +} + +public abstract interface class com/huanshankeji/compose/foundation/text/KeyboardActionScope { + public abstract fun defaultKeyboardAction-BY5W8_o (I)V +} + +public final class com/huanshankeji/compose/foundation/text/KeyboardActionScope$DoNothingInstance : com/huanshankeji/compose/foundation/text/KeyboardActionScope { + public static final field $stable I + public static final field INSTANCE Lcom/huanshankeji/compose/foundation/text/KeyboardActionScope$DoNothingInstance; + public fun defaultKeyboardAction-BY5W8_o (I)V +} + +public final class com/huanshankeji/compose/foundation/text/KeyboardActions { + public static final field Companion Lcom/huanshankeji/compose/foundation/text/KeyboardActions$Companion; + public static final synthetic fun box-impl (Lkotlin/jvm/functions/Function1;)Lcom/huanshankeji/compose/foundation/text/KeyboardActions; + public static fun constructor-impl (Lkotlin/jvm/functions/Function1;)Lkotlin/jvm/functions/Function1; + public static synthetic fun constructor-impl$default (Lkotlin/jvm/functions/Function1;ILkotlin/jvm/internal/DefaultConstructorMarker;)Lkotlin/jvm/functions/Function1; + public fun equals (Ljava/lang/Object;)Z + public static fun equals-impl (Lkotlin/jvm/functions/Function1;Ljava/lang/Object;)Z + public static final fun equals-impl0 (Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function1;)Z + public final fun getOnAny ()Lkotlin/jvm/functions/Function1; + public fun hashCode ()I + public static fun hashCode-impl (Lkotlin/jvm/functions/Function1;)I + public fun toString ()Ljava/lang/String; + public static fun toString-impl (Lkotlin/jvm/functions/Function1;)Ljava/lang/String; + public final synthetic fun unbox-impl ()Lkotlin/jvm/functions/Function1; +} + +public final class com/huanshankeji/compose/foundation/text/KeyboardActions$Companion { + public final fun getDefault-eR24s0A ()Lkotlin/jvm/functions/Function1; +} + +public final class com/huanshankeji/compose/foundation/text/KeyboardActions_composeUiKt { + public static final fun toCommonValue (Landroidx/compose/foundation/text/KeyboardActionScope;)Lcom/huanshankeji/compose/foundation/text/KeyboardActionScope; + public static final fun toPlatformValue-XYNfWhM (Lkotlin/jvm/functions/Function1;)Landroidx/compose/foundation/text/KeyboardActions; +} + +public final class com/huanshankeji/compose/foundation/text/KeyboardOptions { + public static final field $stable I + public static final field Companion Lcom/huanshankeji/compose/foundation/text/KeyboardOptions$Companion; + public synthetic fun (Lcom/huanshankeji/compose/foundation/text/input/KeyboardCapitalization;Ljava/lang/Boolean;Lcom/huanshankeji/compose/foundation/text/input/KeyboardType;Lcom/huanshankeji/compose/foundation/text/input/ImeAction;Lcom/huanshankeji/compose/foundation/text/input/PlatformImeOptions;ILkotlin/jvm/internal/DefaultConstructorMarker;)V + public synthetic fun (Lcom/huanshankeji/compose/foundation/text/input/KeyboardCapitalization;Ljava/lang/Boolean;Lcom/huanshankeji/compose/foundation/text/input/KeyboardType;Lcom/huanshankeji/compose/foundation/text/input/ImeAction;Lcom/huanshankeji/compose/foundation/text/input/PlatformImeOptions;Lkotlin/jvm/internal/DefaultConstructorMarker;)V + public final fun getAutoCorrect ()Ljava/lang/Boolean; + public final fun getCapitalization-sV_096Q ()Lcom/huanshankeji/compose/foundation/text/input/KeyboardCapitalization; + public final fun getImeAction-YTjJnxY ()Lcom/huanshankeji/compose/foundation/text/input/ImeAction; + public final fun getKeyboardType-vTtPjw8 ()Lcom/huanshankeji/compose/foundation/text/input/KeyboardType; + public final fun getPlatformImeOptions ()Lcom/huanshankeji/compose/foundation/text/input/PlatformImeOptions; +} + +public final class com/huanshankeji/compose/foundation/text/KeyboardOptions$Companion { + public final fun getDefault ()Lcom/huanshankeji/compose/foundation/text/KeyboardOptions; +} + +public final class com/huanshankeji/compose/foundation/text/KeyboardOptions_composeUiKt { + public static final fun toPlatformValue (Lcom/huanshankeji/compose/foundation/text/KeyboardOptions;)Landroidx/compose/foundation/text/KeyboardOptions; +} + +public final class com/huanshankeji/compose/foundation/text/ext/TextKt { + public static final field INLINE_TEXT_DEPRECATED_MESSAGE Ljava/lang/String; + public static final fun InlineBasicText (Ljava/lang/String;Landroidx/compose/runtime/Composer;I)V + public static final fun SpanBasicText (Ljava/lang/String;Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/graphics/ColorProducer;Landroidx/compose/runtime/Composer;II)V +} + +public final class com/huanshankeji/compose/foundation/text/ext/Text_composeUiKt { + public static final fun TaglessBasicText (Ljava/lang/String;Landroidx/compose/runtime/Composer;I)V +} + +public final class com/huanshankeji/compose/foundation/text/input/ImeAction { + public static final field Companion Lcom/huanshankeji/compose/foundation/text/input/ImeAction$Companion; + public static final synthetic fun box-impl (I)Lcom/huanshankeji/compose/foundation/text/input/ImeAction; + public fun equals (Ljava/lang/Object;)Z + public static fun equals-impl (ILjava/lang/Object;)Z + public static final fun equals-impl0 (II)Z + public fun hashCode ()I + public static fun hashCode-impl (I)I + public fun toString ()Ljava/lang/String; + public static fun toString-impl (I)Ljava/lang/String; + public final synthetic fun unbox-impl ()I +} + +public final class com/huanshankeji/compose/foundation/text/input/ImeAction$Companion { + public final fun getDefault-wMdBJBk ()I + public final fun getDone-wMdBJBk ()I + public final fun getGo-wMdBJBk ()I + public final fun getNext-wMdBJBk ()I + public final fun getNone-wMdBJBk ()I + public final fun getPrevious-wMdBJBk ()I + public final fun getSearch-wMdBJBk ()I + public final fun getSend-wMdBJBk ()I +} + +public final class com/huanshankeji/compose/foundation/text/input/ImeAction_composeUiKt { + public static final fun toPlatformValue-BY5W8_o (I)I + public static final fun toPlatformValue-Ya8g6bQ (Lcom/huanshankeji/compose/foundation/text/input/ImeAction;)I +} + +public final class com/huanshankeji/compose/foundation/text/input/KeyboardCapitalization { + public static final field Companion Lcom/huanshankeji/compose/foundation/text/input/KeyboardCapitalization$Companion; + public static final synthetic fun box-impl (I)Lcom/huanshankeji/compose/foundation/text/input/KeyboardCapitalization; + public fun equals (Ljava/lang/Object;)Z + public static fun equals-impl (ILjava/lang/Object;)Z + public static final fun equals-impl0 (II)Z + public fun hashCode ()I + public static fun hashCode-impl (I)I + public fun toString ()Ljava/lang/String; + public static fun toString-impl (I)Ljava/lang/String; + public final synthetic fun unbox-impl ()I +} + +public final class com/huanshankeji/compose/foundation/text/input/KeyboardCapitalization$Companion { + public final fun getCharacters-yuZ006c ()I + public final fun getNone-yuZ006c ()I + public final fun getSentences-yuZ006c ()I + public final fun getWords-yuZ006c ()I +} + +public final class com/huanshankeji/compose/foundation/text/input/KeyboardCapitalization_composeUiKt { + public static final fun toPlatformValue-7c3A3NA (I)I + public static final fun toPlatformValue-M0wbBxY (Lcom/huanshankeji/compose/foundation/text/input/KeyboardCapitalization;)I +} + +public final class com/huanshankeji/compose/foundation/text/input/KeyboardType { + public static final field Companion Lcom/huanshankeji/compose/foundation/text/input/KeyboardType$Companion; + public static final synthetic fun box-impl (I)Lcom/huanshankeji/compose/foundation/text/input/KeyboardType; + public fun equals (Ljava/lang/Object;)Z + public static fun equals-impl (ILjava/lang/Object;)Z + public static final fun equals-impl0 (II)Z + public fun hashCode ()I + public static fun hashCode-impl (I)I + public fun toString ()Ljava/lang/String; + public static fun toString-impl (I)Ljava/lang/String; + public final synthetic fun unbox-impl ()I +} + +public final class com/huanshankeji/compose/foundation/text/input/KeyboardType$Companion { + public final fun getAscii-BGL2Dk4 ()I + public final fun getDecimal-BGL2Dk4 ()I + public final fun getEmail-BGL2Dk4 ()I + public final fun getNumber-BGL2Dk4 ()I + public final fun getNumberPassword-BGL2Dk4 ()I + public final fun getPassword-BGL2Dk4 ()I + public final fun getPhone-BGL2Dk4 ()I + public final fun getText-BGL2Dk4 ()I + public final fun getUri-BGL2Dk4 ()I +} + +public final class com/huanshankeji/compose/foundation/text/input/KeyboardType_composeUiKt { + public static final fun toPlatformValue-6FDry6U (Lcom/huanshankeji/compose/foundation/text/input/KeyboardType;)I + public static final fun toPlatformValue-awQKiIc (I)I +} + +public final class com/huanshankeji/compose/foundation/text/input/PlatformImeOptions { + public static final field $stable I + public fun (Landroidx/compose/ui/text/input/PlatformImeOptions;)V + public final fun getPlatformValue ()Landroidx/compose/ui/text/input/PlatformImeOptions; +} + +public final class com/huanshankeji/compose/layout/ext/HiddenKt { + public static final fun invisible (Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun reserveSpace (Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/layout/ext/Hidden_composeUiKt { + public static final fun hidden (Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/runtime/DeferredComposableRunner { + public static final field $stable I + public fun ()V + public final fun ComposableRun (Lkotlin/jvm/functions/Function0;Landroidx/compose/runtime/Composer;I)V + public final fun addComposable (Lkotlin/jvm/functions/Function2;)V +} + +public abstract interface class com/huanshankeji/compose/ui/Alignment { + public static final field Companion Lcom/huanshankeji/compose/ui/Alignment$Companion; + public abstract fun getPlatformAlignment ()Landroidx/compose/ui/Alignment; +} + +public final class com/huanshankeji/compose/ui/Alignment$Companion { + public final fun getBottom ()Lcom/huanshankeji/compose/ui/Alignment$Vertical; + public final fun getBottomCenter ()Lcom/huanshankeji/compose/ui/Alignment; + public final fun getBottomEnd ()Lcom/huanshankeji/compose/ui/Alignment; + public final fun getBottomStart ()Lcom/huanshankeji/compose/ui/Alignment; + public final fun getCenter ()Lcom/huanshankeji/compose/ui/Alignment; + public final fun getCenterEnd ()Lcom/huanshankeji/compose/ui/Alignment; + public final fun getCenterHorizontally ()Lcom/huanshankeji/compose/ui/Alignment$Horizontal; + public final fun getCenterStart ()Lcom/huanshankeji/compose/ui/Alignment; + public final fun getCenterVertically ()Lcom/huanshankeji/compose/ui/Alignment$Vertical; + public final fun getEnd ()Lcom/huanshankeji/compose/ui/Alignment$Horizontal; + public final fun getStart ()Lcom/huanshankeji/compose/ui/Alignment$Horizontal; + public final fun getTop ()Lcom/huanshankeji/compose/ui/Alignment$Vertical; + public final fun getTopCenter ()Lcom/huanshankeji/compose/ui/Alignment; + public final fun getTopEnd ()Lcom/huanshankeji/compose/ui/Alignment; + public final fun getTopStart ()Lcom/huanshankeji/compose/ui/Alignment; +} + +public abstract interface class com/huanshankeji/compose/ui/Alignment$Horizontal { + public abstract fun getPlatformHorizontal ()Landroidx/compose/ui/Alignment$Horizontal; +} + +public final class com/huanshankeji/compose/ui/Alignment$Horizontal$Impl : com/huanshankeji/compose/ui/Alignment$Horizontal { + public static final synthetic fun box-impl (Landroidx/compose/ui/Alignment$Horizontal;)Lcom/huanshankeji/compose/ui/Alignment$Horizontal$Impl; + public static fun constructor-impl (Landroidx/compose/ui/Alignment$Horizontal;)Landroidx/compose/ui/Alignment$Horizontal; + public fun equals (Ljava/lang/Object;)Z + public static fun equals-impl (Landroidx/compose/ui/Alignment$Horizontal;Ljava/lang/Object;)Z + public static final fun equals-impl0 (Landroidx/compose/ui/Alignment$Horizontal;Landroidx/compose/ui/Alignment$Horizontal;)Z + public fun getPlatformHorizontal ()Landroidx/compose/ui/Alignment$Horizontal; + public fun hashCode ()I + public static fun hashCode-impl (Landroidx/compose/ui/Alignment$Horizontal;)I + public fun toString ()Ljava/lang/String; + public static fun toString-impl (Landroidx/compose/ui/Alignment$Horizontal;)Ljava/lang/String; + public final synthetic fun unbox-impl ()Landroidx/compose/ui/Alignment$Horizontal; +} + +public final class com/huanshankeji/compose/ui/Alignment$Impl : com/huanshankeji/compose/ui/Alignment { + public static final synthetic fun box-impl (Landroidx/compose/ui/Alignment;)Lcom/huanshankeji/compose/ui/Alignment$Impl; + public static fun constructor-impl (Landroidx/compose/ui/Alignment;)Landroidx/compose/ui/Alignment; + public fun equals (Ljava/lang/Object;)Z + public static fun equals-impl (Landroidx/compose/ui/Alignment;Ljava/lang/Object;)Z + public static final fun equals-impl0 (Landroidx/compose/ui/Alignment;Landroidx/compose/ui/Alignment;)Z + public fun getPlatformAlignment ()Landroidx/compose/ui/Alignment; + public fun hashCode ()I + public static fun hashCode-impl (Landroidx/compose/ui/Alignment;)I + public fun toString ()Ljava/lang/String; + public static fun toString-impl (Landroidx/compose/ui/Alignment;)Ljava/lang/String; + public final synthetic fun unbox-impl ()Landroidx/compose/ui/Alignment; +} + +public abstract interface class com/huanshankeji/compose/ui/Alignment$Vertical { + public abstract fun getPlatformHorizontal ()Landroidx/compose/ui/Alignment$Vertical; +} + +public final class com/huanshankeji/compose/ui/Alignment$Vertical$Impl : com/huanshankeji/compose/ui/Alignment$Vertical { + public static final synthetic fun box-impl (Landroidx/compose/ui/Alignment$Vertical;)Lcom/huanshankeji/compose/ui/Alignment$Vertical$Impl; + public static fun constructor-impl (Landroidx/compose/ui/Alignment$Vertical;)Landroidx/compose/ui/Alignment$Vertical; + public fun equals (Ljava/lang/Object;)Z + public static fun equals-impl (Landroidx/compose/ui/Alignment$Vertical;Ljava/lang/Object;)Z + public static final fun equals-impl0 (Landroidx/compose/ui/Alignment$Vertical;Landroidx/compose/ui/Alignment$Vertical;)Z + public fun getPlatformHorizontal ()Landroidx/compose/ui/Alignment$Vertical; + public fun hashCode ()I + public static fun hashCode-impl (Landroidx/compose/ui/Alignment$Vertical;)I + public fun toString ()Ljava/lang/String; + public static fun toString-impl (Landroidx/compose/ui/Alignment$Vertical;)Ljava/lang/String; + public final synthetic fun unbox-impl ()Landroidx/compose/ui/Alignment$Vertical; +} + +public abstract interface class com/huanshankeji/compose/ui/Modifier { + public static final field Companion Lcom/huanshankeji/compose/ui/Modifier$Companion; + public abstract fun foldIn (Ljava/lang/Object;Lkotlin/jvm/functions/Function2;)Ljava/lang/Object; + public abstract fun getPlatformModifier ()Landroidx/compose/ui/Modifier; + public abstract fun platformModify (Lkotlin/jvm/functions/Function1;)Lcom/huanshankeji/compose/ui/Modifier; + public abstract fun then (Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/ui/Modifier$Companion : com/huanshankeji/compose/ui/Modifier { + public fun foldIn (Ljava/lang/Object;Lkotlin/jvm/functions/Function2;)Ljava/lang/Object; + public fun getPlatformModifier ()Landroidx/compose/ui/Modifier$Companion; + public synthetic fun getPlatformModifier ()Landroidx/compose/ui/Modifier; + public fun platformModify (Lkotlin/jvm/functions/Function1;)Lcom/huanshankeji/compose/ui/Modifier; + public fun then (Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/ui/Modifier$DefaultImpls { + public static fun foldIn (Lcom/huanshankeji/compose/ui/Modifier;Ljava/lang/Object;Lkotlin/jvm/functions/Function2;)Ljava/lang/Object; + public static fun platformModify (Lcom/huanshankeji/compose/ui/Modifier;Lkotlin/jvm/functions/Function1;)Lcom/huanshankeji/compose/ui/Modifier; + public static fun then (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public abstract interface class com/huanshankeji/compose/ui/Modifier$Element : com/huanshankeji/compose/ui/Modifier { + public abstract fun getPlatformElement ()Landroidx/compose/ui/Modifier$Element; +} + +public final class com/huanshankeji/compose/ui/Modifier$Element$DefaultImpls { + public static fun foldIn (Lcom/huanshankeji/compose/ui/Modifier$Element;Ljava/lang/Object;Lkotlin/jvm/functions/Function2;)Ljava/lang/Object; + public static fun platformModify (Lcom/huanshankeji/compose/ui/Modifier$Element;Lkotlin/jvm/functions/Function1;)Lcom/huanshankeji/compose/ui/Modifier; + public static fun then (Lcom/huanshankeji/compose/ui/Modifier$Element;Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/ui/Modifier$Element$Impl : com/huanshankeji/compose/ui/Modifier$Element { + public static final synthetic fun box-impl (Landroidx/compose/ui/Modifier$Element;)Lcom/huanshankeji/compose/ui/Modifier$Element$Impl; + public static fun constructor-impl (Landroidx/compose/ui/Modifier$Element;)Landroidx/compose/ui/Modifier$Element; + public fun equals (Ljava/lang/Object;)Z + public static fun equals-impl (Landroidx/compose/ui/Modifier$Element;Ljava/lang/Object;)Z + public static final fun equals-impl0 (Landroidx/compose/ui/Modifier$Element;Landroidx/compose/ui/Modifier$Element;)Z + public fun foldIn (Ljava/lang/Object;Lkotlin/jvm/functions/Function2;)Ljava/lang/Object; + public static fun foldIn-impl (Landroidx/compose/ui/Modifier$Element;Ljava/lang/Object;Lkotlin/jvm/functions/Function2;)Ljava/lang/Object; + public fun getPlatformElement ()Landroidx/compose/ui/Modifier$Element; + public fun getPlatformModifier ()Landroidx/compose/ui/Modifier$Element; + public synthetic fun getPlatformModifier ()Landroidx/compose/ui/Modifier; + public static fun getPlatformModifier-impl (Landroidx/compose/ui/Modifier$Element;)Landroidx/compose/ui/Modifier$Element; + public fun hashCode ()I + public static fun hashCode-impl (Landroidx/compose/ui/Modifier$Element;)I + public fun platformModify (Lkotlin/jvm/functions/Function1;)Lcom/huanshankeji/compose/ui/Modifier; + public static fun platformModify-impl (Landroidx/compose/ui/Modifier$Element;Lkotlin/jvm/functions/Function1;)Lcom/huanshankeji/compose/ui/Modifier; + public fun then (Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; + public static fun then-impl (Landroidx/compose/ui/Modifier$Element;Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; + public fun toString ()Ljava/lang/String; + public static fun toString-impl (Landroidx/compose/ui/Modifier$Element;)Ljava/lang/String; + public final synthetic fun unbox-impl ()Landroidx/compose/ui/Modifier$Element; +} + +public final class com/huanshankeji/compose/ui/Modifier$Impl : com/huanshankeji/compose/ui/Modifier { + public static final synthetic fun box-impl (Landroidx/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier$Impl; + public static fun constructor-impl (Landroidx/compose/ui/Modifier;)Landroidx/compose/ui/Modifier; + public fun equals (Ljava/lang/Object;)Z + public static fun equals-impl (Landroidx/compose/ui/Modifier;Ljava/lang/Object;)Z + public static final fun equals-impl0 (Landroidx/compose/ui/Modifier;Landroidx/compose/ui/Modifier;)Z + public fun foldIn (Ljava/lang/Object;Lkotlin/jvm/functions/Function2;)Ljava/lang/Object; + public static fun foldIn-impl (Landroidx/compose/ui/Modifier;Ljava/lang/Object;Lkotlin/jvm/functions/Function2;)Ljava/lang/Object; + public fun getPlatformModifier ()Landroidx/compose/ui/Modifier; + public fun hashCode ()I + public static fun hashCode-impl (Landroidx/compose/ui/Modifier;)I + public fun platformModify (Lkotlin/jvm/functions/Function1;)Lcom/huanshankeji/compose/ui/Modifier; + public static fun platformModify-impl (Landroidx/compose/ui/Modifier;Lkotlin/jvm/functions/Function1;)Lcom/huanshankeji/compose/ui/Modifier; + public fun then (Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; + public static fun then-impl (Landroidx/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; + public fun toString ()Ljava/lang/String; + public static fun toString-impl (Landroidx/compose/ui/Modifier;)Ljava/lang/String; + public final synthetic fun unbox-impl ()Landroidx/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/ui/draw/Alpha_composeUiKt { + public static final fun alpha (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/ui/draw/Rotate_composeUiKt { + public static final fun rotate (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/ui/graphics/Brush { + public static final field $stable I + public fun (Landroidx/compose/ui/graphics/Brush;)V + public final fun getPlatformValue ()Landroidx/compose/ui/graphics/Brush; +} + +public final class com/huanshankeji/compose/ui/graphics/Color { + public static final field $stable I + public static final field Companion Lcom/huanshankeji/compose/ui/graphics/Color$Companion; + public synthetic fun (JLkotlin/jvm/internal/DefaultConstructorMarker;)V + public final fun getPlatformValue-0d7_KjU ()J + public fun toString ()Ljava/lang/String; +} + +public final class com/huanshankeji/compose/ui/graphics/Color$Companion { + public final fun getBlack ()Lcom/huanshankeji/compose/ui/graphics/Color; + public final fun getBlue ()Lcom/huanshankeji/compose/ui/graphics/Color; + public final fun getCyan ()Lcom/huanshankeji/compose/ui/graphics/Color; + public final fun getDarkGray ()Lcom/huanshankeji/compose/ui/graphics/Color; + public final fun getGray ()Lcom/huanshankeji/compose/ui/graphics/Color; + public final fun getGreen ()Lcom/huanshankeji/compose/ui/graphics/Color; + public final fun getLightGray ()Lcom/huanshankeji/compose/ui/graphics/Color; + public final fun getMagenta ()Lcom/huanshankeji/compose/ui/graphics/Color; + public final fun getRed ()Lcom/huanshankeji/compose/ui/graphics/Color; + public final fun getTransparent ()Lcom/huanshankeji/compose/ui/graphics/Color; + public final fun getWhite ()Lcom/huanshankeji/compose/ui/graphics/Color; + public final fun getYellow ()Lcom/huanshankeji/compose/ui/graphics/Color; + public final fun hsl (FFFF)Lcom/huanshankeji/compose/ui/graphics/Color; + public static synthetic fun hsl$default (Lcom/huanshankeji/compose/ui/graphics/Color$Companion;FFFFILjava/lang/Object;)Lcom/huanshankeji/compose/ui/graphics/Color; +} + +public abstract interface class com/huanshankeji/compose/ui/graphics/ColorProducer { + public abstract fun invoke ()Lcom/huanshankeji/compose/ui/graphics/Color; +} + +public final class com/huanshankeji/compose/ui/graphics/Color_composeUiKt { + public static final fun Color (FFFF)Lcom/huanshankeji/compose/ui/graphics/Color; + public static final fun Color (I)Lcom/huanshankeji/compose/ui/graphics/Color; + public static final fun Color (IIII)Lcom/huanshankeji/compose/ui/graphics/Color; + public static final fun Color (J)Lcom/huanshankeji/compose/ui/graphics/Color; + public static synthetic fun Color$default (FFFFILjava/lang/Object;)Lcom/huanshankeji/compose/ui/graphics/Color; + public static synthetic fun Color$default (IIIIILjava/lang/Object;)Lcom/huanshankeji/compose/ui/graphics/Color; + public static final fun luminance (Lcom/huanshankeji/compose/ui/graphics/Color;)F + public static final fun toArgb (Lcom/huanshankeji/compose/ui/graphics/Color;)I + public static final fun toNullablePlatformValue (Lcom/huanshankeji/compose/ui/graphics/ColorProducer;)Landroidx/compose/ui/graphics/ColorProducer; + public static final fun toPlatformValue (Lcom/huanshankeji/compose/ui/graphics/Color;)J + public static final fun toPlatformValue (Lcom/huanshankeji/compose/ui/graphics/ColorProducer;)Landroidx/compose/ui/graphics/ColorProducer; +} + +public abstract class com/huanshankeji/compose/ui/unit/ext/DpOrPercentage { + public static final field $stable I +} + +public final class com/huanshankeji/compose/ui/unit/ext/DpOrPercentage$Dp : com/huanshankeji/compose/ui/unit/ext/DpOrPercentage { + public static final field $stable I + public synthetic fun (FLkotlin/jvm/internal/DefaultConstructorMarker;)V + public final fun getDp-D9Ej5fM ()F +} + +public final class com/huanshankeji/compose/ui/unit/ext/DpOrPercentage$Percentage : com/huanshankeji/compose/ui/unit/ext/DpOrPercentage { + public static final field $stable I + public fun (I)V + public final fun getPercentage ()I +} + diff --git a/common/api/compose-multiplatform-html-unified-common.klib.api b/common/api/compose-multiplatform-html-unified-common.klib.api new file mode 100644 index 00000000..aed6de2c --- /dev/null +++ b/common/api/compose-multiplatform-html-unified-common.klib.api @@ -0,0 +1,1132 @@ +// Klib ABI Dump +// Targets: [iosArm64, iosSimulatorArm64, iosX64, js, wasmJs] +// Alias: ios => [iosArm64, iosSimulatorArm64, iosX64] +// Rendering settings: +// - Signature version: 2 +// - Show manifest properties: true +// - Show declarations: true + +// Library unique name: +open annotation class com.huanshankeji.compose.foundation/ExperimentalFoundationApi : kotlin/Annotation { // com.huanshankeji.compose.foundation/ExperimentalFoundationApi|null[0] + constructor () // com.huanshankeji.compose.foundation/ExperimentalFoundationApi.|(){}[0] +} + +open annotation class com.huanshankeji.compose/ExtRecommendedApi : kotlin/Annotation { // com.huanshankeji.compose/ExtRecommendedApi|null[0] + constructor () // com.huanshankeji.compose/ExtRecommendedApi.|(){}[0] +} + +final enum class com.huanshankeji.compose.foundation.layout/IntrinsicSize : kotlin/Enum { // com.huanshankeji.compose.foundation.layout/IntrinsicSize|null[0] + enum entry Max // com.huanshankeji.compose.foundation.layout/IntrinsicSize.Max|null[0] + enum entry Min // com.huanshankeji.compose.foundation.layout/IntrinsicSize.Min|null[0] + + final val entries // com.huanshankeji.compose.foundation.layout/IntrinsicSize.entries|#static{}entries[0] + final fun (): kotlin.enums/EnumEntries // com.huanshankeji.compose.foundation.layout/IntrinsicSize.entries.|#static(){}[0] + + final fun valueOf(kotlin/String): com.huanshankeji.compose.foundation.layout/IntrinsicSize // com.huanshankeji.compose.foundation.layout/IntrinsicSize.valueOf|valueOf#static(kotlin.String){}[0] + final fun values(): kotlin/Array // com.huanshankeji.compose.foundation.layout/IntrinsicSize.values|values#static(){}[0] +} + +abstract fun interface com.huanshankeji.compose.ui.graphics/ColorProducer { // com.huanshankeji.compose.ui.graphics/ColorProducer|null[0] + abstract fun invoke(): com.huanshankeji.compose.ui.graphics/Color // com.huanshankeji.compose.ui.graphics/ColorProducer.invoke|invoke(){}[0] +} + +abstract interface com.huanshankeji.compose.foundation.layout.ext/BoxWithConstraintsScope : com.huanshankeji.compose.foundation.layout/BoxScope { // com.huanshankeji.compose.foundation.layout.ext/BoxWithConstraintsScope|null[0] + abstract val maxHeight // com.huanshankeji.compose.foundation.layout.ext/BoxWithConstraintsScope.maxHeight|{}maxHeight[0] + abstract fun (): androidx.compose.ui.unit/Dp // com.huanshankeji.compose.foundation.layout.ext/BoxWithConstraintsScope.maxHeight.|(){}[0] + abstract val maxWidth // com.huanshankeji.compose.foundation.layout.ext/BoxWithConstraintsScope.maxWidth|{}maxWidth[0] + abstract fun (): androidx.compose.ui.unit/Dp // com.huanshankeji.compose.foundation.layout.ext/BoxWithConstraintsScope.maxWidth.|(){}[0] +} + +abstract interface com.huanshankeji.compose.foundation.layout/BoxScope { // com.huanshankeji.compose.foundation.layout/BoxScope|null[0] + abstract val platformBoxScope // com.huanshankeji.compose.foundation.layout/BoxScope.platformBoxScope|{}platformBoxScope[0] + // Targets: [ios, wasmJs] + abstract fun (): androidx.compose.foundation.layout/BoxScope // com.huanshankeji.compose.foundation.layout/BoxScope.platformBoxScope.|(){}[0] + + // Targets: [js] + abstract fun (): com.varabyte.kobweb.compose.foundation.layout/BoxScope // com.huanshankeji.compose.foundation.layout/BoxScope.platformBoxScope.|(){}[0] + + open fun (com.huanshankeji.compose.ui/Modifier).align(com.huanshankeji.compose.ui/Alignment): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout/BoxScope.align|align@com.huanshankeji.compose.ui.Modifier(com.huanshankeji.compose.ui.Alignment){}[0] + + final value class Impl : com.huanshankeji.compose.foundation.layout/BoxScope { // com.huanshankeji.compose.foundation.layout/BoxScope.Impl|null[0] + final val platformBoxScope // com.huanshankeji.compose.foundation.layout/BoxScope.Impl.platformBoxScope|{}platformBoxScope[0] + // Targets: [ios, wasmJs] + final fun (): androidx.compose.foundation.layout/BoxScope // com.huanshankeji.compose.foundation.layout/BoxScope.Impl.platformBoxScope.|(){}[0] + + // Targets: [js] + final fun (): com.varabyte.kobweb.compose.foundation.layout/BoxScope // com.huanshankeji.compose.foundation.layout/BoxScope.Impl.platformBoxScope.|(){}[0] + + final fun equals(kotlin/Any?): kotlin/Boolean // com.huanshankeji.compose.foundation.layout/BoxScope.Impl.equals|equals(kotlin.Any?){}[0] + final fun hashCode(): kotlin/Int // com.huanshankeji.compose.foundation.layout/BoxScope.Impl.hashCode|hashCode(){}[0] + final fun toString(): kotlin/String // com.huanshankeji.compose.foundation.layout/BoxScope.Impl.toString|toString(){}[0] + + // Targets: [ios, wasmJs] + constructor (androidx.compose.foundation.layout/BoxScope) // com.huanshankeji.compose.foundation.layout/BoxScope.Impl.|(androidx.compose.foundation.layout.BoxScope){}[0] + + // Targets: [js] + constructor (com.varabyte.kobweb.compose.foundation.layout/BoxScope) // com.huanshankeji.compose.foundation.layout/BoxScope.Impl.|(com.varabyte.kobweb.compose.foundation.layout.BoxScope){}[0] + } +} + +abstract interface com.huanshankeji.compose.foundation.layout/ColumnScope { // com.huanshankeji.compose.foundation.layout/ColumnScope|null[0] + abstract val platformValue // com.huanshankeji.compose.foundation.layout/ColumnScope.platformValue|{}platformValue[0] + // Targets: [ios, wasmJs] + abstract fun (): androidx.compose.foundation.layout/ColumnScope // com.huanshankeji.compose.foundation.layout/ColumnScope.platformValue.|(){}[0] + + // Targets: [js] + abstract fun (): com.varabyte.kobweb.compose.foundation.layout/ColumnScope // com.huanshankeji.compose.foundation.layout/ColumnScope.platformValue.|(){}[0] + + open fun (com.huanshankeji.compose.ui/Modifier).align(com.huanshankeji.compose.ui/Alignment.Horizontal): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout/ColumnScope.align|align@com.huanshankeji.compose.ui.Modifier(com.huanshankeji.compose.ui.Alignment.Horizontal){}[0] + open fun (com.huanshankeji.compose.ui/Modifier).weight(kotlin/Float): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout/ColumnScope.weight|weight@com.huanshankeji.compose.ui.Modifier(kotlin.Float){}[0] + + final value class Impl : com.huanshankeji.compose.foundation.layout/ColumnScope { // com.huanshankeji.compose.foundation.layout/ColumnScope.Impl|null[0] + final val platformValue // com.huanshankeji.compose.foundation.layout/ColumnScope.Impl.platformValue|{}platformValue[0] + // Targets: [ios, wasmJs] + final fun (): androidx.compose.foundation.layout/ColumnScope // com.huanshankeji.compose.foundation.layout/ColumnScope.Impl.platformValue.|(){}[0] + + // Targets: [js] + final fun (): com.varabyte.kobweb.compose.foundation.layout/ColumnScope // com.huanshankeji.compose.foundation.layout/ColumnScope.Impl.platformValue.|(){}[0] + + final fun equals(kotlin/Any?): kotlin/Boolean // com.huanshankeji.compose.foundation.layout/ColumnScope.Impl.equals|equals(kotlin.Any?){}[0] + final fun hashCode(): kotlin/Int // com.huanshankeji.compose.foundation.layout/ColumnScope.Impl.hashCode|hashCode(){}[0] + final fun toString(): kotlin/String // com.huanshankeji.compose.foundation.layout/ColumnScope.Impl.toString|toString(){}[0] + + // Targets: [ios, wasmJs] + constructor (androidx.compose.foundation.layout/ColumnScope) // com.huanshankeji.compose.foundation.layout/ColumnScope.Impl.|(androidx.compose.foundation.layout.ColumnScope){}[0] + + // Targets: [js] + constructor (com.varabyte.kobweb.compose.foundation.layout/ColumnScope) // com.huanshankeji.compose.foundation.layout/ColumnScope.Impl.|(com.varabyte.kobweb.compose.foundation.layout.ColumnScope){}[0] + } +} + +abstract interface com.huanshankeji.compose.foundation.layout/RowScope { // com.huanshankeji.compose.foundation.layout/RowScope|null[0] + abstract val platformValue // com.huanshankeji.compose.foundation.layout/RowScope.platformValue|{}platformValue[0] + // Targets: [ios, wasmJs] + abstract fun (): androidx.compose.foundation.layout/RowScope // com.huanshankeji.compose.foundation.layout/RowScope.platformValue.|(){}[0] + + // Targets: [js] + abstract fun (): com.varabyte.kobweb.compose.foundation.layout/RowScope // com.huanshankeji.compose.foundation.layout/RowScope.platformValue.|(){}[0] + + open fun (com.huanshankeji.compose.ui/Modifier).align(com.huanshankeji.compose.ui/Alignment.Vertical): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout/RowScope.align|align@com.huanshankeji.compose.ui.Modifier(com.huanshankeji.compose.ui.Alignment.Vertical){}[0] + open fun (com.huanshankeji.compose.ui/Modifier).weight(kotlin/Float): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout/RowScope.weight|weight@com.huanshankeji.compose.ui.Modifier(kotlin.Float){}[0] + + final value class Impl : com.huanshankeji.compose.foundation.layout/RowScope { // com.huanshankeji.compose.foundation.layout/RowScope.Impl|null[0] + final val platformValue // com.huanshankeji.compose.foundation.layout/RowScope.Impl.platformValue|{}platformValue[0] + // Targets: [ios, wasmJs] + final fun (): androidx.compose.foundation.layout/RowScope // com.huanshankeji.compose.foundation.layout/RowScope.Impl.platformValue.|(){}[0] + + // Targets: [js] + final fun (): com.varabyte.kobweb.compose.foundation.layout/RowScope // com.huanshankeji.compose.foundation.layout/RowScope.Impl.platformValue.|(){}[0] + + final fun equals(kotlin/Any?): kotlin/Boolean // com.huanshankeji.compose.foundation.layout/RowScope.Impl.equals|equals(kotlin.Any?){}[0] + final fun hashCode(): kotlin/Int // com.huanshankeji.compose.foundation.layout/RowScope.Impl.hashCode|hashCode(){}[0] + final fun toString(): kotlin/String // com.huanshankeji.compose.foundation.layout/RowScope.Impl.toString|toString(){}[0] + + // Targets: [ios, wasmJs] + constructor (androidx.compose.foundation.layout/RowScope) // com.huanshankeji.compose.foundation.layout/RowScope.Impl.|(androidx.compose.foundation.layout.RowScope){}[0] + + // Targets: [js] + constructor (com.varabyte.kobweb.compose.foundation.layout/RowScope) // com.huanshankeji.compose.foundation.layout/RowScope.Impl.|(com.varabyte.kobweb.compose.foundation.layout.RowScope){}[0] + } +} + +abstract interface com.huanshankeji.compose.foundation.text/KeyboardActionScope { // com.huanshankeji.compose.foundation.text/KeyboardActionScope|null[0] + abstract fun defaultKeyboardAction(com.huanshankeji.compose.foundation.text.input/ImeAction) // com.huanshankeji.compose.foundation.text/KeyboardActionScope.defaultKeyboardAction|defaultKeyboardAction(com.huanshankeji.compose.foundation.text.input.ImeAction){}[0] + + final object DoNothingInstance : com.huanshankeji.compose.foundation.text/KeyboardActionScope { // com.huanshankeji.compose.foundation.text/KeyboardActionScope.DoNothingInstance|null[0] + final fun defaultKeyboardAction(com.huanshankeji.compose.foundation.text.input/ImeAction) // com.huanshankeji.compose.foundation.text/KeyboardActionScope.DoNothingInstance.defaultKeyboardAction|defaultKeyboardAction(com.huanshankeji.compose.foundation.text.input.ImeAction){}[0] + } +} + +abstract interface com.huanshankeji.compose.ui/Alignment { // com.huanshankeji.compose.ui/Alignment|null[0] + abstract interface Horizontal { // com.huanshankeji.compose.ui/Alignment.Horizontal|null[0] + final value class Impl : com.huanshankeji.compose.ui/Alignment.Horizontal { // com.huanshankeji.compose.ui/Alignment.Horizontal.Impl|null[0] + final fun equals(kotlin/Any?): kotlin/Boolean // com.huanshankeji.compose.ui/Alignment.Horizontal.Impl.equals|equals(kotlin.Any?){}[0] + final fun hashCode(): kotlin/Int // com.huanshankeji.compose.ui/Alignment.Horizontal.Impl.hashCode|hashCode(){}[0] + final fun toString(): kotlin/String // com.huanshankeji.compose.ui/Alignment.Horizontal.Impl.toString|toString(){}[0] + + // Targets: [ios, wasmJs] + constructor (androidx.compose.ui/Alignment.Horizontal) // com.huanshankeji.compose.ui/Alignment.Horizontal.Impl.|(androidx.compose.ui.Alignment.Horizontal){}[0] + + // Targets: [ios, wasmJs] + final val platformHorizontal // com.huanshankeji.compose.ui/Alignment.Horizontal.Impl.platformHorizontal|{}platformHorizontal[0] + final fun (): androidx.compose.ui/Alignment.Horizontal // com.huanshankeji.compose.ui/Alignment.Horizontal.Impl.platformHorizontal.|(){}[0] + + // Targets: [js] + constructor (com.varabyte.kobweb.compose.ui/Alignment.Horizontal) // com.huanshankeji.compose.ui/Alignment.Horizontal.Impl.|(com.varabyte.kobweb.compose.ui.Alignment.Horizontal){}[0] + + // Targets: [js] + final val platformValue // com.huanshankeji.compose.ui/Alignment.Horizontal.Impl.platformValue|{}platformValue[0] + final fun (): com.varabyte.kobweb.compose.ui/Alignment.Horizontal // com.huanshankeji.compose.ui/Alignment.Horizontal.Impl.platformValue.|(){}[0] + } + + // Targets: [ios, wasmJs] + abstract val platformHorizontal // com.huanshankeji.compose.ui/Alignment.Horizontal.platformHorizontal|{}platformHorizontal[0] + abstract fun (): androidx.compose.ui/Alignment.Horizontal // com.huanshankeji.compose.ui/Alignment.Horizontal.platformHorizontal.|(){}[0] + + // Targets: [js] + abstract val platformValue // com.huanshankeji.compose.ui/Alignment.Horizontal.platformValue|{}platformValue[0] + abstract fun (): com.varabyte.kobweb.compose.ui/Alignment.Horizontal // com.huanshankeji.compose.ui/Alignment.Horizontal.platformValue.|(){}[0] + } + + abstract interface Vertical { // com.huanshankeji.compose.ui/Alignment.Vertical|null[0] + final value class Impl : com.huanshankeji.compose.ui/Alignment.Vertical { // com.huanshankeji.compose.ui/Alignment.Vertical.Impl|null[0] + final fun equals(kotlin/Any?): kotlin/Boolean // com.huanshankeji.compose.ui/Alignment.Vertical.Impl.equals|equals(kotlin.Any?){}[0] + final fun hashCode(): kotlin/Int // com.huanshankeji.compose.ui/Alignment.Vertical.Impl.hashCode|hashCode(){}[0] + final fun toString(): kotlin/String // com.huanshankeji.compose.ui/Alignment.Vertical.Impl.toString|toString(){}[0] + + // Targets: [ios, wasmJs] + constructor (androidx.compose.ui/Alignment.Vertical) // com.huanshankeji.compose.ui/Alignment.Vertical.Impl.|(androidx.compose.ui.Alignment.Vertical){}[0] + + // Targets: [ios, wasmJs] + final val platformHorizontal // com.huanshankeji.compose.ui/Alignment.Vertical.Impl.platformHorizontal|{}platformHorizontal[0] + final fun (): androidx.compose.ui/Alignment.Vertical // com.huanshankeji.compose.ui/Alignment.Vertical.Impl.platformHorizontal.|(){}[0] + + // Targets: [js] + constructor (com.varabyte.kobweb.compose.ui/Alignment.Vertical) // com.huanshankeji.compose.ui/Alignment.Vertical.Impl.|(com.varabyte.kobweb.compose.ui.Alignment.Vertical){}[0] + + // Targets: [js] + final val platformValue // com.huanshankeji.compose.ui/Alignment.Vertical.Impl.platformValue|{}platformValue[0] + final fun (): com.varabyte.kobweb.compose.ui/Alignment.Vertical // com.huanshankeji.compose.ui/Alignment.Vertical.Impl.platformValue.|(){}[0] + } + + // Targets: [ios, wasmJs] + abstract val platformHorizontal // com.huanshankeji.compose.ui/Alignment.Vertical.platformHorizontal|{}platformHorizontal[0] + abstract fun (): androidx.compose.ui/Alignment.Vertical // com.huanshankeji.compose.ui/Alignment.Vertical.platformHorizontal.|(){}[0] + + // Targets: [js] + abstract val platformValue // com.huanshankeji.compose.ui/Alignment.Vertical.platformValue|{}platformValue[0] + abstract fun (): com.varabyte.kobweb.compose.ui/Alignment.Vertical // com.huanshankeji.compose.ui/Alignment.Vertical.platformValue.|(){}[0] + } + + final value class Impl : com.huanshankeji.compose.ui/Alignment { // com.huanshankeji.compose.ui/Alignment.Impl|null[0] + final fun equals(kotlin/Any?): kotlin/Boolean // com.huanshankeji.compose.ui/Alignment.Impl.equals|equals(kotlin.Any?){}[0] + final fun hashCode(): kotlin/Int // com.huanshankeji.compose.ui/Alignment.Impl.hashCode|hashCode(){}[0] + final fun toString(): kotlin/String // com.huanshankeji.compose.ui/Alignment.Impl.toString|toString(){}[0] + + // Targets: [ios, wasmJs] + constructor (androidx.compose.ui/Alignment) // com.huanshankeji.compose.ui/Alignment.Impl.|(androidx.compose.ui.Alignment){}[0] + + // Targets: [ios, wasmJs] + final val platformAlignment // com.huanshankeji.compose.ui/Alignment.Impl.platformAlignment|{}platformAlignment[0] + final fun (): androidx.compose.ui/Alignment // com.huanshankeji.compose.ui/Alignment.Impl.platformAlignment.|(){}[0] + + // Targets: [js] + constructor (com.varabyte.kobweb.compose.ui/Alignment) // com.huanshankeji.compose.ui/Alignment.Impl.|(com.varabyte.kobweb.compose.ui.Alignment){}[0] + + // Targets: [js] + final val platformValue // com.huanshankeji.compose.ui/Alignment.Impl.platformValue|{}platformValue[0] + final fun (): com.varabyte.kobweb.compose.ui/Alignment // com.huanshankeji.compose.ui/Alignment.Impl.platformValue.|(){}[0] + } + + final object Companion { // com.huanshankeji.compose.ui/Alignment.Companion|null[0] + final val Bottom // com.huanshankeji.compose.ui/Alignment.Companion.Bottom|{}Bottom[0] + final fun (): com.huanshankeji.compose.ui/Alignment.Vertical // com.huanshankeji.compose.ui/Alignment.Companion.Bottom.|(){}[0] + final val BottomCenter // com.huanshankeji.compose.ui/Alignment.Companion.BottomCenter|{}BottomCenter[0] + final fun (): com.huanshankeji.compose.ui/Alignment // com.huanshankeji.compose.ui/Alignment.Companion.BottomCenter.|(){}[0] + final val BottomEnd // com.huanshankeji.compose.ui/Alignment.Companion.BottomEnd|{}BottomEnd[0] + final fun (): com.huanshankeji.compose.ui/Alignment // com.huanshankeji.compose.ui/Alignment.Companion.BottomEnd.|(){}[0] + final val BottomStart // com.huanshankeji.compose.ui/Alignment.Companion.BottomStart|{}BottomStart[0] + final fun (): com.huanshankeji.compose.ui/Alignment // com.huanshankeji.compose.ui/Alignment.Companion.BottomStart.|(){}[0] + final val Center // com.huanshankeji.compose.ui/Alignment.Companion.Center|{}Center[0] + final fun (): com.huanshankeji.compose.ui/Alignment // com.huanshankeji.compose.ui/Alignment.Companion.Center.|(){}[0] + final val CenterEnd // com.huanshankeji.compose.ui/Alignment.Companion.CenterEnd|{}CenterEnd[0] + final fun (): com.huanshankeji.compose.ui/Alignment // com.huanshankeji.compose.ui/Alignment.Companion.CenterEnd.|(){}[0] + final val CenterHorizontally // com.huanshankeji.compose.ui/Alignment.Companion.CenterHorizontally|{}CenterHorizontally[0] + final fun (): com.huanshankeji.compose.ui/Alignment.Horizontal // com.huanshankeji.compose.ui/Alignment.Companion.CenterHorizontally.|(){}[0] + final val CenterStart // com.huanshankeji.compose.ui/Alignment.Companion.CenterStart|{}CenterStart[0] + final fun (): com.huanshankeji.compose.ui/Alignment // com.huanshankeji.compose.ui/Alignment.Companion.CenterStart.|(){}[0] + final val CenterVertically // com.huanshankeji.compose.ui/Alignment.Companion.CenterVertically|{}CenterVertically[0] + final fun (): com.huanshankeji.compose.ui/Alignment.Vertical // com.huanshankeji.compose.ui/Alignment.Companion.CenterVertically.|(){}[0] + final val End // com.huanshankeji.compose.ui/Alignment.Companion.End|{}End[0] + final fun (): com.huanshankeji.compose.ui/Alignment.Horizontal // com.huanshankeji.compose.ui/Alignment.Companion.End.|(){}[0] + final val Start // com.huanshankeji.compose.ui/Alignment.Companion.Start|{}Start[0] + final fun (): com.huanshankeji.compose.ui/Alignment.Horizontal // com.huanshankeji.compose.ui/Alignment.Companion.Start.|(){}[0] + final val Top // com.huanshankeji.compose.ui/Alignment.Companion.Top|{}Top[0] + final fun (): com.huanshankeji.compose.ui/Alignment.Vertical // com.huanshankeji.compose.ui/Alignment.Companion.Top.|(){}[0] + final val TopCenter // com.huanshankeji.compose.ui/Alignment.Companion.TopCenter|{}TopCenter[0] + final fun (): com.huanshankeji.compose.ui/Alignment // com.huanshankeji.compose.ui/Alignment.Companion.TopCenter.|(){}[0] + final val TopEnd // com.huanshankeji.compose.ui/Alignment.Companion.TopEnd|{}TopEnd[0] + final fun (): com.huanshankeji.compose.ui/Alignment // com.huanshankeji.compose.ui/Alignment.Companion.TopEnd.|(){}[0] + final val TopStart // com.huanshankeji.compose.ui/Alignment.Companion.TopStart|{}TopStart[0] + final fun (): com.huanshankeji.compose.ui/Alignment // com.huanshankeji.compose.ui/Alignment.Companion.TopStart.|(){}[0] + } + + // Targets: [ios, wasmJs] + abstract val platformAlignment // com.huanshankeji.compose.ui/Alignment.platformAlignment|{}platformAlignment[0] + abstract fun (): androidx.compose.ui/Alignment // com.huanshankeji.compose.ui/Alignment.platformAlignment.|(){}[0] + + // Targets: [js] + abstract val platformValue // com.huanshankeji.compose.ui/Alignment.platformValue|{}platformValue[0] + abstract fun (): com.varabyte.kobweb.compose.ui/Alignment // com.huanshankeji.compose.ui/Alignment.platformValue.|(){}[0] +} + +abstract interface com.huanshankeji.compose.ui/Modifier { // com.huanshankeji.compose.ui/Modifier|null[0] + abstract val platformModifier // com.huanshankeji.compose.ui/Modifier.platformModifier|{}platformModifier[0] + // Targets: [ios, wasmJs] + abstract fun (): androidx.compose.ui/Modifier // com.huanshankeji.compose.ui/Modifier.platformModifier.|(){}[0] + + // Targets: [js] + abstract fun (): com.varabyte.kobweb.compose.ui/Modifier // com.huanshankeji.compose.ui/Modifier.platformModifier.|(){}[0] + + open fun <#A1: kotlin/Any?> foldIn(#A1, kotlin/Function2<#A1, com.huanshankeji.compose.ui/Modifier.Element, #A1>): #A1 // com.huanshankeji.compose.ui/Modifier.foldIn|foldIn(0:0;kotlin.Function2<0:0,com.huanshankeji.compose.ui.Modifier.Element,0:0>){0§}[0] + open fun then(com.huanshankeji.compose.ui/Modifier): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.ui/Modifier.then|then(com.huanshankeji.compose.ui.Modifier){}[0] + + abstract interface Element : com.huanshankeji.compose.ui/Modifier { // com.huanshankeji.compose.ui/Modifier.Element|null[0] + abstract val platformElement // com.huanshankeji.compose.ui/Modifier.Element.platformElement|{}platformElement[0] + // Targets: [ios, wasmJs] + abstract fun (): androidx.compose.ui/Modifier.Element // com.huanshankeji.compose.ui/Modifier.Element.platformElement.|(){}[0] + + // Targets: [js] + abstract fun (): com.varabyte.kobweb.compose.ui/Modifier.Element // com.huanshankeji.compose.ui/Modifier.Element.platformElement.|(){}[0] + + final value class Impl : com.huanshankeji.compose.ui/Modifier.Element { // com.huanshankeji.compose.ui/Modifier.Element.Impl|null[0] + final val platformElement // com.huanshankeji.compose.ui/Modifier.Element.Impl.platformElement|{}platformElement[0] + // Targets: [ios, wasmJs] + final fun (): androidx.compose.ui/Modifier.Element // com.huanshankeji.compose.ui/Modifier.Element.Impl.platformElement.|(){}[0] + + // Targets: [js] + final fun (): com.varabyte.kobweb.compose.ui/Modifier.Element // com.huanshankeji.compose.ui/Modifier.Element.Impl.platformElement.|(){}[0] + final val platformModifier // com.huanshankeji.compose.ui/Modifier.Element.Impl.platformModifier|{}platformModifier[0] + // Targets: [ios, wasmJs] + final fun (): androidx.compose.ui/Modifier.Element // com.huanshankeji.compose.ui/Modifier.Element.Impl.platformModifier.|(){}[0] + + // Targets: [js] + final fun (): com.varabyte.kobweb.compose.ui/Modifier.Element // com.huanshankeji.compose.ui/Modifier.Element.Impl.platformModifier.|(){}[0] + + final fun equals(kotlin/Any?): kotlin/Boolean // com.huanshankeji.compose.ui/Modifier.Element.Impl.equals|equals(kotlin.Any?){}[0] + final fun hashCode(): kotlin/Int // com.huanshankeji.compose.ui/Modifier.Element.Impl.hashCode|hashCode(){}[0] + final fun toString(): kotlin/String // com.huanshankeji.compose.ui/Modifier.Element.Impl.toString|toString(){}[0] + + // Targets: [ios, wasmJs] + constructor (androidx.compose.ui/Modifier.Element) // com.huanshankeji.compose.ui/Modifier.Element.Impl.|(androidx.compose.ui.Modifier.Element){}[0] + + // Targets: [js] + constructor (com.varabyte.kobweb.compose.ui/Modifier.Element) // com.huanshankeji.compose.ui/Modifier.Element.Impl.|(com.varabyte.kobweb.compose.ui.Modifier.Element){}[0] + } + } + + final value class Impl : com.huanshankeji.compose.ui/Modifier { // com.huanshankeji.compose.ui/Modifier.Impl|null[0] + final val platformModifier // com.huanshankeji.compose.ui/Modifier.Impl.platformModifier|{}platformModifier[0] + // Targets: [ios, wasmJs] + final fun (): androidx.compose.ui/Modifier // com.huanshankeji.compose.ui/Modifier.Impl.platformModifier.|(){}[0] + + // Targets: [js] + final fun (): com.varabyte.kobweb.compose.ui/Modifier // com.huanshankeji.compose.ui/Modifier.Impl.platformModifier.|(){}[0] + + final fun equals(kotlin/Any?): kotlin/Boolean // com.huanshankeji.compose.ui/Modifier.Impl.equals|equals(kotlin.Any?){}[0] + final fun hashCode(): kotlin/Int // com.huanshankeji.compose.ui/Modifier.Impl.hashCode|hashCode(){}[0] + final fun toString(): kotlin/String // com.huanshankeji.compose.ui/Modifier.Impl.toString|toString(){}[0] + + // Targets: [ios, wasmJs] + constructor (androidx.compose.ui/Modifier) // com.huanshankeji.compose.ui/Modifier.Impl.|(androidx.compose.ui.Modifier){}[0] + + // Targets: [js] + constructor (com.varabyte.kobweb.compose.ui/Modifier) // com.huanshankeji.compose.ui/Modifier.Impl.|(com.varabyte.kobweb.compose.ui.Modifier){}[0] + } + + final object Companion : com.huanshankeji.compose.ui/Modifier { // com.huanshankeji.compose.ui/Modifier.Companion|null[0] + final val platformModifier // com.huanshankeji.compose.ui/Modifier.Companion.platformModifier|{}platformModifier[0] + // Targets: [ios, wasmJs] + final fun (): androidx.compose.ui/Modifier.Companion // com.huanshankeji.compose.ui/Modifier.Companion.platformModifier.|(){}[0] + + // Targets: [js] + final fun (): com.varabyte.kobweb.compose.ui/Modifier.Companion // com.huanshankeji.compose.ui/Modifier.Companion.platformModifier.|(){}[0] + } + + // Targets: [ios, wasmJs] + open fun platformModify(kotlin/Function1): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.ui/Modifier.platformModify|platformModify(kotlin.Function1){}[0] + + // Targets: [js] + open fun platformModify(kotlin/Function1): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.ui/Modifier.platformModify|platformModify(kotlin.Function1){}[0] +} + +abstract class com.huanshankeji.compose.foundation.layout/PaddingValues { // com.huanshankeji.compose.foundation.layout/PaddingValues|null[0] + final class Absolute : com.huanshankeji.compose.foundation.layout/PaddingValues { // com.huanshankeji.compose.foundation.layout/PaddingValues.Absolute|null[0] + constructor (androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...) // com.huanshankeji.compose.foundation.layout/PaddingValues.Absolute.|(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] + + // Targets: [ios, wasmJs] + constructor (androidx.compose.foundation.layout/PaddingValues.Absolute) // com.huanshankeji.compose.foundation.layout/PaddingValues.Absolute.|(androidx.compose.foundation.layout.PaddingValues.Absolute){}[0] + + // Targets: [js] + final val bottom // com.huanshankeji.compose.foundation.layout/PaddingValues.Absolute.bottom|{}bottom[0] + final fun (): androidx.compose.ui.unit/Dp // com.huanshankeji.compose.foundation.layout/PaddingValues.Absolute.bottom.|(){}[0] + + // Targets: [js] + final val left // com.huanshankeji.compose.foundation.layout/PaddingValues.Absolute.left|{}left[0] + final fun (): androidx.compose.ui.unit/Dp // com.huanshankeji.compose.foundation.layout/PaddingValues.Absolute.left.|(){}[0] + + // Targets: [js] + final val right // com.huanshankeji.compose.foundation.layout/PaddingValues.Absolute.right|{}right[0] + final fun (): androidx.compose.ui.unit/Dp // com.huanshankeji.compose.foundation.layout/PaddingValues.Absolute.right.|(){}[0] + + // Targets: [js] + final val top // com.huanshankeji.compose.foundation.layout/PaddingValues.Absolute.top|{}top[0] + final fun (): androidx.compose.ui.unit/Dp // com.huanshankeji.compose.foundation.layout/PaddingValues.Absolute.top.|(){}[0] + } + + // Targets: [ios, wasmJs] + constructor (androidx.compose.foundation.layout/PaddingValues) // com.huanshankeji.compose.foundation.layout/PaddingValues.|(androidx.compose.foundation.layout.PaddingValues){}[0] + + // Targets: [ios, wasmJs] + final val platformValue // com.huanshankeji.compose.foundation.layout/PaddingValues.platformValue|{}platformValue[0] + final fun (): androidx.compose.foundation.layout/PaddingValues // com.huanshankeji.compose.foundation.layout/PaddingValues.platformValue.|(){}[0] +} + +final class com.huanshankeji.compose.foundation.layout.ext/BoxWithConstraintsScopeImpl : com.huanshankeji.compose.foundation.layout.ext/BoxWithConstraintsScope { // com.huanshankeji.compose.foundation.layout.ext/BoxWithConstraintsScopeImpl|null[0] + final val maxHeight // com.huanshankeji.compose.foundation.layout.ext/BoxWithConstraintsScopeImpl.maxHeight|{}maxHeight[0] + final fun (): androidx.compose.ui.unit/Dp // com.huanshankeji.compose.foundation.layout.ext/BoxWithConstraintsScopeImpl.maxHeight.|(){}[0] + final val maxWidth // com.huanshankeji.compose.foundation.layout.ext/BoxWithConstraintsScopeImpl.maxWidth|{}maxWidth[0] + final fun (): androidx.compose.ui.unit/Dp // com.huanshankeji.compose.foundation.layout.ext/BoxWithConstraintsScopeImpl.maxWidth.|(){}[0] + final val platformBoxScope // com.huanshankeji.compose.foundation.layout.ext/BoxWithConstraintsScopeImpl.platformBoxScope|{}platformBoxScope[0] + // Targets: [ios, wasmJs] + final fun (): androidx.compose.foundation.layout/BoxScope // com.huanshankeji.compose.foundation.layout.ext/BoxWithConstraintsScopeImpl.platformBoxScope.|(){}[0] + + // Targets: [js] + final fun (): com.varabyte.kobweb.compose.foundation.layout/BoxScope // com.huanshankeji.compose.foundation.layout.ext/BoxWithConstraintsScopeImpl.platformBoxScope.|(){}[0] + + // Targets: [ios, wasmJs] + constructor (androidx.compose.foundation.layout/BoxScope, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp) // com.huanshankeji.compose.foundation.layout.ext/BoxWithConstraintsScopeImpl.|(androidx.compose.foundation.layout.BoxScope;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] + + // Targets: [js] + constructor (com.varabyte.kobweb.compose.foundation.layout/BoxScope, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp) // com.huanshankeji.compose.foundation.layout.ext/BoxWithConstraintsScopeImpl.|(com.varabyte.kobweb.compose.foundation.layout.BoxScope;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] +} + +final class com.huanshankeji.compose.foundation.lazy/LazyListScope { // com.huanshankeji.compose.foundation.lazy/LazyListScope|null[0] + final fun item(kotlin/Any? = ..., kotlin/Any? = ..., kotlin/Function3) // com.huanshankeji.compose.foundation.lazy/LazyListScope.item|item(kotlin.Any?;kotlin.Any?;kotlin.Function3){}[0] + final fun items(kotlin/Int, kotlin/Function1? = ..., kotlin/Function1 = ..., kotlin/Function4) // com.huanshankeji.compose.foundation.lazy/LazyListScope.items|items(kotlin.Int;kotlin.Function1?;kotlin.Function1;kotlin.Function4){}[0] + + // Targets: [ios, wasmJs] + constructor (androidx.compose.foundation.lazy/LazyListScope) // com.huanshankeji.compose.foundation.lazy/LazyListScope.|(androidx.compose.foundation.lazy.LazyListScope){}[0] + + // Targets: [ios, wasmJs] + final val platformValue // com.huanshankeji.compose.foundation.lazy/LazyListScope.platformValue|{}platformValue[0] + final fun (): androidx.compose.foundation.lazy/LazyListScope // com.huanshankeji.compose.foundation.lazy/LazyListScope.platformValue.|(){}[0] + + // Targets: [js] + constructor () // com.huanshankeji.compose.foundation.lazy/LazyListScope.|(){}[0] +} + +final class com.huanshankeji.compose.foundation.text.input/PlatformImeOptions { // com.huanshankeji.compose.foundation.text.input/PlatformImeOptions|null[0] + // Targets: [ios, wasmJs] + constructor (androidx.compose.ui.text.input/PlatformImeOptions) // com.huanshankeji.compose.foundation.text.input/PlatformImeOptions.|(androidx.compose.ui.text.input.PlatformImeOptions){}[0] + + // Targets: [ios, wasmJs] + final val platformValue // com.huanshankeji.compose.foundation.text.input/PlatformImeOptions.platformValue|{}platformValue[0] + final fun (): androidx.compose.ui.text.input/PlatformImeOptions // com.huanshankeji.compose.foundation.text.input/PlatformImeOptions.platformValue.|(){}[0] + + // Targets: [js] + constructor () // com.huanshankeji.compose.foundation.text.input/PlatformImeOptions.|(){}[0] +} + +final class com.huanshankeji.compose.foundation.text/KeyboardOptions { // com.huanshankeji.compose.foundation.text/KeyboardOptions|null[0] + constructor (com.huanshankeji.compose.foundation.text.input/KeyboardCapitalization? = ..., kotlin/Boolean? = ..., com.huanshankeji.compose.foundation.text.input/KeyboardType? = ..., com.huanshankeji.compose.foundation.text.input/ImeAction? = ..., com.huanshankeji.compose.foundation.text.input/PlatformImeOptions? = ...) // com.huanshankeji.compose.foundation.text/KeyboardOptions.|(com.huanshankeji.compose.foundation.text.input.KeyboardCapitalization?;kotlin.Boolean?;com.huanshankeji.compose.foundation.text.input.KeyboardType?;com.huanshankeji.compose.foundation.text.input.ImeAction?;com.huanshankeji.compose.foundation.text.input.PlatformImeOptions?){}[0] + + final val autoCorrect // com.huanshankeji.compose.foundation.text/KeyboardOptions.autoCorrect|{}autoCorrect[0] + final fun (): kotlin/Boolean? // com.huanshankeji.compose.foundation.text/KeyboardOptions.autoCorrect.|(){}[0] + final val capitalization // com.huanshankeji.compose.foundation.text/KeyboardOptions.capitalization|{}capitalization[0] + final fun (): com.huanshankeji.compose.foundation.text.input/KeyboardCapitalization? // com.huanshankeji.compose.foundation.text/KeyboardOptions.capitalization.|(){}[0] + final val imeAction // com.huanshankeji.compose.foundation.text/KeyboardOptions.imeAction|{}imeAction[0] + final fun (): com.huanshankeji.compose.foundation.text.input/ImeAction? // com.huanshankeji.compose.foundation.text/KeyboardOptions.imeAction.|(){}[0] + final val keyboardType // com.huanshankeji.compose.foundation.text/KeyboardOptions.keyboardType|{}keyboardType[0] + final fun (): com.huanshankeji.compose.foundation.text.input/KeyboardType? // com.huanshankeji.compose.foundation.text/KeyboardOptions.keyboardType.|(){}[0] + final val platformImeOptions // com.huanshankeji.compose.foundation.text/KeyboardOptions.platformImeOptions|{}platformImeOptions[0] + final fun (): com.huanshankeji.compose.foundation.text.input/PlatformImeOptions? // com.huanshankeji.compose.foundation.text/KeyboardOptions.platformImeOptions.|(){}[0] + + final object Companion { // com.huanshankeji.compose.foundation.text/KeyboardOptions.Companion|null[0] + final val Default // com.huanshankeji.compose.foundation.text/KeyboardOptions.Companion.Default|{}Default[0] + final fun (): com.huanshankeji.compose.foundation.text/KeyboardOptions // com.huanshankeji.compose.foundation.text/KeyboardOptions.Companion.Default.|(){}[0] + } +} + +final class com.huanshankeji.compose.foundation/BorderStroke { // com.huanshankeji.compose.foundation/BorderStroke|null[0] + constructor (androidx.compose.ui.unit/Dp, com.huanshankeji.compose.ui.graphics/Brush) // com.huanshankeji.compose.foundation/BorderStroke.|(androidx.compose.ui.unit.Dp;com.huanshankeji.compose.ui.graphics.Brush){}[0] + + final val brush // com.huanshankeji.compose.foundation/BorderStroke.brush|{}brush[0] + final fun (): com.huanshankeji.compose.ui.graphics/Brush // com.huanshankeji.compose.foundation/BorderStroke.brush.|(){}[0] + final val width // com.huanshankeji.compose.foundation/BorderStroke.width|{}width[0] + final fun (): androidx.compose.ui.unit/Dp // com.huanshankeji.compose.foundation/BorderStroke.width.|(){}[0] + + final fun component1(): androidx.compose.ui.unit/Dp // com.huanshankeji.compose.foundation/BorderStroke.component1|component1(){}[0] + final fun component2(): com.huanshankeji.compose.ui.graphics/Brush // com.huanshankeji.compose.foundation/BorderStroke.component2|component2(){}[0] + final fun copy(androidx.compose.ui.unit/Dp = ..., com.huanshankeji.compose.ui.graphics/Brush = ...): com.huanshankeji.compose.foundation/BorderStroke // com.huanshankeji.compose.foundation/BorderStroke.copy|copy(androidx.compose.ui.unit.Dp;com.huanshankeji.compose.ui.graphics.Brush){}[0] + final fun equals(kotlin/Any?): kotlin/Boolean // com.huanshankeji.compose.foundation/BorderStroke.equals|equals(kotlin.Any?){}[0] + final fun hashCode(): kotlin/Int // com.huanshankeji.compose.foundation/BorderStroke.hashCode|hashCode(){}[0] + final fun toString(): kotlin/String // com.huanshankeji.compose.foundation/BorderStroke.toString|toString(){}[0] +} + +final class com.huanshankeji.compose.runtime/DeferredComposableRunner { // com.huanshankeji.compose.runtime/DeferredComposableRunner|null[0] + constructor () // com.huanshankeji.compose.runtime/DeferredComposableRunner.|(){}[0] + + final fun ComposableRun(kotlin/Function0, androidx.compose.runtime/Composer?, kotlin/Int) // com.huanshankeji.compose.runtime/DeferredComposableRunner.ComposableRun|ComposableRun(kotlin.Function0;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun addComposable(kotlin/Function2) // com.huanshankeji.compose.runtime/DeferredComposableRunner.addComposable|addComposable(kotlin.Function2){}[0] +} + +final class com.huanshankeji.compose.ui.graphics/Brush { // com.huanshankeji.compose.ui.graphics/Brush|null[0] + // Targets: [ios, wasmJs] + constructor (androidx.compose.ui.graphics/Brush) // com.huanshankeji.compose.ui.graphics/Brush.|(androidx.compose.ui.graphics.Brush){}[0] + + // Targets: [ios, wasmJs] + final val platformValue // com.huanshankeji.compose.ui.graphics/Brush.platformValue|{}platformValue[0] + final fun (): androidx.compose.ui.graphics/Brush // com.huanshankeji.compose.ui.graphics/Brush.platformValue.|(){}[0] + + // Targets: [js] + constructor (org.jetbrains.compose.web.css/LineStyle, com.huanshankeji.compose.ui.graphics/Color) // com.huanshankeji.compose.ui.graphics/Brush.|(org.jetbrains.compose.web.css.LineStyle;com.huanshankeji.compose.ui.graphics.Color){}[0] + + // Targets: [js] + final val color // com.huanshankeji.compose.ui.graphics/Brush.color|{}color[0] + final fun (): com.huanshankeji.compose.ui.graphics/Color // com.huanshankeji.compose.ui.graphics/Brush.color.|(){}[0] + + // Targets: [js] + final val lineStyle // com.huanshankeji.compose.ui.graphics/Brush.lineStyle|{}lineStyle[0] + final fun (): org.jetbrains.compose.web.css/LineStyle // com.huanshankeji.compose.ui.graphics/Brush.lineStyle.|(){}[0] +} + +final class com.huanshankeji.compose.ui.graphics/Color { // com.huanshankeji.compose.ui.graphics/Color|null[0] + final val platformValue // com.huanshankeji.compose.ui.graphics/Color.platformValue|{}platformValue[0] + // Targets: [ios, wasmJs] + final fun (): androidx.compose.ui.graphics/Color // com.huanshankeji.compose.ui.graphics/Color.platformValue.|(){}[0] + + // Targets: [js] + final fun (): com.varabyte.kobweb.compose.ui.graphics/Color // com.huanshankeji.compose.ui.graphics/Color.platformValue.|(){}[0] + + final fun toString(): kotlin/String // com.huanshankeji.compose.ui.graphics/Color.toString|toString(){}[0] + + final object Companion { // com.huanshankeji.compose.ui.graphics/Color.Companion|null[0] + final val Black // com.huanshankeji.compose.ui.graphics/Color.Companion.Black|{}Black[0] + final fun (): com.huanshankeji.compose.ui.graphics/Color // com.huanshankeji.compose.ui.graphics/Color.Companion.Black.|(){}[0] + final val Blue // com.huanshankeji.compose.ui.graphics/Color.Companion.Blue|{}Blue[0] + final fun (): com.huanshankeji.compose.ui.graphics/Color // com.huanshankeji.compose.ui.graphics/Color.Companion.Blue.|(){}[0] + final val Cyan // com.huanshankeji.compose.ui.graphics/Color.Companion.Cyan|{}Cyan[0] + final fun (): com.huanshankeji.compose.ui.graphics/Color // com.huanshankeji.compose.ui.graphics/Color.Companion.Cyan.|(){}[0] + final val DarkGray // com.huanshankeji.compose.ui.graphics/Color.Companion.DarkGray|{}DarkGray[0] + final fun (): com.huanshankeji.compose.ui.graphics/Color // com.huanshankeji.compose.ui.graphics/Color.Companion.DarkGray.|(){}[0] + final val Gray // com.huanshankeji.compose.ui.graphics/Color.Companion.Gray|{}Gray[0] + final fun (): com.huanshankeji.compose.ui.graphics/Color // com.huanshankeji.compose.ui.graphics/Color.Companion.Gray.|(){}[0] + final val Green // com.huanshankeji.compose.ui.graphics/Color.Companion.Green|{}Green[0] + final fun (): com.huanshankeji.compose.ui.graphics/Color // com.huanshankeji.compose.ui.graphics/Color.Companion.Green.|(){}[0] + final val LightGray // com.huanshankeji.compose.ui.graphics/Color.Companion.LightGray|{}LightGray[0] + final fun (): com.huanshankeji.compose.ui.graphics/Color // com.huanshankeji.compose.ui.graphics/Color.Companion.LightGray.|(){}[0] + final val Magenta // com.huanshankeji.compose.ui.graphics/Color.Companion.Magenta|{}Magenta[0] + final fun (): com.huanshankeji.compose.ui.graphics/Color // com.huanshankeji.compose.ui.graphics/Color.Companion.Magenta.|(){}[0] + final val Red // com.huanshankeji.compose.ui.graphics/Color.Companion.Red|{}Red[0] + final fun (): com.huanshankeji.compose.ui.graphics/Color // com.huanshankeji.compose.ui.graphics/Color.Companion.Red.|(){}[0] + final val Transparent // com.huanshankeji.compose.ui.graphics/Color.Companion.Transparent|{}Transparent[0] + final fun (): com.huanshankeji.compose.ui.graphics/Color // com.huanshankeji.compose.ui.graphics/Color.Companion.Transparent.|(){}[0] + final val White // com.huanshankeji.compose.ui.graphics/Color.Companion.White|{}White[0] + final fun (): com.huanshankeji.compose.ui.graphics/Color // com.huanshankeji.compose.ui.graphics/Color.Companion.White.|(){}[0] + final val Yellow // com.huanshankeji.compose.ui.graphics/Color.Companion.Yellow|{}Yellow[0] + final fun (): com.huanshankeji.compose.ui.graphics/Color // com.huanshankeji.compose.ui.graphics/Color.Companion.Yellow.|(){}[0] + + final fun hsl(kotlin/Float, kotlin/Float, kotlin/Float, kotlin/Float = ...): com.huanshankeji.compose.ui.graphics/Color // com.huanshankeji.compose.ui.graphics/Color.Companion.hsl|hsl(kotlin.Float;kotlin.Float;kotlin.Float;kotlin.Float){}[0] + } + + // Targets: [ios, wasmJs] + constructor (androidx.compose.ui.graphics/Color) // com.huanshankeji.compose.ui.graphics/Color.|(androidx.compose.ui.graphics.Color){}[0] + + // Targets: [js] + constructor (com.varabyte.kobweb.compose.ui.graphics/Color) // com.huanshankeji.compose.ui.graphics/Color.|(com.varabyte.kobweb.compose.ui.graphics.Color){}[0] +} + +final value class com.huanshankeji.compose.foundation.text.input/ImeAction { // com.huanshankeji.compose.foundation.text.input/ImeAction|null[0] + final fun equals(kotlin/Any?): kotlin/Boolean // com.huanshankeji.compose.foundation.text.input/ImeAction.equals|equals(kotlin.Any?){}[0] + final fun hashCode(): kotlin/Int // com.huanshankeji.compose.foundation.text.input/ImeAction.hashCode|hashCode(){}[0] + final fun toString(): kotlin/String // com.huanshankeji.compose.foundation.text.input/ImeAction.toString|toString(){}[0] + + final object Companion { // com.huanshankeji.compose.foundation.text.input/ImeAction.Companion|null[0] + final val Default // com.huanshankeji.compose.foundation.text.input/ImeAction.Companion.Default|{}Default[0] + final fun (): com.huanshankeji.compose.foundation.text.input/ImeAction // com.huanshankeji.compose.foundation.text.input/ImeAction.Companion.Default.|(){}[0] + final val Done // com.huanshankeji.compose.foundation.text.input/ImeAction.Companion.Done|{}Done[0] + final fun (): com.huanshankeji.compose.foundation.text.input/ImeAction // com.huanshankeji.compose.foundation.text.input/ImeAction.Companion.Done.|(){}[0] + final val Go // com.huanshankeji.compose.foundation.text.input/ImeAction.Companion.Go|{}Go[0] + final fun (): com.huanshankeji.compose.foundation.text.input/ImeAction // com.huanshankeji.compose.foundation.text.input/ImeAction.Companion.Go.|(){}[0] + final val Next // com.huanshankeji.compose.foundation.text.input/ImeAction.Companion.Next|{}Next[0] + final fun (): com.huanshankeji.compose.foundation.text.input/ImeAction // com.huanshankeji.compose.foundation.text.input/ImeAction.Companion.Next.|(){}[0] + final val None // com.huanshankeji.compose.foundation.text.input/ImeAction.Companion.None|{}None[0] + final fun (): com.huanshankeji.compose.foundation.text.input/ImeAction // com.huanshankeji.compose.foundation.text.input/ImeAction.Companion.None.|(){}[0] + final val Previous // com.huanshankeji.compose.foundation.text.input/ImeAction.Companion.Previous|{}Previous[0] + final fun (): com.huanshankeji.compose.foundation.text.input/ImeAction // com.huanshankeji.compose.foundation.text.input/ImeAction.Companion.Previous.|(){}[0] + final val Search // com.huanshankeji.compose.foundation.text.input/ImeAction.Companion.Search|{}Search[0] + final fun (): com.huanshankeji.compose.foundation.text.input/ImeAction // com.huanshankeji.compose.foundation.text.input/ImeAction.Companion.Search.|(){}[0] + final val Send // com.huanshankeji.compose.foundation.text.input/ImeAction.Companion.Send|{}Send[0] + final fun (): com.huanshankeji.compose.foundation.text.input/ImeAction // com.huanshankeji.compose.foundation.text.input/ImeAction.Companion.Send.|(){}[0] + } +} + +final value class com.huanshankeji.compose.foundation.text.input/KeyboardCapitalization { // com.huanshankeji.compose.foundation.text.input/KeyboardCapitalization|null[0] + final fun equals(kotlin/Any?): kotlin/Boolean // com.huanshankeji.compose.foundation.text.input/KeyboardCapitalization.equals|equals(kotlin.Any?){}[0] + final fun hashCode(): kotlin/Int // com.huanshankeji.compose.foundation.text.input/KeyboardCapitalization.hashCode|hashCode(){}[0] + final fun toString(): kotlin/String // com.huanshankeji.compose.foundation.text.input/KeyboardCapitalization.toString|toString(){}[0] + + final object Companion { // com.huanshankeji.compose.foundation.text.input/KeyboardCapitalization.Companion|null[0] + final val Characters // com.huanshankeji.compose.foundation.text.input/KeyboardCapitalization.Companion.Characters|{}Characters[0] + final fun (): com.huanshankeji.compose.foundation.text.input/KeyboardCapitalization // com.huanshankeji.compose.foundation.text.input/KeyboardCapitalization.Companion.Characters.|(){}[0] + final val None // com.huanshankeji.compose.foundation.text.input/KeyboardCapitalization.Companion.None|{}None[0] + final fun (): com.huanshankeji.compose.foundation.text.input/KeyboardCapitalization // com.huanshankeji.compose.foundation.text.input/KeyboardCapitalization.Companion.None.|(){}[0] + final val Sentences // com.huanshankeji.compose.foundation.text.input/KeyboardCapitalization.Companion.Sentences|{}Sentences[0] + final fun (): com.huanshankeji.compose.foundation.text.input/KeyboardCapitalization // com.huanshankeji.compose.foundation.text.input/KeyboardCapitalization.Companion.Sentences.|(){}[0] + final val Words // com.huanshankeji.compose.foundation.text.input/KeyboardCapitalization.Companion.Words|{}Words[0] + final fun (): com.huanshankeji.compose.foundation.text.input/KeyboardCapitalization // com.huanshankeji.compose.foundation.text.input/KeyboardCapitalization.Companion.Words.|(){}[0] + } +} + +final value class com.huanshankeji.compose.foundation.text.input/KeyboardType { // com.huanshankeji.compose.foundation.text.input/KeyboardType|null[0] + final fun equals(kotlin/Any?): kotlin/Boolean // com.huanshankeji.compose.foundation.text.input/KeyboardType.equals|equals(kotlin.Any?){}[0] + final fun hashCode(): kotlin/Int // com.huanshankeji.compose.foundation.text.input/KeyboardType.hashCode|hashCode(){}[0] + final fun toString(): kotlin/String // com.huanshankeji.compose.foundation.text.input/KeyboardType.toString|toString(){}[0] + + final object Companion { // com.huanshankeji.compose.foundation.text.input/KeyboardType.Companion|null[0] + final val Ascii // com.huanshankeji.compose.foundation.text.input/KeyboardType.Companion.Ascii|{}Ascii[0] + final fun (): com.huanshankeji.compose.foundation.text.input/KeyboardType // com.huanshankeji.compose.foundation.text.input/KeyboardType.Companion.Ascii.|(){}[0] + final val Decimal // com.huanshankeji.compose.foundation.text.input/KeyboardType.Companion.Decimal|{}Decimal[0] + final fun (): com.huanshankeji.compose.foundation.text.input/KeyboardType // com.huanshankeji.compose.foundation.text.input/KeyboardType.Companion.Decimal.|(){}[0] + final val Email // com.huanshankeji.compose.foundation.text.input/KeyboardType.Companion.Email|{}Email[0] + final fun (): com.huanshankeji.compose.foundation.text.input/KeyboardType // com.huanshankeji.compose.foundation.text.input/KeyboardType.Companion.Email.|(){}[0] + final val Number // com.huanshankeji.compose.foundation.text.input/KeyboardType.Companion.Number|{}Number[0] + final fun (): com.huanshankeji.compose.foundation.text.input/KeyboardType // com.huanshankeji.compose.foundation.text.input/KeyboardType.Companion.Number.|(){}[0] + final val NumberPassword // com.huanshankeji.compose.foundation.text.input/KeyboardType.Companion.NumberPassword|{}NumberPassword[0] + final fun (): com.huanshankeji.compose.foundation.text.input/KeyboardType // com.huanshankeji.compose.foundation.text.input/KeyboardType.Companion.NumberPassword.|(){}[0] + final val Password // com.huanshankeji.compose.foundation.text.input/KeyboardType.Companion.Password|{}Password[0] + final fun (): com.huanshankeji.compose.foundation.text.input/KeyboardType // com.huanshankeji.compose.foundation.text.input/KeyboardType.Companion.Password.|(){}[0] + final val Phone // com.huanshankeji.compose.foundation.text.input/KeyboardType.Companion.Phone|{}Phone[0] + final fun (): com.huanshankeji.compose.foundation.text.input/KeyboardType // com.huanshankeji.compose.foundation.text.input/KeyboardType.Companion.Phone.|(){}[0] + final val Text // com.huanshankeji.compose.foundation.text.input/KeyboardType.Companion.Text|{}Text[0] + final fun (): com.huanshankeji.compose.foundation.text.input/KeyboardType // com.huanshankeji.compose.foundation.text.input/KeyboardType.Companion.Text.|(){}[0] + final val Uri // com.huanshankeji.compose.foundation.text.input/KeyboardType.Companion.Uri|{}Uri[0] + final fun (): com.huanshankeji.compose.foundation.text.input/KeyboardType // com.huanshankeji.compose.foundation.text.input/KeyboardType.Companion.Uri.|(){}[0] + } +} + +final value class com.huanshankeji.compose.foundation.text/KeyboardActions { // com.huanshankeji.compose.foundation.text/KeyboardActions|null[0] + constructor (kotlin/Function1? = ...) // com.huanshankeji.compose.foundation.text/KeyboardActions.|(kotlin.Function1?){}[0] + + final val onAny // com.huanshankeji.compose.foundation.text/KeyboardActions.onAny|{}onAny[0] + final fun (): kotlin/Function1? // com.huanshankeji.compose.foundation.text/KeyboardActions.onAny.|(){}[0] + + final fun equals(kotlin/Any?): kotlin/Boolean // com.huanshankeji.compose.foundation.text/KeyboardActions.equals|equals(kotlin.Any?){}[0] + final fun hashCode(): kotlin/Int // com.huanshankeji.compose.foundation.text/KeyboardActions.hashCode|hashCode(){}[0] + final fun toString(): kotlin/String // com.huanshankeji.compose.foundation.text/KeyboardActions.toString|toString(){}[0] + + final object Companion { // com.huanshankeji.compose.foundation.text/KeyboardActions.Companion|null[0] + final val Default // com.huanshankeji.compose.foundation.text/KeyboardActions.Companion.Default|{}Default[0] + final fun (): com.huanshankeji.compose.foundation.text/KeyboardActions // com.huanshankeji.compose.foundation.text/KeyboardActions.Companion.Default.|(){}[0] + } +} + +sealed class <#A: out kotlin/Any?, #B: out kotlin/Any?> com.huanshankeji.compose.ext/LoadingState { // com.huanshankeji.compose.ext/LoadingState|null[0] + final class <#A1: out kotlin/Any?> Error : com.huanshankeji.compose.ext/LoadingState { // com.huanshankeji.compose.ext/LoadingState.Error|null[0] + constructor (#A1) // com.huanshankeji.compose.ext/LoadingState.Error.|(1:0){}[0] + + final val error // com.huanshankeji.compose.ext/LoadingState.Error.error|{}error[0] + final fun (): #A1 // com.huanshankeji.compose.ext/LoadingState.Error.error.|(){}[0] + } + + final class <#A1: out kotlin/Any?> Loaded : com.huanshankeji.compose.ext/LoadingState<#A1, kotlin/Nothing> { // com.huanshankeji.compose.ext/LoadingState.Loaded|null[0] + constructor (#A1) // com.huanshankeji.compose.ext/LoadingState.Loaded.|(1:0){}[0] + + final val value // com.huanshankeji.compose.ext/LoadingState.Loaded.value|{}value[0] + final fun (): #A1 // com.huanshankeji.compose.ext/LoadingState.Loaded.value.|(){}[0] + } + + final object Loading : com.huanshankeji.compose.ext/LoadingState // com.huanshankeji.compose.ext/LoadingState.Loading|null[0] +} + +sealed class com.huanshankeji.compose.ui.unit.ext/DpOrPercentage { // com.huanshankeji.compose.ui.unit.ext/DpOrPercentage|null[0] + final class Dp : com.huanshankeji.compose.ui.unit.ext/DpOrPercentage { // com.huanshankeji.compose.ui.unit.ext/DpOrPercentage.Dp|null[0] + constructor (androidx.compose.ui.unit/Dp) // com.huanshankeji.compose.ui.unit.ext/DpOrPercentage.Dp.|(androidx.compose.ui.unit.Dp){}[0] + + final val dp // com.huanshankeji.compose.ui.unit.ext/DpOrPercentage.Dp.dp|{}dp[0] + final fun (): androidx.compose.ui.unit/Dp // com.huanshankeji.compose.ui.unit.ext/DpOrPercentage.Dp.dp.|(){}[0] + } + + final class Percentage : com.huanshankeji.compose.ui.unit.ext/DpOrPercentage { // com.huanshankeji.compose.ui.unit.ext/DpOrPercentage.Percentage|null[0] + constructor (kotlin/Int) // com.huanshankeji.compose.ui.unit.ext/DpOrPercentage.Percentage.|(kotlin.Int){}[0] + + final val percentage // com.huanshankeji.compose.ui.unit.ext/DpOrPercentage.Percentage.percentage|{}percentage[0] + final fun (): kotlin/Int // com.huanshankeji.compose.ui.unit.ext/DpOrPercentage.Percentage.percentage.|(){}[0] + } +} + +final object com.huanshankeji.compose.foundation.layout/Arrangement { // com.huanshankeji.compose.foundation.layout/Arrangement|null[0] + final val Bottom // com.huanshankeji.compose.foundation.layout/Arrangement.Bottom|{}Bottom[0] + final fun (): com.huanshankeji.compose.foundation.layout/Arrangement.Vertical // com.huanshankeji.compose.foundation.layout/Arrangement.Bottom.|(){}[0] + final val Center // com.huanshankeji.compose.foundation.layout/Arrangement.Center|{}Center[0] + final fun (): com.huanshankeji.compose.foundation.layout/Arrangement.HorizontalOrVertical // com.huanshankeji.compose.foundation.layout/Arrangement.Center.|(){}[0] + final val End // com.huanshankeji.compose.foundation.layout/Arrangement.End|{}End[0] + final fun (): com.huanshankeji.compose.foundation.layout/Arrangement.Horizontal // com.huanshankeji.compose.foundation.layout/Arrangement.End.|(){}[0] + final val SpaceAround // com.huanshankeji.compose.foundation.layout/Arrangement.SpaceAround|{}SpaceAround[0] + final fun (): com.huanshankeji.compose.foundation.layout/Arrangement.HorizontalOrVertical // com.huanshankeji.compose.foundation.layout/Arrangement.SpaceAround.|(){}[0] + final val SpaceBetween // com.huanshankeji.compose.foundation.layout/Arrangement.SpaceBetween|{}SpaceBetween[0] + final fun (): com.huanshankeji.compose.foundation.layout/Arrangement.HorizontalOrVertical // com.huanshankeji.compose.foundation.layout/Arrangement.SpaceBetween.|(){}[0] + final val SpaceEvenly // com.huanshankeji.compose.foundation.layout/Arrangement.SpaceEvenly|{}SpaceEvenly[0] + final fun (): com.huanshankeji.compose.foundation.layout/Arrangement.HorizontalOrVertical // com.huanshankeji.compose.foundation.layout/Arrangement.SpaceEvenly.|(){}[0] + final val Start // com.huanshankeji.compose.foundation.layout/Arrangement.Start|{}Start[0] + final fun (): com.huanshankeji.compose.foundation.layout/Arrangement.Horizontal // com.huanshankeji.compose.foundation.layout/Arrangement.Start.|(){}[0] + final val Top // com.huanshankeji.compose.foundation.layout/Arrangement.Top|{}Top[0] + final fun (): com.huanshankeji.compose.foundation.layout/Arrangement.Vertical // com.huanshankeji.compose.foundation.layout/Arrangement.Top.|(){}[0] + + final fun spacedBy(androidx.compose.ui.unit/Dp): com.huanshankeji.compose.foundation.layout/Arrangement.HorizontalOrVertical // com.huanshankeji.compose.foundation.layout/Arrangement.spacedBy|spacedBy(androidx.compose.ui.unit.Dp){}[0] + + abstract interface HorizontalOrVertical : com.huanshankeji.compose.foundation.layout/Arrangement.Horizontal, com.huanshankeji.compose.foundation.layout/Arrangement.Vertical { // com.huanshankeji.compose.foundation.layout/Arrangement.HorizontalOrVertical|null[0] + abstract val platformValue // com.huanshankeji.compose.foundation.layout/Arrangement.HorizontalOrVertical.platformValue|{}platformValue[0] + // Targets: [ios, wasmJs] + abstract fun (): androidx.compose.foundation.layout/Arrangement.HorizontalOrVertical // com.huanshankeji.compose.foundation.layout/Arrangement.HorizontalOrVertical.platformValue.|(){}[0] + + // Targets: [js] + abstract fun (): com.varabyte.kobweb.compose.foundation.layout/Arrangement.HorizontalOrVertical // com.huanshankeji.compose.foundation.layout/Arrangement.HorizontalOrVertical.platformValue.|(){}[0] + + final class Impl : com.huanshankeji.compose.foundation.layout/Arrangement.HorizontalOrVertical { // com.huanshankeji.compose.foundation.layout/Arrangement.HorizontalOrVertical.Impl|null[0] + final val platformValue // com.huanshankeji.compose.foundation.layout/Arrangement.HorizontalOrVertical.Impl.platformValue|{}platformValue[0] + // Targets: [ios, wasmJs] + final fun (): androidx.compose.foundation.layout/Arrangement.HorizontalOrVertical // com.huanshankeji.compose.foundation.layout/Arrangement.HorizontalOrVertical.Impl.platformValue.|(){}[0] + + // Targets: [js] + final fun (): com.varabyte.kobweb.compose.foundation.layout/Arrangement.HorizontalOrVertical // com.huanshankeji.compose.foundation.layout/Arrangement.HorizontalOrVertical.Impl.platformValue.|(){}[0] + + // Targets: [ios, wasmJs] + constructor (androidx.compose.foundation.layout/Arrangement.HorizontalOrVertical) // com.huanshankeji.compose.foundation.layout/Arrangement.HorizontalOrVertical.Impl.|(androidx.compose.foundation.layout.Arrangement.HorizontalOrVertical){}[0] + + // Targets: [js] + constructor (com.varabyte.kobweb.compose.foundation.layout/Arrangement.HorizontalOrVertical) // com.huanshankeji.compose.foundation.layout/Arrangement.HorizontalOrVertical.Impl.|(com.varabyte.kobweb.compose.foundation.layout.Arrangement.HorizontalOrVertical){}[0] + } + + // Targets: [js] + abstract class FromStyleImpl : com.huanshankeji.compose.foundation.layout/Arrangement.HorizontalOrVertical { // com.huanshankeji.compose.foundation.layout/Arrangement.HorizontalOrVertical.FromStyleImpl|null[0] + constructor () // com.huanshankeji.compose.foundation.layout/Arrangement.HorizontalOrVertical.FromStyleImpl.|(){}[0] + + open val platformValue // com.huanshankeji.compose.foundation.layout/Arrangement.HorizontalOrVertical.FromStyleImpl.platformValue|{}platformValue[0] + open fun (): com.varabyte.kobweb.compose.foundation.layout/Arrangement.HorizontalOrVertical // com.huanshankeji.compose.foundation.layout/Arrangement.HorizontalOrVertical.FromStyleImpl.platformValue.|(){}[0] + + abstract fun (org.jetbrains.compose.web.css/StyleScope).styles() // com.huanshankeji.compose.foundation.layout/Arrangement.HorizontalOrVertical.FromStyleImpl.styles|styles@org.jetbrains.compose.web.css.StyleScope(){}[0] + } + } + + // Targets: [ios, wasmJs] + abstract interface Horizontal { // com.huanshankeji.compose.foundation.layout/Arrangement.Horizontal|null[0] + abstract val platformValue // com.huanshankeji.compose.foundation.layout/Arrangement.Horizontal.platformValue|{}platformValue[0] + abstract fun (): androidx.compose.foundation.layout/Arrangement.Horizontal // com.huanshankeji.compose.foundation.layout/Arrangement.Horizontal.platformValue.|(){}[0] + + final class Impl : com.huanshankeji.compose.foundation.layout/Arrangement.Horizontal { // com.huanshankeji.compose.foundation.layout/Arrangement.Horizontal.Impl|null[0] + constructor (androidx.compose.foundation.layout/Arrangement.Horizontal) // com.huanshankeji.compose.foundation.layout/Arrangement.Horizontal.Impl.|(androidx.compose.foundation.layout.Arrangement.Horizontal){}[0] + + final val platformValue // com.huanshankeji.compose.foundation.layout/Arrangement.Horizontal.Impl.platformValue|{}platformValue[0] + final fun (): androidx.compose.foundation.layout/Arrangement.Horizontal // com.huanshankeji.compose.foundation.layout/Arrangement.Horizontal.Impl.platformValue.|(){}[0] + } + } + + // Targets: [ios, wasmJs] + abstract interface Vertical { // com.huanshankeji.compose.foundation.layout/Arrangement.Vertical|null[0] + abstract val platformValue // com.huanshankeji.compose.foundation.layout/Arrangement.Vertical.platformValue|{}platformValue[0] + abstract fun (): androidx.compose.foundation.layout/Arrangement.Vertical // com.huanshankeji.compose.foundation.layout/Arrangement.Vertical.platformValue.|(){}[0] + + final class Impl : com.huanshankeji.compose.foundation.layout/Arrangement.Vertical { // com.huanshankeji.compose.foundation.layout/Arrangement.Vertical.Impl|null[0] + constructor (androidx.compose.foundation.layout/Arrangement.Vertical) // com.huanshankeji.compose.foundation.layout/Arrangement.Vertical.Impl.|(androidx.compose.foundation.layout.Arrangement.Vertical){}[0] + + final val platformValue // com.huanshankeji.compose.foundation.layout/Arrangement.Vertical.Impl.platformValue|{}platformValue[0] + final fun (): androidx.compose.foundation.layout/Arrangement.Vertical // com.huanshankeji.compose.foundation.layout/Arrangement.Vertical.Impl.platformValue.|(){}[0] + } + } + + // Targets: [js] + abstract interface CommonArrangement { // com.huanshankeji.compose.foundation.layout/Arrangement.CommonArrangement|null[0] + open fun (org.jetbrains.compose.web.css/StyleScope).styles() // com.huanshankeji.compose.foundation.layout/Arrangement.CommonArrangement.styles|styles@org.jetbrains.compose.web.css.StyleScope(){}[0] + } + + // Targets: [js] + abstract interface Horizontal : com.huanshankeji.compose.foundation.layout/Arrangement.CommonArrangement { // com.huanshankeji.compose.foundation.layout/Arrangement.Horizontal|null[0] + abstract val platformValue // com.huanshankeji.compose.foundation.layout/Arrangement.Horizontal.platformValue|{}platformValue[0] + abstract fun (): com.varabyte.kobweb.compose.foundation.layout/Arrangement.Horizontal // com.huanshankeji.compose.foundation.layout/Arrangement.Horizontal.platformValue.|(){}[0] + + final class Impl : com.huanshankeji.compose.foundation.layout/Arrangement.Horizontal { // com.huanshankeji.compose.foundation.layout/Arrangement.Horizontal.Impl|null[0] + constructor (com.varabyte.kobweb.compose.foundation.layout/Arrangement.Horizontal) // com.huanshankeji.compose.foundation.layout/Arrangement.Horizontal.Impl.|(com.varabyte.kobweb.compose.foundation.layout.Arrangement.Horizontal){}[0] + + final val platformValue // com.huanshankeji.compose.foundation.layout/Arrangement.Horizontal.Impl.platformValue|{}platformValue[0] + final fun (): com.varabyte.kobweb.compose.foundation.layout/Arrangement.Horizontal // com.huanshankeji.compose.foundation.layout/Arrangement.Horizontal.Impl.platformValue.|(){}[0] + } + } + + // Targets: [js] + abstract interface Vertical : com.huanshankeji.compose.foundation.layout/Arrangement.CommonArrangement { // com.huanshankeji.compose.foundation.layout/Arrangement.Vertical|null[0] + abstract val platformValue // com.huanshankeji.compose.foundation.layout/Arrangement.Vertical.platformValue|{}platformValue[0] + abstract fun (): com.varabyte.kobweb.compose.foundation.layout/Arrangement.Vertical // com.huanshankeji.compose.foundation.layout/Arrangement.Vertical.platformValue.|(){}[0] + + final class Impl : com.huanshankeji.compose.foundation.layout/Arrangement.Vertical { // com.huanshankeji.compose.foundation.layout/Arrangement.Vertical.Impl|null[0] + constructor (com.varabyte.kobweb.compose.foundation.layout/Arrangement.Vertical) // com.huanshankeji.compose.foundation.layout/Arrangement.Vertical.Impl.|(com.varabyte.kobweb.compose.foundation.layout.Arrangement.Vertical){}[0] + + final val platformValue // com.huanshankeji.compose.foundation.layout/Arrangement.Vertical.Impl.platformValue|{}platformValue[0] + final fun (): com.varabyte.kobweb.compose.foundation.layout/Arrangement.Vertical // com.huanshankeji.compose.foundation.layout/Arrangement.Vertical.Impl.platformValue.|(){}[0] + } + } +} + +final const val com.huanshankeji.compose.foundation.text.ext/INLINE_TEXT_DEPRECATED_MESSAGE // com.huanshankeji.compose.foundation.text.ext/INLINE_TEXT_DEPRECATED_MESSAGE|{}INLINE_TEXT_DEPRECATED_MESSAGE[0] + final fun (): kotlin/String // com.huanshankeji.compose.foundation.text.ext/INLINE_TEXT_DEPRECATED_MESSAGE.|(){}[0] + +final val com.huanshankeji.compose.ext/com_huanshankeji_compose_ext_LoadingState$stableprop // com.huanshankeji.compose.ext/com_huanshankeji_compose_ext_LoadingState$stableprop|#static{}com_huanshankeji_compose_ext_LoadingState$stableprop[0] +final val com.huanshankeji.compose.ext/com_huanshankeji_compose_ext_LoadingState_Error$stableprop // com.huanshankeji.compose.ext/com_huanshankeji_compose_ext_LoadingState_Error$stableprop|#static{}com_huanshankeji_compose_ext_LoadingState_Error$stableprop[0] +final val com.huanshankeji.compose.ext/com_huanshankeji_compose_ext_LoadingState_Loaded$stableprop // com.huanshankeji.compose.ext/com_huanshankeji_compose_ext_LoadingState_Loaded$stableprop|#static{}com_huanshankeji_compose_ext_LoadingState_Loaded$stableprop[0] +final val com.huanshankeji.compose.ext/com_huanshankeji_compose_ext_LoadingState_Loading$stableprop // com.huanshankeji.compose.ext/com_huanshankeji_compose_ext_LoadingState_Loading$stableprop|#static{}com_huanshankeji_compose_ext_LoadingState_Loading$stableprop[0] +final val com.huanshankeji.compose.foundation.layout.ext/com_huanshankeji_compose_foundation_layout_ext_BoxWithConstraintsScopeImpl$stableprop // com.huanshankeji.compose.foundation.layout.ext/com_huanshankeji_compose_foundation_layout_ext_BoxWithConstraintsScopeImpl$stableprop|#static{}com_huanshankeji_compose_foundation_layout_ext_BoxWithConstraintsScopeImpl$stableprop[0] +final val com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_Arrangement$stableprop // com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_Arrangement$stableprop|#static{}com_huanshankeji_compose_foundation_layout_Arrangement$stableprop[0] +final val com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_Arrangement_HorizontalOrVertical_Impl$stableprop // com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_Arrangement_HorizontalOrVertical_Impl$stableprop|#static{}com_huanshankeji_compose_foundation_layout_Arrangement_HorizontalOrVertical_Impl$stableprop[0] +final val com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_Arrangement_Horizontal_Impl$stableprop // com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_Arrangement_Horizontal_Impl$stableprop|#static{}com_huanshankeji_compose_foundation_layout_Arrangement_Horizontal_Impl$stableprop[0] +final val com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_Arrangement_Vertical_Impl$stableprop // com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_Arrangement_Vertical_Impl$stableprop|#static{}com_huanshankeji_compose_foundation_layout_Arrangement_Vertical_Impl$stableprop[0] +final val com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_PaddingValues$stableprop // com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_PaddingValues$stableprop|#static{}com_huanshankeji_compose_foundation_layout_PaddingValues$stableprop[0] +final val com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_PaddingValuesImpl$stableprop // com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_PaddingValuesImpl$stableprop|#static{}com_huanshankeji_compose_foundation_layout_PaddingValuesImpl$stableprop[0] +final val com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_PaddingValues_Absolute$stableprop // com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_PaddingValues_Absolute$stableprop|#static{}com_huanshankeji_compose_foundation_layout_PaddingValues_Absolute$stableprop[0] +final val com.huanshankeji.compose.foundation.lazy/com_huanshankeji_compose_foundation_lazy_LazyItemScope$stableprop // com.huanshankeji.compose.foundation.lazy/com_huanshankeji_compose_foundation_lazy_LazyItemScope$stableprop|#static{}com_huanshankeji_compose_foundation_lazy_LazyItemScope$stableprop[0] +final val com.huanshankeji.compose.foundation.lazy/com_huanshankeji_compose_foundation_lazy_LazyListScope$stableprop // com.huanshankeji.compose.foundation.lazy/com_huanshankeji_compose_foundation_lazy_LazyListScope$stableprop|#static{}com_huanshankeji_compose_foundation_lazy_LazyListScope$stableprop[0] +final val com.huanshankeji.compose.foundation.text.input/com_huanshankeji_compose_foundation_text_input_PlatformImeOptions$stableprop // com.huanshankeji.compose.foundation.text.input/com_huanshankeji_compose_foundation_text_input_PlatformImeOptions$stableprop|#static{}com_huanshankeji_compose_foundation_text_input_PlatformImeOptions$stableprop[0] +final val com.huanshankeji.compose.foundation.text/com_huanshankeji_compose_foundation_text_KeyboardActionScope_DoNothingInstance$stableprop // com.huanshankeji.compose.foundation.text/com_huanshankeji_compose_foundation_text_KeyboardActionScope_DoNothingInstance$stableprop|#static{}com_huanshankeji_compose_foundation_text_KeyboardActionScope_DoNothingInstance$stableprop[0] +final val com.huanshankeji.compose.foundation.text/com_huanshankeji_compose_foundation_text_KeyboardOptions$stableprop // com.huanshankeji.compose.foundation.text/com_huanshankeji_compose_foundation_text_KeyboardOptions$stableprop|#static{}com_huanshankeji_compose_foundation_text_KeyboardOptions$stableprop[0] +final val com.huanshankeji.compose.foundation/com_huanshankeji_compose_foundation_BorderStroke$stableprop // com.huanshankeji.compose.foundation/com_huanshankeji_compose_foundation_BorderStroke$stableprop|#static{}com_huanshankeji_compose_foundation_BorderStroke$stableprop[0] +final val com.huanshankeji.compose.runtime/com_huanshankeji_compose_runtime_DeferredComposableRunner$stableprop // com.huanshankeji.compose.runtime/com_huanshankeji_compose_runtime_DeferredComposableRunner$stableprop|#static{}com_huanshankeji_compose_runtime_DeferredComposableRunner$stableprop[0] +final val com.huanshankeji.compose.ui.graphics/com_huanshankeji_compose_ui_graphics_Brush$stableprop // com.huanshankeji.compose.ui.graphics/com_huanshankeji_compose_ui_graphics_Brush$stableprop|#static{}com_huanshankeji_compose_ui_graphics_Brush$stableprop[0] +final val com.huanshankeji.compose.ui.graphics/com_huanshankeji_compose_ui_graphics_Color$stableprop // com.huanshankeji.compose.ui.graphics/com_huanshankeji_compose_ui_graphics_Color$stableprop|#static{}com_huanshankeji_compose_ui_graphics_Color$stableprop[0] +final val com.huanshankeji.compose.ui.unit.ext/com_huanshankeji_compose_ui_unit_ext_DpOrPercentage$stableprop // com.huanshankeji.compose.ui.unit.ext/com_huanshankeji_compose_ui_unit_ext_DpOrPercentage$stableprop|#static{}com_huanshankeji_compose_ui_unit_ext_DpOrPercentage$stableprop[0] +final val com.huanshankeji.compose.ui.unit.ext/com_huanshankeji_compose_ui_unit_ext_DpOrPercentage_Dp$stableprop // com.huanshankeji.compose.ui.unit.ext/com_huanshankeji_compose_ui_unit_ext_DpOrPercentage_Dp$stableprop|#static{}com_huanshankeji_compose_ui_unit_ext_DpOrPercentage_Dp$stableprop[0] +final val com.huanshankeji.compose.ui.unit.ext/com_huanshankeji_compose_ui_unit_ext_DpOrPercentage_Percentage$stableprop // com.huanshankeji.compose.ui.unit.ext/com_huanshankeji_compose_ui_unit_ext_DpOrPercentage_Percentage$stableprop|#static{}com_huanshankeji_compose_ui_unit_ext_DpOrPercentage_Percentage$stableprop[0] + +final fun (com.huanshankeji.compose.ui.graphics/Color).com.huanshankeji.compose.ui.graphics/luminance(): kotlin/Float // com.huanshankeji.compose.ui.graphics/luminance|luminance@com.huanshankeji.compose.ui.graphics.Color(){}[0] +final fun (com.huanshankeji.compose.ui.graphics/Color).com.huanshankeji.compose.ui.graphics/toArgb(): kotlin/Int // com.huanshankeji.compose.ui.graphics/toArgb|toArgb@com.huanshankeji.compose.ui.graphics.Color(){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.ext/matchPositionRelativeParentJsDom(): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.ext/matchPositionRelativeParentJsDom|matchPositionRelativeParentJsDom@com.huanshankeji.compose.ui.Modifier(){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.ext/outerBorder(androidx.compose.ui.unit/Dp, com.huanshankeji.compose.ui.graphics/Color): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.ext/outerBorder|outerBorder@com.huanshankeji.compose.ui.Modifier(androidx.compose.ui.unit.Dp;com.huanshankeji.compose.ui.graphics.Color){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.ext/outerBorder(com.huanshankeji.compose.foundation/BorderStroke): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.ext/outerBorder|outerBorder@com.huanshankeji.compose.ui.Modifier(com.huanshankeji.compose.foundation.BorderStroke){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.ext/roundedCornerBackgroundAndOuterBorder(androidx.compose.ui.unit/Dp, com.huanshankeji.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, com.huanshankeji.compose.ui.graphics/Color): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.ext/roundedCornerBackgroundAndOuterBorder|roundedCornerBackgroundAndOuterBorder@com.huanshankeji.compose.ui.Modifier(androidx.compose.ui.unit.Dp;com.huanshankeji.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;com.huanshankeji.compose.ui.graphics.Color){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.ext/roundedCornerBackgroundAndOuterBorder(androidx.compose.ui.unit/Dp, com.huanshankeji.compose.ui.graphics/Color, kotlin/Int, com.huanshankeji.compose.ui.graphics/Color): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.ext/roundedCornerBackgroundAndOuterBorder|roundedCornerBackgroundAndOuterBorder@com.huanshankeji.compose.ui.Modifier(androidx.compose.ui.unit.Dp;com.huanshankeji.compose.ui.graphics.Color;kotlin.Int;com.huanshankeji.compose.ui.graphics.Color){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.ext/roundedCornerBackgroundAndOuterBorder(com.huanshankeji.compose.foundation/BorderStroke, androidx.compose.ui.unit/Dp, com.huanshankeji.compose.ui.graphics/Color): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.ext/roundedCornerBackgroundAndOuterBorder|roundedCornerBackgroundAndOuterBorder@com.huanshankeji.compose.ui.Modifier(com.huanshankeji.compose.foundation.BorderStroke;androidx.compose.ui.unit.Dp;com.huanshankeji.compose.ui.graphics.Color){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.ext/roundedCornerBackgroundAndOuterBorder(com.huanshankeji.compose.foundation/BorderStroke, kotlin/Int, com.huanshankeji.compose.ui.graphics/Color): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.ext/roundedCornerBackgroundAndOuterBorder|roundedCornerBackgroundAndOuterBorder@com.huanshankeji.compose.ui.Modifier(com.huanshankeji.compose.foundation.BorderStroke;kotlin.Int;com.huanshankeji.compose.ui.graphics.Color){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.ext/roundedCornerOuterBorder(androidx.compose.ui.unit/Dp, com.huanshankeji.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.ext/roundedCornerOuterBorder|roundedCornerOuterBorder@com.huanshankeji.compose.ui.Modifier(androidx.compose.ui.unit.Dp;com.huanshankeji.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.ext/roundedCornerOuterBorder(androidx.compose.ui.unit/Dp, com.huanshankeji.compose.ui.graphics/Color, kotlin/Int): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.ext/roundedCornerOuterBorder|roundedCornerOuterBorder@com.huanshankeji.compose.ui.Modifier(androidx.compose.ui.unit.Dp;com.huanshankeji.compose.ui.graphics.Color;kotlin.Int){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.ext/roundedCornerOuterBorder(com.huanshankeji.compose.foundation/BorderStroke, androidx.compose.ui.unit/Dp): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.ext/roundedCornerOuterBorder|roundedCornerOuterBorder@com.huanshankeji.compose.ui.Modifier(com.huanshankeji.compose.foundation.BorderStroke;androidx.compose.ui.unit.Dp){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.ext/roundedCornerOuterBorder(com.huanshankeji.compose.foundation/BorderStroke, kotlin/Int): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.ext/roundedCornerOuterBorder|roundedCornerOuterBorder@com.huanshankeji.compose.ui.Modifier(com.huanshankeji.compose.foundation.BorderStroke;kotlin.Int){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout.ext/absoluteInnerPadding(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout.ext/absoluteInnerPadding|absoluteInnerPadding@com.huanshankeji.compose.ui.Modifier(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout.ext/absoluteOuterPadding(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout.ext/absoluteOuterPadding|absoluteOuterPadding@com.huanshankeji.compose.ui.Modifier(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout.ext/fillMaxHeightStretch(): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout.ext/fillMaxHeightStretch|fillMaxHeightStretch@com.huanshankeji.compose.ui.Modifier(){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout.ext/fillMaxSizeStretch(): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout.ext/fillMaxSizeStretch|fillMaxSizeStretch@com.huanshankeji.compose.ui.Modifier(){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout.ext/fillMaxWidthStretch(): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout.ext/fillMaxWidthStretch|fillMaxWidthStretch@com.huanshankeji.compose.ui.Modifier(){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout.ext/innerPadding(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout.ext/innerPadding|innerPadding@com.huanshankeji.compose.ui.Modifier(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout.ext/innerPadding(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout.ext/innerPadding|innerPadding@com.huanshankeji.compose.ui.Modifier(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout.ext/innerPadding(androidx.compose.ui.unit/Dp): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout.ext/innerPadding|innerPadding@com.huanshankeji.compose.ui.Modifier(androidx.compose.ui.unit.Dp){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout.ext/innerPadding(com.huanshankeji.compose.foundation.layout/PaddingValues): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout.ext/innerPadding|innerPadding@com.huanshankeji.compose.ui.Modifier(com.huanshankeji.compose.foundation.layout.PaddingValues){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout.ext/outerPadding(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout.ext/outerPadding|outerPadding@com.huanshankeji.compose.ui.Modifier(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout.ext/outerPadding(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout.ext/outerPadding|outerPadding@com.huanshankeji.compose.ui.Modifier(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout.ext/outerPadding(androidx.compose.ui.unit/Dp): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout.ext/outerPadding|outerPadding@com.huanshankeji.compose.ui.Modifier(androidx.compose.ui.unit.Dp){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout.ext/outerPadding(com.huanshankeji.compose.foundation.layout/PaddingValues): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout.ext/outerPadding|outerPadding@com.huanshankeji.compose.ui.Modifier(com.huanshankeji.compose.foundation.layout.PaddingValues){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout/absolutePadding(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout/absolutePadding|absolutePadding@com.huanshankeji.compose.ui.Modifier(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout/fillMaxHeight(kotlin/Float = ...): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout/fillMaxHeight|fillMaxHeight@com.huanshankeji.compose.ui.Modifier(kotlin.Float){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout/fillMaxSize(kotlin/Float = ...): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout/fillMaxSize|fillMaxSize@com.huanshankeji.compose.ui.Modifier(kotlin.Float){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout/fillMaxWidth(kotlin/Float = ...): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout/fillMaxWidth|fillMaxWidth@com.huanshankeji.compose.ui.Modifier(kotlin.Float){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout/height(androidx.compose.ui.unit/Dp): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout/height|height@com.huanshankeji.compose.ui.Modifier(androidx.compose.ui.unit.Dp){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout/height(com.huanshankeji.compose.foundation.layout/IntrinsicSize): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout/height|height@com.huanshankeji.compose.ui.Modifier(com.huanshankeji.compose.foundation.layout.IntrinsicSize){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout/heightIn(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout/heightIn|heightIn@com.huanshankeji.compose.ui.Modifier(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout/padding(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout/padding|padding@com.huanshankeji.compose.ui.Modifier(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout/padding(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout/padding|padding@com.huanshankeji.compose.ui.Modifier(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout/padding(androidx.compose.ui.unit/Dp): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout/padding|padding@com.huanshankeji.compose.ui.Modifier(androidx.compose.ui.unit.Dp){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout/padding(com.huanshankeji.compose.foundation.layout/PaddingValues): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout/padding|padding@com.huanshankeji.compose.ui.Modifier(com.huanshankeji.compose.foundation.layout.PaddingValues){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout/size(androidx.compose.ui.unit/Dp): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout/size|size@com.huanshankeji.compose.ui.Modifier(androidx.compose.ui.unit.Dp){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout/size(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout/size|size@com.huanshankeji.compose.ui.Modifier(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout/size(androidx.compose.ui.unit/DpSize): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout/size|size@com.huanshankeji.compose.ui.Modifier(androidx.compose.ui.unit.DpSize){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout/sizeIn(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout/sizeIn|sizeIn@com.huanshankeji.compose.ui.Modifier(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout/width(androidx.compose.ui.unit/Dp): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout/width|width@com.huanshankeji.compose.ui.Modifier(androidx.compose.ui.unit.Dp){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout/width(com.huanshankeji.compose.foundation.layout/IntrinsicSize): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout/width|width@com.huanshankeji.compose.ui.Modifier(com.huanshankeji.compose.foundation.layout.IntrinsicSize){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout/widthIn(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout/widthIn|widthIn@com.huanshankeji.compose.ui.Modifier(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout/wrapContentHeight(): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout/wrapContentHeight|wrapContentHeight@com.huanshankeji.compose.ui.Modifier(){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout/wrapContentSize(): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout/wrapContentSize|wrapContentSize@com.huanshankeji.compose.ui.Modifier(){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout/wrapContentWidth(): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout/wrapContentWidth|wrapContentWidth@com.huanshankeji.compose.ui.Modifier(){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation/background(com.huanshankeji.compose.ui.graphics/Color): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation/background|background@com.huanshankeji.compose.ui.Modifier(com.huanshankeji.compose.ui.graphics.Color){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation/border(androidx.compose.ui.unit/Dp, com.huanshankeji.compose.ui.graphics/Color): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation/border|border@com.huanshankeji.compose.ui.Modifier(androidx.compose.ui.unit.Dp;com.huanshankeji.compose.ui.graphics.Color){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation/border(com.huanshankeji.compose.foundation/BorderStroke): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation/border|border@com.huanshankeji.compose.ui.Modifier(com.huanshankeji.compose.foundation.BorderStroke){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation/clickable(kotlin/Function0): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation/clickable|clickable@com.huanshankeji.compose.ui.Modifier(kotlin.Function0){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation/onClick(kotlin/Function0): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation/onClick|onClick@com.huanshankeji.compose.ui.Modifier(kotlin.Function0){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.layout.ext/hidden(): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.layout.ext/hidden|hidden@com.huanshankeji.compose.ui.Modifier(){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.layout.ext/invisible(): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.layout.ext/invisible|invisible@com.huanshankeji.compose.ui.Modifier(){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.layout.ext/reserveSpace(): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.layout.ext/reserveSpace|reserveSpace@com.huanshankeji.compose.ui.Modifier(){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.ui.draw/alpha(kotlin/Float): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.ui.draw/alpha|alpha@com.huanshankeji.compose.ui.Modifier(kotlin.Float){}[0] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.ui.draw/rotate(kotlin/Float): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.ui.draw/rotate|rotate@com.huanshankeji.compose.ui.Modifier(kotlin.Float){}[0] +final fun com.huanshankeji.compose.ext/com_huanshankeji_compose_ext_LoadingState$stableprop_getter(): kotlin/Int // com.huanshankeji.compose.ext/com_huanshankeji_compose_ext_LoadingState$stableprop_getter|com_huanshankeji_compose_ext_LoadingState$stableprop_getter(){}[0] +final fun com.huanshankeji.compose.ext/com_huanshankeji_compose_ext_LoadingState_Error$stableprop_getter(): kotlin/Int // com.huanshankeji.compose.ext/com_huanshankeji_compose_ext_LoadingState_Error$stableprop_getter|com_huanshankeji_compose_ext_LoadingState_Error$stableprop_getter(){}[0] +final fun com.huanshankeji.compose.ext/com_huanshankeji_compose_ext_LoadingState_Loaded$stableprop_getter(): kotlin/Int // com.huanshankeji.compose.ext/com_huanshankeji_compose_ext_LoadingState_Loaded$stableprop_getter|com_huanshankeji_compose_ext_LoadingState_Loaded$stableprop_getter(){}[0] +final fun com.huanshankeji.compose.ext/com_huanshankeji_compose_ext_LoadingState_Loading$stableprop_getter(): kotlin/Int // com.huanshankeji.compose.ext/com_huanshankeji_compose_ext_LoadingState_Loading$stableprop_getter|com_huanshankeji_compose_ext_LoadingState_Loading$stableprop_getter(){}[0] +final fun com.huanshankeji.compose.foundation.layout.ext/BoxWithConstraints(com.huanshankeji.compose.ui/Modifier?, com.huanshankeji.compose.ui/Alignment?, kotlin/Function3, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // com.huanshankeji.compose.foundation.layout.ext/BoxWithConstraints|BoxWithConstraints(com.huanshankeji.compose.ui.Modifier?;com.huanshankeji.compose.ui.Alignment?;kotlin.Function3;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun com.huanshankeji.compose.foundation.layout.ext/com_huanshankeji_compose_foundation_layout_ext_BoxWithConstraintsScopeImpl$stableprop_getter(): kotlin/Int // com.huanshankeji.compose.foundation.layout.ext/com_huanshankeji_compose_foundation_layout_ext_BoxWithConstraintsScopeImpl$stableprop_getter|com_huanshankeji_compose_foundation_layout_ext_BoxWithConstraintsScopeImpl$stableprop_getter(){}[0] +final fun com.huanshankeji.compose.foundation.layout/Box(com.huanshankeji.compose.ui/Modifier, androidx.compose.runtime/Composer?, kotlin/Int) // com.huanshankeji.compose.foundation.layout/Box|Box(com.huanshankeji.compose.ui.Modifier;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun com.huanshankeji.compose.foundation.layout/Box(com.huanshankeji.compose.ui/Modifier?, com.huanshankeji.compose.ui/Alignment?, kotlin/Function3, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // com.huanshankeji.compose.foundation.layout/Box|Box(com.huanshankeji.compose.ui.Modifier?;com.huanshankeji.compose.ui.Alignment?;kotlin.Function3;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun com.huanshankeji.compose.foundation.layout/Column(com.huanshankeji.compose.ui/Modifier?, com.huanshankeji.compose.foundation.layout/Arrangement.Vertical?, com.huanshankeji.compose.ui/Alignment.Horizontal?, kotlin/Function3, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // com.huanshankeji.compose.foundation.layout/Column|Column(com.huanshankeji.compose.ui.Modifier?;com.huanshankeji.compose.foundation.layout.Arrangement.Vertical?;com.huanshankeji.compose.ui.Alignment.Horizontal?;kotlin.Function3;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun com.huanshankeji.compose.foundation.layout/PaddingValues(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): com.huanshankeji.compose.foundation.layout/PaddingValues // com.huanshankeji.compose.foundation.layout/PaddingValues|PaddingValues(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] +final fun com.huanshankeji.compose.foundation.layout/PaddingValues(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): com.huanshankeji.compose.foundation.layout/PaddingValues // com.huanshankeji.compose.foundation.layout/PaddingValues|PaddingValues(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] +final fun com.huanshankeji.compose.foundation.layout/PaddingValues(androidx.compose.ui.unit/Dp): com.huanshankeji.compose.foundation.layout/PaddingValues // com.huanshankeji.compose.foundation.layout/PaddingValues|PaddingValues(androidx.compose.ui.unit.Dp){}[0] +final fun com.huanshankeji.compose.foundation.layout/Row(com.huanshankeji.compose.ui/Modifier?, com.huanshankeji.compose.foundation.layout/Arrangement.Horizontal?, com.huanshankeji.compose.ui/Alignment.Vertical?, kotlin/Function3, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // com.huanshankeji.compose.foundation.layout/Row|Row(com.huanshankeji.compose.ui.Modifier?;com.huanshankeji.compose.foundation.layout.Arrangement.Horizontal?;com.huanshankeji.compose.ui.Alignment.Vertical?;kotlin.Function3;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun com.huanshankeji.compose.foundation.layout/Spacer(com.huanshankeji.compose.ui/Modifier, androidx.compose.runtime/Composer?, kotlin/Int) // com.huanshankeji.compose.foundation.layout/Spacer|Spacer(com.huanshankeji.compose.ui.Modifier;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_Arrangement$stableprop_getter(): kotlin/Int // com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_Arrangement$stableprop_getter|com_huanshankeji_compose_foundation_layout_Arrangement$stableprop_getter(){}[0] +final fun com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_Arrangement_HorizontalOrVertical_Impl$stableprop_getter(): kotlin/Int // com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_Arrangement_HorizontalOrVertical_Impl$stableprop_getter|com_huanshankeji_compose_foundation_layout_Arrangement_HorizontalOrVertical_Impl$stableprop_getter(){}[0] +final fun com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_Arrangement_Horizontal_Impl$stableprop_getter(): kotlin/Int // com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_Arrangement_Horizontal_Impl$stableprop_getter|com_huanshankeji_compose_foundation_layout_Arrangement_Horizontal_Impl$stableprop_getter(){}[0] +final fun com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_Arrangement_Vertical_Impl$stableprop_getter(): kotlin/Int // com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_Arrangement_Vertical_Impl$stableprop_getter|com_huanshankeji_compose_foundation_layout_Arrangement_Vertical_Impl$stableprop_getter(){}[0] +final fun com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_PaddingValues$stableprop_getter(): kotlin/Int // com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_PaddingValues$stableprop_getter|com_huanshankeji_compose_foundation_layout_PaddingValues$stableprop_getter(){}[0] +final fun com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_PaddingValuesImpl$stableprop_getter(): kotlin/Int // com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_PaddingValuesImpl$stableprop_getter|com_huanshankeji_compose_foundation_layout_PaddingValuesImpl$stableprop_getter(){}[0] +final fun com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_PaddingValues_Absolute$stableprop_getter(): kotlin/Int // com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_PaddingValues_Absolute$stableprop_getter|com_huanshankeji_compose_foundation_layout_PaddingValues_Absolute$stableprop_getter(){}[0] +final fun com.huanshankeji.compose.foundation.lazy/LazyColumn(com.huanshankeji.compose.ui/Modifier?, com.huanshankeji.compose.foundation.layout/PaddingValues?, kotlin/Boolean, com.huanshankeji.compose.foundation.layout/Arrangement.Vertical?, com.huanshankeji.compose.ui/Alignment.Horizontal?, kotlin/Function1, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // com.huanshankeji.compose.foundation.lazy/LazyColumn|LazyColumn(com.huanshankeji.compose.ui.Modifier?;com.huanshankeji.compose.foundation.layout.PaddingValues?;kotlin.Boolean;com.huanshankeji.compose.foundation.layout.Arrangement.Vertical?;com.huanshankeji.compose.ui.Alignment.Horizontal?;kotlin.Function1;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun com.huanshankeji.compose.foundation.lazy/LazyRow(com.huanshankeji.compose.ui/Modifier?, com.huanshankeji.compose.foundation.layout/PaddingValues?, kotlin/Boolean, com.huanshankeji.compose.foundation.layout/Arrangement.Horizontal?, com.huanshankeji.compose.ui/Alignment.Vertical?, kotlin/Function1, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // com.huanshankeji.compose.foundation.lazy/LazyRow|LazyRow(com.huanshankeji.compose.ui.Modifier?;com.huanshankeji.compose.foundation.layout.PaddingValues?;kotlin.Boolean;com.huanshankeji.compose.foundation.layout.Arrangement.Horizontal?;com.huanshankeji.compose.ui.Alignment.Vertical?;kotlin.Function1;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun com.huanshankeji.compose.foundation.lazy/com_huanshankeji_compose_foundation_lazy_LazyItemScope$stableprop_getter(): kotlin/Int // com.huanshankeji.compose.foundation.lazy/com_huanshankeji_compose_foundation_lazy_LazyItemScope$stableprop_getter|com_huanshankeji_compose_foundation_lazy_LazyItemScope$stableprop_getter(){}[0] +final fun com.huanshankeji.compose.foundation.lazy/com_huanshankeji_compose_foundation_lazy_LazyListScope$stableprop_getter(): kotlin/Int // com.huanshankeji.compose.foundation.lazy/com_huanshankeji_compose_foundation_lazy_LazyListScope$stableprop_getter|com_huanshankeji_compose_foundation_lazy_LazyListScope$stableprop_getter(){}[0] +final fun com.huanshankeji.compose.foundation.text.ext/InlineBasicText(kotlin/String, androidx.compose.runtime/Composer?, kotlin/Int) // com.huanshankeji.compose.foundation.text.ext/InlineBasicText|InlineBasicText(kotlin.String;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun com.huanshankeji.compose.foundation.text.ext/SpanBasicText(kotlin/String, com.huanshankeji.compose.ui/Modifier?, com.huanshankeji.compose.ui.graphics/ColorProducer?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // com.huanshankeji.compose.foundation.text.ext/SpanBasicText|SpanBasicText(kotlin.String;com.huanshankeji.compose.ui.Modifier?;com.huanshankeji.compose.ui.graphics.ColorProducer?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun com.huanshankeji.compose.foundation.text.ext/TaglessBasicText(kotlin/String, androidx.compose.runtime/Composer?, kotlin/Int) // com.huanshankeji.compose.foundation.text.ext/TaglessBasicText|TaglessBasicText(kotlin.String;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun com.huanshankeji.compose.foundation.text.input/com_huanshankeji_compose_foundation_text_input_PlatformImeOptions$stableprop_getter(): kotlin/Int // com.huanshankeji.compose.foundation.text.input/com_huanshankeji_compose_foundation_text_input_PlatformImeOptions$stableprop_getter|com_huanshankeji_compose_foundation_text_input_PlatformImeOptions$stableprop_getter(){}[0] +final fun com.huanshankeji.compose.foundation.text/BasicText(kotlin/String, androidx.compose.runtime/Composer?, kotlin/Int) // com.huanshankeji.compose.foundation.text/BasicText|BasicText(kotlin.String;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun com.huanshankeji.compose.foundation.text/BasicText(kotlin/String, com.huanshankeji.compose.ui/Modifier?, com.huanshankeji.compose.ui.graphics/ColorProducer?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // com.huanshankeji.compose.foundation.text/BasicText|BasicText(kotlin.String;com.huanshankeji.compose.ui.Modifier?;com.huanshankeji.compose.ui.graphics.ColorProducer?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun com.huanshankeji.compose.foundation.text/com_huanshankeji_compose_foundation_text_KeyboardActionScope_DoNothingInstance$stableprop_getter(): kotlin/Int // com.huanshankeji.compose.foundation.text/com_huanshankeji_compose_foundation_text_KeyboardActionScope_DoNothingInstance$stableprop_getter|com_huanshankeji_compose_foundation_text_KeyboardActionScope_DoNothingInstance$stableprop_getter(){}[0] +final fun com.huanshankeji.compose.foundation.text/com_huanshankeji_compose_foundation_text_KeyboardOptions$stableprop_getter(): kotlin/Int // com.huanshankeji.compose.foundation.text/com_huanshankeji_compose_foundation_text_KeyboardOptions$stableprop_getter|com_huanshankeji_compose_foundation_text_KeyboardOptions$stableprop_getter(){}[0] +final fun com.huanshankeji.compose.foundation/HorizontalScrollBox(com.huanshankeji.compose.ui/Modifier?, com.huanshankeji.compose.ui/Modifier?, com.huanshankeji.compose.ui/Alignment?, kotlin/Function3, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // com.huanshankeji.compose.foundation/HorizontalScrollBox|HorizontalScrollBox(com.huanshankeji.compose.ui.Modifier?;com.huanshankeji.compose.ui.Modifier?;com.huanshankeji.compose.ui.Alignment?;kotlin.Function3;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun com.huanshankeji.compose.foundation/VerticalScrollBox(com.huanshankeji.compose.ui/Modifier?, com.huanshankeji.compose.ui/Modifier?, com.huanshankeji.compose.ui/Alignment?, kotlin/Function3, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // com.huanshankeji.compose.foundation/VerticalScrollBox|VerticalScrollBox(com.huanshankeji.compose.ui.Modifier?;com.huanshankeji.compose.ui.Modifier?;com.huanshankeji.compose.ui.Alignment?;kotlin.Function3;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun com.huanshankeji.compose.foundation/com_huanshankeji_compose_foundation_BorderStroke$stableprop_getter(): kotlin/Int // com.huanshankeji.compose.foundation/com_huanshankeji_compose_foundation_BorderStroke$stableprop_getter|com_huanshankeji_compose_foundation_BorderStroke$stableprop_getter(){}[0] +final fun com.huanshankeji.compose.runtime/com_huanshankeji_compose_runtime_DeferredComposableRunner$stableprop_getter(): kotlin/Int // com.huanshankeji.compose.runtime/com_huanshankeji_compose_runtime_DeferredComposableRunner$stableprop_getter|com_huanshankeji_compose_runtime_DeferredComposableRunner$stableprop_getter(){}[0] +final fun com.huanshankeji.compose.ui.graphics/Color(kotlin/Float, kotlin/Float, kotlin/Float, kotlin/Float = ...): com.huanshankeji.compose.ui.graphics/Color // com.huanshankeji.compose.ui.graphics/Color|Color(kotlin.Float;kotlin.Float;kotlin.Float;kotlin.Float){}[0] +final fun com.huanshankeji.compose.ui.graphics/Color(kotlin/Int): com.huanshankeji.compose.ui.graphics/Color // com.huanshankeji.compose.ui.graphics/Color|Color(kotlin.Int){}[0] +final fun com.huanshankeji.compose.ui.graphics/Color(kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int = ...): com.huanshankeji.compose.ui.graphics/Color // com.huanshankeji.compose.ui.graphics/Color|Color(kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun com.huanshankeji.compose.ui.graphics/Color(kotlin/Long): com.huanshankeji.compose.ui.graphics/Color // com.huanshankeji.compose.ui.graphics/Color|Color(kotlin.Long){}[0] +final fun com.huanshankeji.compose.ui.graphics/com_huanshankeji_compose_ui_graphics_Brush$stableprop_getter(): kotlin/Int // com.huanshankeji.compose.ui.graphics/com_huanshankeji_compose_ui_graphics_Brush$stableprop_getter|com_huanshankeji_compose_ui_graphics_Brush$stableprop_getter(){}[0] +final fun com.huanshankeji.compose.ui.graphics/com_huanshankeji_compose_ui_graphics_Color$stableprop_getter(): kotlin/Int // com.huanshankeji.compose.ui.graphics/com_huanshankeji_compose_ui_graphics_Color$stableprop_getter|com_huanshankeji_compose_ui_graphics_Color$stableprop_getter(){}[0] +final fun com.huanshankeji.compose.ui.unit.ext/com_huanshankeji_compose_ui_unit_ext_DpOrPercentage$stableprop_getter(): kotlin/Int // com.huanshankeji.compose.ui.unit.ext/com_huanshankeji_compose_ui_unit_ext_DpOrPercentage$stableprop_getter|com_huanshankeji_compose_ui_unit_ext_DpOrPercentage$stableprop_getter(){}[0] +final fun com.huanshankeji.compose.ui.unit.ext/com_huanshankeji_compose_ui_unit_ext_DpOrPercentage_Dp$stableprop_getter(): kotlin/Int // com.huanshankeji.compose.ui.unit.ext/com_huanshankeji_compose_ui_unit_ext_DpOrPercentage_Dp$stableprop_getter|com_huanshankeji_compose_ui_unit_ext_DpOrPercentage_Dp$stableprop_getter(){}[0] +final fun com.huanshankeji.compose.ui.unit.ext/com_huanshankeji_compose_ui_unit_ext_DpOrPercentage_Percentage$stableprop_getter(): kotlin/Int // com.huanshankeji.compose.ui.unit.ext/com_huanshankeji_compose_ui_unit_ext_DpOrPercentage_Percentage$stableprop_getter|com_huanshankeji_compose_ui_unit_ext_DpOrPercentage_Percentage$stableprop_getter(){}[0] +final inline fun <#A: kotlin/Any?> (com.huanshankeji.compose.foundation.lazy/LazyListScope).com.huanshankeji.compose.foundation.lazy/items(kotlin.collections/List<#A>, noinline kotlin/Function1<#A, kotlin/Any>? = ..., noinline kotlin/Function1<#A, kotlin/Any?> = ..., crossinline kotlin/Function4) // com.huanshankeji.compose.foundation.lazy/items|items@com.huanshankeji.compose.foundation.lazy.LazyListScope(kotlin.collections.List<0:0>;kotlin.Function1<0:0,kotlin.Any>?;kotlin.Function1<0:0,kotlin.Any?>;kotlin.Function4){0§}[0] +final inline fun <#A: kotlin/Any?> (com.huanshankeji.compose.foundation.lazy/LazyListScope).com.huanshankeji.compose.foundation.lazy/items(kotlin/Array<#A>, noinline kotlin/Function1<#A, kotlin/Any>? = ..., noinline kotlin/Function1<#A, kotlin/Any?> = ..., crossinline kotlin/Function4) // com.huanshankeji.compose.foundation.lazy/items|items@com.huanshankeji.compose.foundation.lazy.LazyListScope(kotlin.Array<0:0>;kotlin.Function1<0:0,kotlin.Any>?;kotlin.Function1<0:0,kotlin.Any?>;kotlin.Function4){0§}[0] +final inline fun <#A: kotlin/Any?> (com.huanshankeji.compose.foundation.lazy/LazyListScope).com.huanshankeji.compose.foundation.lazy/itemsIndexed(kotlin.collections/List<#A>, noinline kotlin/Function2? = ..., crossinline kotlin/Function2 = ..., crossinline kotlin/Function5) // com.huanshankeji.compose.foundation.lazy/itemsIndexed|itemsIndexed@com.huanshankeji.compose.foundation.lazy.LazyListScope(kotlin.collections.List<0:0>;kotlin.Function2?;kotlin.Function2;kotlin.Function5){0§}[0] +final inline fun <#A: kotlin/Any?> (com.huanshankeji.compose.foundation.lazy/LazyListScope).com.huanshankeji.compose.foundation.lazy/itemsIndexed(kotlin/Array<#A>, noinline kotlin/Function2? = ..., crossinline kotlin/Function2 = ..., crossinline kotlin/Function5) // com.huanshankeji.compose.foundation.lazy/itemsIndexed|itemsIndexed@com.huanshankeji.compose.foundation.lazy.LazyListScope(kotlin.Array<0:0>;kotlin.Function2?;kotlin.Function2;kotlin.Function5){0§}[0] + +// Targets: [ios, wasmJs] +final class com.huanshankeji.compose.foundation.lazy/LazyItemScope { // com.huanshankeji.compose.foundation.lazy/LazyItemScope|null[0] + constructor (androidx.compose.foundation.lazy/LazyItemScope) // com.huanshankeji.compose.foundation.lazy/LazyItemScope.|(androidx.compose.foundation.lazy.LazyItemScope){}[0] + + final val platformValue // com.huanshankeji.compose.foundation.lazy/LazyItemScope.platformValue|{}platformValue[0] + final fun (): androidx.compose.foundation.lazy/LazyItemScope // com.huanshankeji.compose.foundation.lazy/LazyItemScope.platformValue.|(){}[0] + + final fun (com.huanshankeji.compose.ui/Modifier).fillParentMaxHeight(kotlin/Float = ...): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.lazy/LazyItemScope.fillParentMaxHeight|fillParentMaxHeight@com.huanshankeji.compose.ui.Modifier(kotlin.Float){}[0] + final fun (com.huanshankeji.compose.ui/Modifier).fillParentMaxSize(kotlin/Float = ...): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.lazy/LazyItemScope.fillParentMaxSize|fillParentMaxSize@com.huanshankeji.compose.ui.Modifier(kotlin.Float){}[0] + final fun (com.huanshankeji.compose.ui/Modifier).fillParentMaxWidth(kotlin/Float = ...): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.lazy/LazyItemScope.fillParentMaxWidth|fillParentMaxWidth@com.huanshankeji.compose.ui.Modifier(kotlin.Float){}[0] +} + +// Targets: [ios, wasmJs] +final fun (androidx.compose.foundation.layout/PaddingValues).com.huanshankeji.compose.foundation.layout/toCommonValue(): com.huanshankeji.compose.foundation.layout/PaddingValues // com.huanshankeji.compose.foundation.layout/toCommonValue|toCommonValue@androidx.compose.foundation.layout.PaddingValues(){}[0] + +// Targets: [ios, wasmJs] +final fun (androidx.compose.foundation.text/KeyboardActionScope).com.huanshankeji.compose.foundation.text/toCommonValue(): com.huanshankeji.compose.foundation.text/KeyboardActionScope // com.huanshankeji.compose.foundation.text/toCommonValue|toCommonValue@androidx.compose.foundation.text.KeyboardActionScope(){}[0] + +// Targets: [ios, wasmJs] +final fun (com.huanshankeji.compose.foundation.layout/IntrinsicSize).com.huanshankeji.compose.foundation.layout/toPlatformValue(): androidx.compose.foundation.layout/IntrinsicSize // com.huanshankeji.compose.foundation.layout/toPlatformValue|toPlatformValue@com.huanshankeji.compose.foundation.layout.IntrinsicSize(){}[0] + +// Targets: [ios, wasmJs] +final fun (com.huanshankeji.compose.foundation.text.input/ImeAction).com.huanshankeji.compose.foundation.text.input/toPlatformValue(): androidx.compose.ui.text.input/ImeAction // com.huanshankeji.compose.foundation.text.input/toPlatformValue|toPlatformValue@com.huanshankeji.compose.foundation.text.input.ImeAction(){}[0] + +// Targets: [ios, wasmJs] +final fun (com.huanshankeji.compose.foundation.text.input/ImeAction?).com.huanshankeji.compose.foundation.text.input/toPlatformValue(): androidx.compose.ui.text.input/ImeAction // com.huanshankeji.compose.foundation.text.input/toPlatformValue|toPlatformValue@com.huanshankeji.compose.foundation.text.input.ImeAction?(){}[0] + +// Targets: [ios, wasmJs] +final fun (com.huanshankeji.compose.foundation.text.input/KeyboardCapitalization).com.huanshankeji.compose.foundation.text.input/toPlatformValue(): androidx.compose.ui.text.input/KeyboardCapitalization // com.huanshankeji.compose.foundation.text.input/toPlatformValue|toPlatformValue@com.huanshankeji.compose.foundation.text.input.KeyboardCapitalization(){}[0] + +// Targets: [ios, wasmJs] +final fun (com.huanshankeji.compose.foundation.text.input/KeyboardCapitalization?).com.huanshankeji.compose.foundation.text.input/toPlatformValue(): androidx.compose.ui.text.input/KeyboardCapitalization // com.huanshankeji.compose.foundation.text.input/toPlatformValue|toPlatformValue@com.huanshankeji.compose.foundation.text.input.KeyboardCapitalization?(){}[0] + +// Targets: [ios, wasmJs] +final fun (com.huanshankeji.compose.foundation.text.input/KeyboardType).com.huanshankeji.compose.foundation.text.input/toPlatformValue(): androidx.compose.ui.text.input/KeyboardType // com.huanshankeji.compose.foundation.text.input/toPlatformValue|toPlatformValue@com.huanshankeji.compose.foundation.text.input.KeyboardType(){}[0] + +// Targets: [ios, wasmJs] +final fun (com.huanshankeji.compose.foundation.text.input/KeyboardType?).com.huanshankeji.compose.foundation.text.input/toPlatformValue(): androidx.compose.ui.text.input/KeyboardType // com.huanshankeji.compose.foundation.text.input/toPlatformValue|toPlatformValue@com.huanshankeji.compose.foundation.text.input.KeyboardType?(){}[0] + +// Targets: [ios, wasmJs] +final fun (com.huanshankeji.compose.foundation.text/KeyboardActions).com.huanshankeji.compose.foundation.text/toPlatformValue(): androidx.compose.foundation.text/KeyboardActions // com.huanshankeji.compose.foundation.text/toPlatformValue|toPlatformValue@com.huanshankeji.compose.foundation.text.KeyboardActions(){}[0] + +// Targets: [ios, wasmJs] +final fun (com.huanshankeji.compose.foundation.text/KeyboardOptions).com.huanshankeji.compose.foundation.text/toPlatformValue(): androidx.compose.foundation.text/KeyboardOptions // com.huanshankeji.compose.foundation.text/toPlatformValue|toPlatformValue@com.huanshankeji.compose.foundation.text.KeyboardOptions(){}[0] + +// Targets: [ios, wasmJs] +final fun (com.huanshankeji.compose.foundation/BorderStroke).com.huanshankeji.compose.foundation/toPlatformValue(): androidx.compose.foundation/BorderStroke // com.huanshankeji.compose.foundation/toPlatformValue|toPlatformValue@com.huanshankeji.compose.foundation.BorderStroke(){}[0] + +// Targets: [ios, wasmJs] +final fun (com.huanshankeji.compose.ui.graphics/Color?).com.huanshankeji.compose.ui.graphics/toPlatformValue(): androidx.compose.ui.graphics/Color // com.huanshankeji.compose.ui.graphics/toPlatformValue|toPlatformValue@com.huanshankeji.compose.ui.graphics.Color?(){}[0] + +// Targets: [ios, wasmJs] +final fun (com.huanshankeji.compose.ui.graphics/ColorProducer).com.huanshankeji.compose.ui.graphics/toPlatformValue(): androidx.compose.ui.graphics/ColorProducer // com.huanshankeji.compose.ui.graphics/toPlatformValue|toPlatformValue@com.huanshankeji.compose.ui.graphics.ColorProducer(){}[0] + +// Targets: [ios, wasmJs] +final fun (com.huanshankeji.compose.ui.graphics/ColorProducer?).com.huanshankeji.compose.ui.graphics/toNullablePlatformValue(): androidx.compose.ui.graphics/ColorProducer? // com.huanshankeji.compose.ui.graphics/toNullablePlatformValue|toNullablePlatformValue@com.huanshankeji.compose.ui.graphics.ColorProducer?(){}[0] + +// Targets: [ios, wasmJs] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation/horizontalScroll(androidx.compose.foundation/ScrollState): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation/horizontalScroll|horizontalScroll@com.huanshankeji.compose.ui.Modifier(androidx.compose.foundation.ScrollState){}[0] + +// Targets: [ios, wasmJs] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation/verticalScroll(androidx.compose.foundation/ScrollState): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation/verticalScroll|verticalScroll@com.huanshankeji.compose.ui.Modifier(androidx.compose.foundation.ScrollState){}[0] + +// Targets: [ios, wasmJs] +final fun (kotlin/Function3).com.huanshankeji.compose.foundation.layout/toCommonColumnScopeContent(): kotlin/Function3 // com.huanshankeji.compose.foundation.layout/toCommonColumnScopeContent|toCommonColumnScopeContent@kotlin.Function3(){}[0] + +// Targets: [ios, wasmJs] +final fun (kotlin/Function3).com.huanshankeji.compose.foundation.layout/toPlatformRowScopeContent(): kotlin/Function3 // com.huanshankeji.compose.foundation.layout/toPlatformRowScopeContent|toPlatformRowScopeContent@kotlin.Function3(){}[0] + +// Targets: [ios, wasmJs] +final fun (kotlin/Function3).com.huanshankeji.compose/toContentWithoutModifier(): kotlin/Function2 // com.huanshankeji.compose/toContentWithoutModifier|toContentWithoutModifier@kotlin.Function3(){}[0] + +// Targets: [ios, wasmJs] +final fun (kotlin/Function3?).com.huanshankeji.compose/toNullableContentWithoutModifier(): kotlin/Function2? // com.huanshankeji.compose/toNullableContentWithoutModifier|toNullableContentWithoutModifier@kotlin.Function3?(){}[0] + +// Targets: [ios, wasmJs] +final fun com.huanshankeji.compose.foundation/rememberScrollState(kotlin/Int, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.foundation/ScrollState // com.huanshankeji.compose.foundation/rememberScrollState|rememberScrollState(kotlin.Int;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + +// Targets: [js] +final enum class com.huanshankeji.browser/Browser : kotlin/Enum { // com.huanshankeji.browser/Browser|null[0] + enum entry Mozilla // com.huanshankeji.browser/Browser.Mozilla|null[0] + enum entry Webkit // com.huanshankeji.browser/Browser.Webkit|null[0] + + final val entries // com.huanshankeji.browser/Browser.entries|#static{}entries[0] + final fun (): kotlin.enums/EnumEntries // com.huanshankeji.browser/Browser.entries.|#static(){}[0] + + final fun valueOf(kotlin/String): com.huanshankeji.browser/Browser // com.huanshankeji.browser/Browser.valueOf|valueOf#static(kotlin.String){}[0] + final fun values(): kotlin/Array // com.huanshankeji.browser/Browser.values|values#static(){}[0] +} + +// Targets: [js] +final object com.huanshankeji.compose.foundation.lazy/LazyItemScope { // com.huanshankeji.compose.foundation.lazy/LazyItemScope|null[0] + final fun (com.huanshankeji.compose.ui/Modifier).fillParentMaxHeight(kotlin/Float = ...): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.lazy/LazyItemScope.fillParentMaxHeight|fillParentMaxHeight@com.huanshankeji.compose.ui.Modifier(kotlin.Float){}[0] + final fun (com.huanshankeji.compose.ui/Modifier).fillParentMaxSize(kotlin/Float = ...): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.lazy/LazyItemScope.fillParentMaxSize|fillParentMaxSize@com.huanshankeji.compose.ui.Modifier(kotlin.Float){}[0] + final fun (com.huanshankeji.compose.ui/Modifier).fillParentMaxWidth(kotlin/Float = ...): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation.lazy/LazyItemScope.fillParentMaxWidth|fillParentMaxWidth@com.huanshankeji.compose.ui.Modifier(kotlin.Float){}[0] +} + +// Targets: [js] +final object com.huanshankeji.compose.foundation/ScrollState // com.huanshankeji.compose.foundation/ScrollState|null[0] + +// Targets: [js] +final val com.huanshankeji.browser/browser // com.huanshankeji.browser/browser|{}browser[0] + final fun (): com.huanshankeji.browser/Browser? // com.huanshankeji.browser/browser.|(){}[0] + +// Targets: [js] +final val com.huanshankeji.compose.foundation.layout.ext/cssHeightStretchValueBrowserDependent // com.huanshankeji.compose.foundation.layout.ext/cssHeightStretchValueBrowserDependent|{}cssHeightStretchValueBrowserDependent[0] + final fun (): kotlin/String // com.huanshankeji.compose.foundation.layout.ext/cssHeightStretchValueBrowserDependent.|(){}[0] + +// Targets: [js] +final val com.huanshankeji.compose.foundation.layout.ext/cssWidthStretchValueBrowserDependent // com.huanshankeji.compose.foundation.layout.ext/cssWidthStretchValueBrowserDependent|{}cssWidthStretchValueBrowserDependent[0] + final fun (): kotlin/String // com.huanshankeji.compose.foundation.layout.ext/cssWidthStretchValueBrowserDependent.|(){}[0] + +// Targets: [js] +final val com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_Arrangement_HorizontalOrVertical_FromStyleImpl$stableprop // com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_Arrangement_HorizontalOrVertical_FromStyleImpl$stableprop|#static{}com_huanshankeji_compose_foundation_layout_Arrangement_HorizontalOrVertical_FromStyleImpl$stableprop[0] + +// Targets: [js] +final val com.huanshankeji.compose.foundation/com_huanshankeji_compose_foundation_ScrollState$stableprop // com.huanshankeji.compose.foundation/com_huanshankeji_compose_foundation_ScrollState$stableprop|#static{}com_huanshankeji_compose_foundation_ScrollState$stableprop[0] + +// Targets: [js] +final val com.huanshankeji.compose.foundation/imitateComposeUiLayoutHorizontalScrollPlatformModifier // com.huanshankeji.compose.foundation/imitateComposeUiLayoutHorizontalScrollPlatformModifier|{}imitateComposeUiLayoutHorizontalScrollPlatformModifier[0] + final fun (): com.varabyte.kobweb.compose.ui/Modifier // com.huanshankeji.compose.foundation/imitateComposeUiLayoutHorizontalScrollPlatformModifier.|(){}[0] + +// Targets: [js] +final val com.huanshankeji.compose.foundation/imitateComposeUiLayoutVerticalScrollPlatformModifier // com.huanshankeji.compose.foundation/imitateComposeUiLayoutVerticalScrollPlatformModifier|{}imitateComposeUiLayoutVerticalScrollPlatformModifier[0] + final fun (): com.varabyte.kobweb.compose.ui/Modifier // com.huanshankeji.compose.foundation/imitateComposeUiLayoutVerticalScrollPlatformModifier.|(){}[0] + +// Targets: [js] +final fun (androidx.compose.ui.unit/Dp).com.huanshankeji.compose.ui.unit/toPx(): org.jetbrains.compose.web.css/CSSSizeValue // com.huanshankeji.compose.ui.unit/toPx|toPx@androidx.compose.ui.unit.Dp(){}[0] + +// Targets: [js] +final fun (com.huanshankeji.compose.foundation.text.input/KeyboardCapitalization).com.huanshankeji.compose.foundation.text.input/toAutoCapitalizeAttrValue(): kotlin/String // com.huanshankeji.compose.foundation.text.input/toAutoCapitalizeAttrValue|toAutoCapitalizeAttrValue@com.huanshankeji.compose.foundation.text.input.KeyboardCapitalization(){}[0] + +// Targets: [js] +final fun (com.huanshankeji.compose.foundation.text.input/KeyboardType).com.huanshankeji.compose.foundation.text.input/toInputMode(): org.jetbrains.compose.web.attributes/InputMode? // com.huanshankeji.compose.foundation.text.input/toInputMode|toInputMode@com.huanshankeji.compose.foundation.text.input.KeyboardType(){}[0] + +// Targets: [js] +final fun (com.huanshankeji.compose.ui.graphics/ColorProducer?).com.huanshankeji.compose.ui.graphics/toNullableAttrs(): kotlin/Function1, kotlin/Unit>? // com.huanshankeji.compose.ui.graphics/toNullableAttrs|toNullableAttrs@com.huanshankeji.compose.ui.graphics.ColorProducer?(){}[0] + +// Targets: [js] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation/horizontalScroll(com.huanshankeji.compose.foundation/ScrollState): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation/horizontalScroll|horizontalScroll@com.huanshankeji.compose.ui.Modifier(com.huanshankeji.compose.foundation.ScrollState){}[0] + +// Targets: [js] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.foundation/verticalScroll(com.huanshankeji.compose.foundation/ScrollState): com.huanshankeji.compose.ui/Modifier // com.huanshankeji.compose.foundation/verticalScroll|verticalScroll@com.huanshankeji.compose.ui.Modifier(com.huanshankeji.compose.foundation.ScrollState){}[0] + +// Targets: [js] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.ui.graphics/toAttrsWithColor(com.huanshankeji.compose.ui.graphics/Color?): kotlin/Function1, kotlin/Unit> // com.huanshankeji.compose.ui.graphics/toAttrsWithColor|toAttrsWithColor@com.huanshankeji.compose.ui.Modifier(com.huanshankeji.compose.ui.graphics.Color?){}[0] + +// Targets: [js] +final fun (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.ui.graphics/toAttrsWithColor(com.huanshankeji.compose.ui.graphics/ColorProducer?): kotlin/Function1, kotlin/Unit> // com.huanshankeji.compose.ui.graphics/toAttrsWithColor|toAttrsWithColor@com.huanshankeji.compose.ui.Modifier(com.huanshankeji.compose.ui.graphics.ColorProducer?){}[0] + +// Targets: [js] +final fun (com.varabyte.kobweb.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout/flexBasis0(): com.varabyte.kobweb.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout/flexBasis0|flexBasis0@com.varabyte.kobweb.compose.ui.Modifier(){}[0] + +// Targets: [js] +final fun (com.varabyte.kobweb.compose.ui/Modifier).com.huanshankeji.compose.foundation.layout/stylesFrom(com.huanshankeji.compose.foundation.layout/Arrangement.CommonArrangement): com.varabyte.kobweb.compose.ui/Modifier // com.huanshankeji.compose.foundation.layout/stylesFrom|stylesFrom@com.varabyte.kobweb.compose.ui.Modifier(com.huanshankeji.compose.foundation.layout.Arrangement.CommonArrangement){}[0] + +// Targets: [js] +final fun (com.varabyte.kobweb.compose.ui/Modifier).com.huanshankeji.compose.foundation/horizontalScroll(): com.varabyte.kobweb.compose.ui/Modifier // com.huanshankeji.compose.foundation/horizontalScroll|horizontalScroll@com.varabyte.kobweb.compose.ui.Modifier(){}[0] + +// Targets: [js] +final fun (com.varabyte.kobweb.compose.ui/Modifier).com.huanshankeji.compose.foundation/verticalScroll(): com.varabyte.kobweb.compose.ui/Modifier // com.huanshankeji.compose.foundation/verticalScroll|verticalScroll@com.varabyte.kobweb.compose.ui.Modifier(){}[0] + +// Targets: [js] +final fun (com.varabyte.kobweb.compose.ui/Modifier).com.huanshankeji.compose.ui/toCommonModifier(): com.huanshankeji.compose.ui/Modifier.Impl // com.huanshankeji.compose.ui/toCommonModifier|toCommonModifier@com.varabyte.kobweb.compose.ui.Modifier(){}[0] + +// Targets: [js] +final fun (com.varabyte.kobweb.compose.ui/Modifier).com.huanshankeji.kobweb.compose.ui.modifiers/imitateComposeUiLayout(): com.varabyte.kobweb.compose.ui/Modifier // com.huanshankeji.kobweb.compose.ui.modifiers/imitateComposeUiLayout|imitateComposeUiLayout@com.varabyte.kobweb.compose.ui.Modifier(){}[0] + +// Targets: [js] +final fun (com.varabyte.kobweb.compose.ui/Modifier).com.huanshankeji.kobweb.compose.ui.modifiers/size(com.varabyte.kobweb.compose.css/Width, com.varabyte.kobweb.compose.css/Height): com.varabyte.kobweb.compose.ui/Modifier // com.huanshankeji.kobweb.compose.ui.modifiers/size|size@com.varabyte.kobweb.compose.ui.Modifier(com.varabyte.kobweb.compose.css.Width;com.varabyte.kobweb.compose.css.Height){}[0] + +// Targets: [js] +final fun (com.varabyte.kobweb.compose.ui/Modifier).com.huanshankeji.kobweb.compose.ui.modifiers/sizeFitContent(): com.varabyte.kobweb.compose.ui/Modifier // com.huanshankeji.kobweb.compose.ui.modifiers/sizeFitContent|sizeFitContent@com.varabyte.kobweb.compose.ui.Modifier(){}[0] + +// Targets: [js] +final fun (kotlin/Float).com.huanshankeji.compose.ui.unit/toPercent(): org.jetbrains.compose.web.css/CSSSizeValue // com.huanshankeji.compose.ui.unit/toPercent|toPercent@kotlin.Float(){}[0] + +// Targets: [js] +final fun (kotlin/Function3).com.huanshankeji.compose.foundation.layout/toCommonColumnScopeContent(): kotlin/Function3 // com.huanshankeji.compose.foundation.layout/toCommonColumnScopeContent|toCommonColumnScopeContent@kotlin.Function3(){}[0] + +// Targets: [js] +final fun (kotlin/Function3).com.huanshankeji.compose.foundation.layout/toPlatformRowScopeContent(): kotlin/Function3 // com.huanshankeji.compose.foundation.layout/toPlatformRowScopeContent|toPlatformRowScopeContent@kotlin.Function3(){}[0] + +// Targets: [js] +final fun (org.jetbrains.compose.web.attributes/AttrsScope<*>).com.huanshankeji.compose.foundation.text/attrsFrom(com.huanshankeji.compose.foundation.text/KeyboardOptions) // com.huanshankeji.compose.foundation.text/attrsFrom|attrsFrom@org.jetbrains.compose.web.attributes.AttrsScope<*>(com.huanshankeji.compose.foundation.text.KeyboardOptions){}[0] + +// Targets: [js] +final fun (org.jetbrains.compose.web.attributes/AttrsScope<*>).com.huanshankeji.compose.ui.graphics/applyAttrs(com.huanshankeji.compose.ui.graphics/ColorProducer) // com.huanshankeji.compose.ui.graphics/applyAttrs|applyAttrs@org.jetbrains.compose.web.attributes.AttrsScope<*>(com.huanshankeji.compose.ui.graphics.ColorProducer){}[0] + +// Targets: [js] +final fun (org.jetbrains.compose.web.attributes/AttrsScope<*>).com.huanshankeji.compose/contentDescription(kotlin/String?): org.jetbrains.compose.web.attributes/AttrsScope? // com.huanshankeji.compose/contentDescription|contentDescription@org.jetbrains.compose.web.attributes.AttrsScope<*>(kotlin.String?){}[0] + +// Targets: [js] +final fun (org.jetbrains.compose.web.attributes/AttrsScope).com.huanshankeji.compose.foundation.text/attrsFrom(com.huanshankeji.compose.foundation.text/KeyboardOptions, com.huanshankeji.compose.foundation.text/KeyboardActions) // com.huanshankeji.compose.foundation.text/attrsFrom|attrsFrom@org.jetbrains.compose.web.attributes.AttrsScope(com.huanshankeji.compose.foundation.text.KeyboardOptions;com.huanshankeji.compose.foundation.text.KeyboardActions){}[0] + +// Targets: [js] +final fun (org.jetbrains.compose.web.css/StyleScope).com.huanshankeji.compose.foundation.ext.css/horizontalScroll() // com.huanshankeji.compose.foundation.ext.css/horizontalScroll|horizontalScroll@org.jetbrains.compose.web.css.StyleScope(){}[0] + +// Targets: [js] +final fun (org.jetbrains.compose.web.css/StyleScope).com.huanshankeji.compose.foundation.ext.css/verticalScroll() // com.huanshankeji.compose.foundation.ext.css/verticalScroll|verticalScroll@org.jetbrains.compose.web.css.StyleScope(){}[0] + +// Targets: [js] +final fun (org.jetbrains.compose.web.css/StyleScope).com.huanshankeji.compose.foundation.ext/matchPositionRelativeParent() // com.huanshankeji.compose.foundation.ext/matchPositionRelativeParent|matchPositionRelativeParent@org.jetbrains.compose.web.css.StyleScope(){}[0] + +// Targets: [js] +final fun (org.jetbrains.compose.web.css/StyleScope).com.huanshankeji.compose.foundation.layout.ext/heightStretch() // com.huanshankeji.compose.foundation.layout.ext/heightStretch|heightStretch@org.jetbrains.compose.web.css.StyleScope(){}[0] + +// Targets: [js] +final fun (org.jetbrains.compose.web.css/StyleScope).com.huanshankeji.compose.foundation.layout.ext/widthStretch() // com.huanshankeji.compose.foundation.layout.ext/widthStretch|widthStretch@org.jetbrains.compose.web.css.StyleScope(){}[0] + +// Targets: [js] +final fun (org.jetbrains.compose.web.css/StyleScope).com.huanshankeji.compose.ui.graphics/applyStyle(com.huanshankeji.compose.ui.graphics/ColorProducer) // com.huanshankeji.compose.ui.graphics/applyStyle|applyStyle@org.jetbrains.compose.web.css.StyleScope(com.huanshankeji.compose.ui.graphics.ColorProducer){}[0] + +// Targets: [js] +final fun <#A: org.jetbrains.compose.web.attributes/AttrsScope> (com.huanshankeji.compose.ui/Modifier).com.huanshankeji.compose.ui/toAttrs(kotlin/Function1<#A, kotlin/Unit>? = ...): kotlin/Function1<#A, kotlin/Unit> // com.huanshankeji.compose.ui/toAttrs|toAttrs@com.huanshankeji.compose.ui.Modifier(kotlin.Function1<0:0,kotlin.Unit>?){0§>}[0] + +// Targets: [js] +final fun com.huanshankeji.compose.foundation.layout.ext/DivBox(com.varabyte.kobweb.compose.ui/Modifier?, kotlin/Function3, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // com.huanshankeji.compose.foundation.layout.ext/DivBox|DivBox(com.varabyte.kobweb.compose.ui.Modifier?;kotlin.Function3,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + +// Targets: [js] +final fun com.huanshankeji.compose.foundation.layout.ext/KobwebBox(com.huanshankeji.compose.ui/Modifier?, com.huanshankeji.compose.ui/Alignment, kotlin/Function3?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // com.huanshankeji.compose.foundation.layout.ext/KobwebBox|KobwebBox(com.huanshankeji.compose.ui.Modifier?;com.huanshankeji.compose.ui.Alignment;kotlin.Function3?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + +// Targets: [js] +final fun com.huanshankeji.compose.foundation.layout.ext/KobwebBox(com.varabyte.kobweb.compose.ui/Modifier?, com.varabyte.kobweb.compose.ui/Alignment?, com.varabyte.kobweb.compose.dom/ElementRefScope?, kotlin/Function3?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // com.huanshankeji.compose.foundation.layout.ext/KobwebBox|KobwebBox(com.varabyte.kobweb.compose.ui.Modifier?;com.varabyte.kobweb.compose.ui.Alignment?;com.varabyte.kobweb.compose.dom.ElementRefScope?;kotlin.Function3?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + +// Targets: [js] +final fun com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_Arrangement_HorizontalOrVertical_FromStyleImpl$stableprop_getter(): kotlin/Int // com.huanshankeji.compose.foundation.layout/com_huanshankeji_compose_foundation_layout_Arrangement_HorizontalOrVertical_FromStyleImpl$stableprop_getter|com_huanshankeji_compose_foundation_layout_Arrangement_HorizontalOrVertical_FromStyleImpl$stableprop_getter(){}[0] + +// Targets: [js] +final fun com.huanshankeji.compose.foundation.text.ext/CommonBasicText(kotlin/String, com.huanshankeji.compose.ui/Modifier, com.huanshankeji.compose.ui.graphics/Color?, androidx.compose.runtime/Composer?, kotlin/Int) // com.huanshankeji.compose.foundation.text.ext/CommonBasicText|CommonBasicText(kotlin.String;com.huanshankeji.compose.ui.Modifier;com.huanshankeji.compose.ui.graphics.Color?;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + +// Targets: [js] +final fun com.huanshankeji.compose.foundation/com_huanshankeji_compose_foundation_ScrollState$stableprop_getter(): kotlin/Int // com.huanshankeji.compose.foundation/com_huanshankeji_compose_foundation_ScrollState$stableprop_getter|com_huanshankeji_compose_foundation_ScrollState$stableprop_getter(){}[0] + +// Targets: [js] +final fun com.huanshankeji.compose.foundation/rememberScrollState(kotlin/Int, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): com.huanshankeji.compose.foundation/ScrollState // com.huanshankeji.compose.foundation/rememberScrollState|rememberScrollState(kotlin.Int;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] diff --git a/common/api/jvm/compose-multiplatform-html-unified-common.api b/common/api/jvm/compose-multiplatform-html-unified-common.api new file mode 100644 index 00000000..119e3cee --- /dev/null +++ b/common/api/jvm/compose-multiplatform-html-unified-common.api @@ -0,0 +1,807 @@ +public final class com/huanshankeji/compose/Content_composeUiKt { + public static final fun toContentWithoutModifier (Lkotlin/jvm/functions/Function3;)Lkotlin/jvm/functions/Function2; + public static final fun toNullableContentWithoutModifier (Lkotlin/jvm/functions/Function3;)Lkotlin/jvm/functions/Function2; +} + +public abstract interface annotation class com/huanshankeji/compose/ExtRecommendedApi : java/lang/annotation/Annotation { +} + +public abstract class com/huanshankeji/compose/ext/LoadingState { + public static final field $stable I +} + +public final class com/huanshankeji/compose/ext/LoadingState$Error : com/huanshankeji/compose/ext/LoadingState { + public static final field $stable I + public fun (Ljava/lang/Object;)V + public final fun getError ()Ljava/lang/Object; +} + +public final class com/huanshankeji/compose/ext/LoadingState$Loaded : com/huanshankeji/compose/ext/LoadingState { + public static final field $stable I + public fun (Ljava/lang/Object;)V + public final fun getValue ()Ljava/lang/Object; +} + +public final class com/huanshankeji/compose/ext/LoadingState$Loading : com/huanshankeji/compose/ext/LoadingState { + public static final field $stable I + public static final field INSTANCE Lcom/huanshankeji/compose/ext/LoadingState$Loading; +} + +public final class com/huanshankeji/compose/foundation/Background_composeUiKt { + public static final fun background (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/graphics/Color;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/BorderStroke { + public static final field $stable I + public synthetic fun (FLcom/huanshankeji/compose/ui/graphics/Brush;Lkotlin/jvm/internal/DefaultConstructorMarker;)V + public final fun component1-D9Ej5fM ()F + public final fun component2 ()Lcom/huanshankeji/compose/ui/graphics/Brush; + public final fun copy-D5KLDUw (FLcom/huanshankeji/compose/ui/graphics/Brush;)Lcom/huanshankeji/compose/foundation/BorderStroke; + public static synthetic fun copy-D5KLDUw$default (Lcom/huanshankeji/compose/foundation/BorderStroke;FLcom/huanshankeji/compose/ui/graphics/Brush;ILjava/lang/Object;)Lcom/huanshankeji/compose/foundation/BorderStroke; + public fun equals (Ljava/lang/Object;)Z + public final fun getBrush ()Lcom/huanshankeji/compose/ui/graphics/Brush; + public final fun getWidth-D9Ej5fM ()F + public fun hashCode ()I + public fun toString ()Ljava/lang/String; +} + +public final class com/huanshankeji/compose/foundation/BorderStroke_composeUiKt { + public static final fun toPlatformValue (Lcom/huanshankeji/compose/foundation/BorderStroke;)Landroidx/compose/foundation/BorderStroke; +} + +public final class com/huanshankeji/compose/foundation/Border_composeUiKt { + public static final fun border (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/foundation/BorderStroke;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun border-lG28NQ4 (Lcom/huanshankeji/compose/ui/Modifier;FLcom/huanshankeji/compose/ui/graphics/Color;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public abstract interface annotation class com/huanshankeji/compose/foundation/ExperimentalFoundationApi : java/lang/annotation/Annotation { +} + +public final class com/huanshankeji/compose/foundation/OnClick_composeUiExceptAndroidKt { + public static final fun onClick (Lcom/huanshankeji/compose/ui/Modifier;Lkotlin/jvm/functions/Function0;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/OnClick_composeUiKt { + public static final fun clickable (Lcom/huanshankeji/compose/ui/Modifier;Lkotlin/jvm/functions/Function0;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/Scroll_composeUiKt { + public static final fun HorizontalScrollBox (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;II)V + public static final fun VerticalScrollBox (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;II)V + public static final fun horizontalScroll (Lcom/huanshankeji/compose/ui/Modifier;Landroidx/compose/foundation/ScrollState;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun rememberScrollState (ILandroidx/compose/runtime/Composer;II)Landroidx/compose/foundation/ScrollState; + public static final fun verticalScroll (Lcom/huanshankeji/compose/ui/Modifier;Landroidx/compose/foundation/ScrollState;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/ext/BackgroundAndBorder_composeUiKt { + public static final fun roundedCornerBackgroundAndOuterBorder (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/foundation/BorderStroke;ILcom/huanshankeji/compose/ui/graphics/Color;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun roundedCornerBackgroundAndOuterBorder-SW5qh9g (Lcom/huanshankeji/compose/ui/Modifier;FLcom/huanshankeji/compose/ui/graphics/Color;FLcom/huanshankeji/compose/ui/graphics/Color;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun roundedCornerBackgroundAndOuterBorder-d8LSEHM (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/foundation/BorderStroke;FLcom/huanshankeji/compose/ui/graphics/Color;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun roundedCornerBackgroundAndOuterBorder-rAjV9yQ (Lcom/huanshankeji/compose/ui/Modifier;FLcom/huanshankeji/compose/ui/graphics/Color;ILcom/huanshankeji/compose/ui/graphics/Color;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/ext/Border_composeUiKt { + public static final fun outerBorder (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/foundation/BorderStroke;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun outerBorder-lG28NQ4 (Lcom/huanshankeji/compose/ui/Modifier;FLcom/huanshankeji/compose/ui/graphics/Color;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun roundedCornerOuterBorder (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/foundation/BorderStroke;I)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun roundedCornerOuterBorder-vfC735M (Lcom/huanshankeji/compose/ui/Modifier;FLcom/huanshankeji/compose/ui/graphics/Color;F)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun roundedCornerOuterBorder-wH6b6FI (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/foundation/BorderStroke;F)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun roundedCornerOuterBorder-ziNgDLE (Lcom/huanshankeji/compose/ui/Modifier;FLcom/huanshankeji/compose/ui/graphics/Color;I)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/ext/MatchPositionRelativeParentJsOnly_composeUiKt { + public static final fun matchPositionRelativeParentJsDom (Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/layout/Arrangement { + public static final field $stable I + public static final field INSTANCE Lcom/huanshankeji/compose/foundation/layout/Arrangement; + public final fun getBottom ()Lcom/huanshankeji/compose/foundation/layout/Arrangement$Vertical; + public final fun getCenter ()Lcom/huanshankeji/compose/foundation/layout/Arrangement$HorizontalOrVertical; + public final fun getEnd ()Lcom/huanshankeji/compose/foundation/layout/Arrangement$Horizontal; + public final fun getSpaceAround ()Lcom/huanshankeji/compose/foundation/layout/Arrangement$HorizontalOrVertical; + public final fun getSpaceBetween ()Lcom/huanshankeji/compose/foundation/layout/Arrangement$HorizontalOrVertical; + public final fun getSpaceEvenly ()Lcom/huanshankeji/compose/foundation/layout/Arrangement$HorizontalOrVertical; + public final fun getStart ()Lcom/huanshankeji/compose/foundation/layout/Arrangement$Horizontal; + public final fun getTop ()Lcom/huanshankeji/compose/foundation/layout/Arrangement$Vertical; + public final fun spacedBy-0680j_4 (F)Lcom/huanshankeji/compose/foundation/layout/Arrangement$HorizontalOrVertical; +} + +public abstract interface class com/huanshankeji/compose/foundation/layout/Arrangement$Horizontal { + public abstract fun getPlatformValue ()Landroidx/compose/foundation/layout/Arrangement$Horizontal; +} + +public final class com/huanshankeji/compose/foundation/layout/Arrangement$Horizontal$Impl : com/huanshankeji/compose/foundation/layout/Arrangement$Horizontal { + public static final field $stable I + public fun (Landroidx/compose/foundation/layout/Arrangement$Horizontal;)V + public fun getPlatformValue ()Landroidx/compose/foundation/layout/Arrangement$Horizontal; +} + +public abstract interface class com/huanshankeji/compose/foundation/layout/Arrangement$HorizontalOrVertical : com/huanshankeji/compose/foundation/layout/Arrangement$Horizontal, com/huanshankeji/compose/foundation/layout/Arrangement$Vertical { + public abstract fun getPlatformValue ()Landroidx/compose/foundation/layout/Arrangement$HorizontalOrVertical; +} + +public final class com/huanshankeji/compose/foundation/layout/Arrangement$HorizontalOrVertical$Impl : com/huanshankeji/compose/foundation/layout/Arrangement$HorizontalOrVertical { + public static final field $stable I + public fun (Landroidx/compose/foundation/layout/Arrangement$HorizontalOrVertical;)V + public synthetic fun getPlatformValue ()Landroidx/compose/foundation/layout/Arrangement$Horizontal; + public fun getPlatformValue ()Landroidx/compose/foundation/layout/Arrangement$HorizontalOrVertical; + public synthetic fun getPlatformValue ()Landroidx/compose/foundation/layout/Arrangement$Vertical; +} + +public abstract interface class com/huanshankeji/compose/foundation/layout/Arrangement$Vertical { + public abstract fun getPlatformValue ()Landroidx/compose/foundation/layout/Arrangement$Vertical; +} + +public final class com/huanshankeji/compose/foundation/layout/Arrangement$Vertical$Impl : com/huanshankeji/compose/foundation/layout/Arrangement$Vertical { + public static final field $stable I + public fun (Landroidx/compose/foundation/layout/Arrangement$Vertical;)V + public fun getPlatformValue ()Landroidx/compose/foundation/layout/Arrangement$Vertical; +} + +public abstract interface class com/huanshankeji/compose/foundation/layout/BoxScope { + public abstract fun align (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment;)Lcom/huanshankeji/compose/ui/Modifier; + public abstract fun getPlatformBoxScope ()Landroidx/compose/foundation/layout/BoxScope; +} + +public final class com/huanshankeji/compose/foundation/layout/BoxScope$DefaultImpls { + public static fun align (Lcom/huanshankeji/compose/foundation/layout/BoxScope;Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/layout/BoxScope$Impl : com/huanshankeji/compose/foundation/layout/BoxScope { + public fun align (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment;)Lcom/huanshankeji/compose/ui/Modifier; + public static fun align-impl (Landroidx/compose/foundation/layout/BoxScope;Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment;)Lcom/huanshankeji/compose/ui/Modifier; + public static final synthetic fun box-impl (Landroidx/compose/foundation/layout/BoxScope;)Lcom/huanshankeji/compose/foundation/layout/BoxScope$Impl; + public static fun constructor-impl (Landroidx/compose/foundation/layout/BoxScope;)Landroidx/compose/foundation/layout/BoxScope; + public fun equals (Ljava/lang/Object;)Z + public static fun equals-impl (Landroidx/compose/foundation/layout/BoxScope;Ljava/lang/Object;)Z + public static final fun equals-impl0 (Landroidx/compose/foundation/layout/BoxScope;Landroidx/compose/foundation/layout/BoxScope;)Z + public fun getPlatformBoxScope ()Landroidx/compose/foundation/layout/BoxScope; + public fun hashCode ()I + public static fun hashCode-impl (Landroidx/compose/foundation/layout/BoxScope;)I + public fun toString ()Ljava/lang/String; + public static fun toString-impl (Landroidx/compose/foundation/layout/BoxScope;)Ljava/lang/String; + public final synthetic fun unbox-impl ()Landroidx/compose/foundation/layout/BoxScope; +} + +public final class com/huanshankeji/compose/foundation/layout/Box_composeUiKt { + public static final fun Box (Lcom/huanshankeji/compose/ui/Modifier;Landroidx/compose/runtime/Composer;I)V + public static final fun Box (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;II)V +} + +public final class com/huanshankeji/compose/foundation/layout/ColumnKt { + public static final fun toCommonColumnScopeContent (Lkotlin/jvm/functions/Function3;)Lkotlin/jvm/functions/Function3; +} + +public abstract interface class com/huanshankeji/compose/foundation/layout/ColumnScope { + public abstract fun align (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment$Horizontal;)Lcom/huanshankeji/compose/ui/Modifier; + public abstract fun getPlatformValue ()Landroidx/compose/foundation/layout/ColumnScope; + public abstract fun weight (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/layout/ColumnScope$DefaultImpls { + public static fun align (Lcom/huanshankeji/compose/foundation/layout/ColumnScope;Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment$Horizontal;)Lcom/huanshankeji/compose/ui/Modifier; + public static fun weight (Lcom/huanshankeji/compose/foundation/layout/ColumnScope;Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/layout/ColumnScope$Impl : com/huanshankeji/compose/foundation/layout/ColumnScope { + public fun align (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment$Horizontal;)Lcom/huanshankeji/compose/ui/Modifier; + public static fun align-impl (Landroidx/compose/foundation/layout/ColumnScope;Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment$Horizontal;)Lcom/huanshankeji/compose/ui/Modifier; + public static final synthetic fun box-impl (Landroidx/compose/foundation/layout/ColumnScope;)Lcom/huanshankeji/compose/foundation/layout/ColumnScope$Impl; + public static fun constructor-impl (Landroidx/compose/foundation/layout/ColumnScope;)Landroidx/compose/foundation/layout/ColumnScope; + public fun equals (Ljava/lang/Object;)Z + public static fun equals-impl (Landroidx/compose/foundation/layout/ColumnScope;Ljava/lang/Object;)Z + public static final fun equals-impl0 (Landroidx/compose/foundation/layout/ColumnScope;Landroidx/compose/foundation/layout/ColumnScope;)Z + public fun getPlatformValue ()Landroidx/compose/foundation/layout/ColumnScope; + public fun hashCode ()I + public static fun hashCode-impl (Landroidx/compose/foundation/layout/ColumnScope;)I + public fun toString ()Ljava/lang/String; + public static fun toString-impl (Landroidx/compose/foundation/layout/ColumnScope;)Ljava/lang/String; + public final synthetic fun unbox-impl ()Landroidx/compose/foundation/layout/ColumnScope; + public fun weight (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; + public static fun weight-impl (Landroidx/compose/foundation/layout/ColumnScope;Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/layout/Column_composeUiKt { + public static final fun Column (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/foundation/layout/Arrangement$Vertical;Lcom/huanshankeji/compose/ui/Alignment$Horizontal;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;II)V +} + +public final class com/huanshankeji/compose/foundation/layout/IntrinsicSize : java/lang/Enum { + public static final field Max Lcom/huanshankeji/compose/foundation/layout/IntrinsicSize; + public static final field Min Lcom/huanshankeji/compose/foundation/layout/IntrinsicSize; + public static fun getEntries ()Lkotlin/enums/EnumEntries; + public static fun valueOf (Ljava/lang/String;)Lcom/huanshankeji/compose/foundation/layout/IntrinsicSize; + public static fun values ()[Lcom/huanshankeji/compose/foundation/layout/IntrinsicSize; +} + +public final class com/huanshankeji/compose/foundation/layout/Intrinsic_composeUiKt { + public static final fun height (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/foundation/layout/IntrinsicSize;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun toPlatformValue (Lcom/huanshankeji/compose/foundation/layout/IntrinsicSize;)Landroidx/compose/foundation/layout/IntrinsicSize; + public static final fun width (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/foundation/layout/IntrinsicSize;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public abstract class com/huanshankeji/compose/foundation/layout/PaddingValues { + public static final field $stable I + public fun (Landroidx/compose/foundation/layout/PaddingValues;)V + public final fun getPlatformValue ()Landroidx/compose/foundation/layout/PaddingValues; +} + +public final class com/huanshankeji/compose/foundation/layout/PaddingValues$Absolute : com/huanshankeji/compose/foundation/layout/PaddingValues { + public static final field $stable I + public synthetic fun (FFFFILkotlin/jvm/internal/DefaultConstructorMarker;)V + public synthetic fun (FFFFLkotlin/jvm/internal/DefaultConstructorMarker;)V + public fun (Landroidx/compose/foundation/layout/PaddingValues$Absolute;)V +} + +public final class com/huanshankeji/compose/foundation/layout/Padding_composeUiKt { + public static final fun PaddingValues-0680j_4 (F)Lcom/huanshankeji/compose/foundation/layout/PaddingValues; + public static final fun PaddingValues-YgX7TsA (FF)Lcom/huanshankeji/compose/foundation/layout/PaddingValues; + public static synthetic fun PaddingValues-YgX7TsA$default (FFILjava/lang/Object;)Lcom/huanshankeji/compose/foundation/layout/PaddingValues; + public static final fun PaddingValues-a9UjIt4 (FFFF)Lcom/huanshankeji/compose/foundation/layout/PaddingValues; + public static synthetic fun PaddingValues-a9UjIt4$default (FFFFILjava/lang/Object;)Lcom/huanshankeji/compose/foundation/layout/PaddingValues; + public static final fun absolutePadding-qDBjuR0 (Lcom/huanshankeji/compose/ui/Modifier;FFFF)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun absolutePadding-qDBjuR0$default (Lcom/huanshankeji/compose/ui/Modifier;FFFFILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun padding (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/foundation/layout/PaddingValues;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun padding-3ABfNKs (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun padding-VpY3zN4 (Lcom/huanshankeji/compose/ui/Modifier;FF)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun padding-VpY3zN4$default (Lcom/huanshankeji/compose/ui/Modifier;FFILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun padding-qDBjuR0 (Lcom/huanshankeji/compose/ui/Modifier;FFFF)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun padding-qDBjuR0$default (Lcom/huanshankeji/compose/ui/Modifier;FFFFILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun toCommonValue (Landroidx/compose/foundation/layout/PaddingValues;)Lcom/huanshankeji/compose/foundation/layout/PaddingValues; +} + +public final class com/huanshankeji/compose/foundation/layout/RowKt { + public static final fun toPlatformRowScopeContent (Lkotlin/jvm/functions/Function3;)Lkotlin/jvm/functions/Function3; +} + +public abstract interface class com/huanshankeji/compose/foundation/layout/RowScope { + public abstract fun align (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment$Vertical;)Lcom/huanshankeji/compose/ui/Modifier; + public abstract fun getPlatformValue ()Landroidx/compose/foundation/layout/RowScope; + public abstract fun weight (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/layout/RowScope$DefaultImpls { + public static fun align (Lcom/huanshankeji/compose/foundation/layout/RowScope;Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment$Vertical;)Lcom/huanshankeji/compose/ui/Modifier; + public static fun weight (Lcom/huanshankeji/compose/foundation/layout/RowScope;Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/layout/RowScope$Impl : com/huanshankeji/compose/foundation/layout/RowScope { + public fun align (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment$Vertical;)Lcom/huanshankeji/compose/ui/Modifier; + public static fun align-impl (Landroidx/compose/foundation/layout/RowScope;Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment$Vertical;)Lcom/huanshankeji/compose/ui/Modifier; + public static final synthetic fun box-impl (Landroidx/compose/foundation/layout/RowScope;)Lcom/huanshankeji/compose/foundation/layout/RowScope$Impl; + public static fun constructor-impl (Landroidx/compose/foundation/layout/RowScope;)Landroidx/compose/foundation/layout/RowScope; + public fun equals (Ljava/lang/Object;)Z + public static fun equals-impl (Landroidx/compose/foundation/layout/RowScope;Ljava/lang/Object;)Z + public static final fun equals-impl0 (Landroidx/compose/foundation/layout/RowScope;Landroidx/compose/foundation/layout/RowScope;)Z + public fun getPlatformValue ()Landroidx/compose/foundation/layout/RowScope; + public fun hashCode ()I + public static fun hashCode-impl (Landroidx/compose/foundation/layout/RowScope;)I + public fun toString ()Ljava/lang/String; + public static fun toString-impl (Landroidx/compose/foundation/layout/RowScope;)Ljava/lang/String; + public final synthetic fun unbox-impl ()Landroidx/compose/foundation/layout/RowScope; + public fun weight (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; + public static fun weight-impl (Landroidx/compose/foundation/layout/RowScope;Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/layout/Row_composeUiKt { + public static final fun Row (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/foundation/layout/Arrangement$Horizontal;Lcom/huanshankeji/compose/ui/Alignment$Vertical;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;II)V +} + +public final class com/huanshankeji/compose/foundation/layout/SizeKt { + public static final fun size-6HolHcs (Lcom/huanshankeji/compose/ui/Modifier;J)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/layout/Size_composeUiKt { + public static final fun fillMaxHeight (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun fillMaxHeight$default (Lcom/huanshankeji/compose/ui/Modifier;FILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun fillMaxSize (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun fillMaxSize$default (Lcom/huanshankeji/compose/ui/Modifier;FILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun fillMaxWidth (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun fillMaxWidth$default (Lcom/huanshankeji/compose/ui/Modifier;FILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun height-3ABfNKs (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun heightIn-VpY3zN4 (Lcom/huanshankeji/compose/ui/Modifier;FF)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun heightIn-VpY3zN4$default (Lcom/huanshankeji/compose/ui/Modifier;FFILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun size-3ABfNKs (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun size-VpY3zN4 (Lcom/huanshankeji/compose/ui/Modifier;FF)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun sizeIn-qDBjuR0 (Lcom/huanshankeji/compose/ui/Modifier;FFFF)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun sizeIn-qDBjuR0$default (Lcom/huanshankeji/compose/ui/Modifier;FFFFILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun width-3ABfNKs (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun widthIn-VpY3zN4 (Lcom/huanshankeji/compose/ui/Modifier;FF)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun widthIn-VpY3zN4$default (Lcom/huanshankeji/compose/ui/Modifier;FFILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun wrapContentHeight (Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun wrapContentSize (Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun wrapContentWidth (Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/layout/Spacer_composeUiKt { + public static final fun Spacer (Lcom/huanshankeji/compose/ui/Modifier;Landroidx/compose/runtime/Composer;I)V +} + +public abstract interface class com/huanshankeji/compose/foundation/layout/ext/BoxWithConstraintsScope : com/huanshankeji/compose/foundation/layout/BoxScope { + public abstract fun getMaxHeight-D9Ej5fM ()F + public abstract fun getMaxWidth-D9Ej5fM ()F +} + +public final class com/huanshankeji/compose/foundation/layout/ext/BoxWithConstraintsScope$DefaultImpls { + public static fun align (Lcom/huanshankeji/compose/foundation/layout/ext/BoxWithConstraintsScope;Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/layout/ext/BoxWithConstraintsScopeImpl : com/huanshankeji/compose/foundation/layout/ext/BoxWithConstraintsScope { + public static final field $stable I + public synthetic fun (Landroidx/compose/foundation/layout/BoxScope;FFLkotlin/jvm/internal/DefaultConstructorMarker;)V + public fun align (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment;)Lcom/huanshankeji/compose/ui/Modifier; + public fun getMaxHeight-D9Ej5fM ()F + public fun getMaxWidth-D9Ej5fM ()F + public fun getPlatformBoxScope ()Landroidx/compose/foundation/layout/BoxScope; +} + +public final class com/huanshankeji/compose/foundation/layout/ext/BoxWithConstraints_composeUiKt { + public static final fun BoxWithConstraints (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Alignment;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;II)V +} + +public final class com/huanshankeji/compose/foundation/layout/ext/InnerPadding_composeUiKt { + public static final fun absoluteInnerPadding-qDBjuR0 (Lcom/huanshankeji/compose/ui/Modifier;FFFF)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun absoluteInnerPadding-qDBjuR0$default (Lcom/huanshankeji/compose/ui/Modifier;FFFFILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun innerPadding (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/foundation/layout/PaddingValues;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun innerPadding-3ABfNKs (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun innerPadding-VpY3zN4 (Lcom/huanshankeji/compose/ui/Modifier;FF)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun innerPadding-VpY3zN4$default (Lcom/huanshankeji/compose/ui/Modifier;FFILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun innerPadding-qDBjuR0 (Lcom/huanshankeji/compose/ui/Modifier;FFFF)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun innerPadding-qDBjuR0$default (Lcom/huanshankeji/compose/ui/Modifier;FFFFILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/layout/ext/OuterPadding_composeUiKt { + public static final fun absoluteOuterPadding-qDBjuR0 (Lcom/huanshankeji/compose/ui/Modifier;FFFF)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun absoluteOuterPadding-qDBjuR0$default (Lcom/huanshankeji/compose/ui/Modifier;FFFFILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun outerPadding (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/foundation/layout/PaddingValues;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun outerPadding-3ABfNKs (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun outerPadding-VpY3zN4 (Lcom/huanshankeji/compose/ui/Modifier;FF)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun outerPadding-VpY3zN4$default (Lcom/huanshankeji/compose/ui/Modifier;FFILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun outerPadding-qDBjuR0 (Lcom/huanshankeji/compose/ui/Modifier;FFFF)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun outerPadding-qDBjuR0$default (Lcom/huanshankeji/compose/ui/Modifier;FFFFILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/layout/ext/Size_composeUiKt { + public static final fun fillMaxHeightStretch (Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun fillMaxSizeStretch (Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun fillMaxWidthStretch (Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/foundation/lazy/LazyDslKt { + public static final fun items (Lcom/huanshankeji/compose/foundation/lazy/LazyListScope;Ljava/util/List;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function4;)V + public static final fun items (Lcom/huanshankeji/compose/foundation/lazy/LazyListScope;[Ljava/lang/Object;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function4;)V + public static synthetic fun items$default (Lcom/huanshankeji/compose/foundation/lazy/LazyListScope;Ljava/util/List;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function4;ILjava/lang/Object;)V + public static synthetic fun items$default (Lcom/huanshankeji/compose/foundation/lazy/LazyListScope;[Ljava/lang/Object;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function4;ILjava/lang/Object;)V + public static final fun itemsIndexed (Lcom/huanshankeji/compose/foundation/lazy/LazyListScope;Ljava/util/List;Lkotlin/jvm/functions/Function2;Lkotlin/jvm/functions/Function2;Lkotlin/jvm/functions/Function5;)V + public static final fun itemsIndexed (Lcom/huanshankeji/compose/foundation/lazy/LazyListScope;[Ljava/lang/Object;Lkotlin/jvm/functions/Function2;Lkotlin/jvm/functions/Function2;Lkotlin/jvm/functions/Function5;)V + public static synthetic fun itemsIndexed$default (Lcom/huanshankeji/compose/foundation/lazy/LazyListScope;Ljava/util/List;Lkotlin/jvm/functions/Function2;Lkotlin/jvm/functions/Function2;Lkotlin/jvm/functions/Function5;ILjava/lang/Object;)V + public static synthetic fun itemsIndexed$default (Lcom/huanshankeji/compose/foundation/lazy/LazyListScope;[Ljava/lang/Object;Lkotlin/jvm/functions/Function2;Lkotlin/jvm/functions/Function2;Lkotlin/jvm/functions/Function5;ILjava/lang/Object;)V +} + +public final class com/huanshankeji/compose/foundation/lazy/LazyDsl_composeUiKt { + public static final fun LazyColumn (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/foundation/layout/PaddingValues;ZLcom/huanshankeji/compose/foundation/layout/Arrangement$Vertical;Lcom/huanshankeji/compose/ui/Alignment$Horizontal;Lkotlin/jvm/functions/Function1;Landroidx/compose/runtime/Composer;II)V + public static final fun LazyRow (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/foundation/layout/PaddingValues;ZLcom/huanshankeji/compose/foundation/layout/Arrangement$Horizontal;Lcom/huanshankeji/compose/ui/Alignment$Vertical;Lkotlin/jvm/functions/Function1;Landroidx/compose/runtime/Composer;II)V +} + +public final class com/huanshankeji/compose/foundation/lazy/LazyItemScope { + public static final field $stable I + public fun (Landroidx/compose/foundation/lazy/LazyItemScope;)V + public final fun fillParentMaxHeight (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun fillParentMaxHeight$default (Lcom/huanshankeji/compose/foundation/lazy/LazyItemScope;Lcom/huanshankeji/compose/ui/Modifier;FILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public final fun fillParentMaxSize (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun fillParentMaxSize$default (Lcom/huanshankeji/compose/foundation/lazy/LazyItemScope;Lcom/huanshankeji/compose/ui/Modifier;FILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public final fun fillParentMaxWidth (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; + public static synthetic fun fillParentMaxWidth$default (Lcom/huanshankeji/compose/foundation/lazy/LazyItemScope;Lcom/huanshankeji/compose/ui/Modifier;FILjava/lang/Object;)Lcom/huanshankeji/compose/ui/Modifier; + public final fun getPlatformValue ()Landroidx/compose/foundation/lazy/LazyItemScope; +} + +public final class com/huanshankeji/compose/foundation/lazy/LazyListScope { + public static final field $stable I + public fun (Landroidx/compose/foundation/lazy/LazyListScope;)V + public final fun getPlatformValue ()Landroidx/compose/foundation/lazy/LazyListScope; + public final fun item (Ljava/lang/Object;Ljava/lang/Object;Lkotlin/jvm/functions/Function3;)V + public static synthetic fun item$default (Lcom/huanshankeji/compose/foundation/lazy/LazyListScope;Ljava/lang/Object;Ljava/lang/Object;Lkotlin/jvm/functions/Function3;ILjava/lang/Object;)V + public final fun items (ILkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function4;)V + public static synthetic fun items$default (Lcom/huanshankeji/compose/foundation/lazy/LazyListScope;ILkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function4;ILjava/lang/Object;)V +} + +public final class com/huanshankeji/compose/foundation/text/BasicTextKt { + public static final synthetic fun BasicText (Ljava/lang/String;Landroidx/compose/runtime/Composer;I)V +} + +public final class com/huanshankeji/compose/foundation/text/BasicText_composeUiKt { + public static final fun BasicText (Ljava/lang/String;Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/graphics/ColorProducer;Landroidx/compose/runtime/Composer;II)V +} + +public abstract interface class com/huanshankeji/compose/foundation/text/KeyboardActionScope { + public abstract fun defaultKeyboardAction-BY5W8_o (I)V +} + +public final class com/huanshankeji/compose/foundation/text/KeyboardActionScope$DoNothingInstance : com/huanshankeji/compose/foundation/text/KeyboardActionScope { + public static final field $stable I + public static final field INSTANCE Lcom/huanshankeji/compose/foundation/text/KeyboardActionScope$DoNothingInstance; + public fun defaultKeyboardAction-BY5W8_o (I)V +} + +public final class com/huanshankeji/compose/foundation/text/KeyboardActions { + public static final field Companion Lcom/huanshankeji/compose/foundation/text/KeyboardActions$Companion; + public static final synthetic fun box-impl (Lkotlin/jvm/functions/Function1;)Lcom/huanshankeji/compose/foundation/text/KeyboardActions; + public static fun constructor-impl (Lkotlin/jvm/functions/Function1;)Lkotlin/jvm/functions/Function1; + public static synthetic fun constructor-impl$default (Lkotlin/jvm/functions/Function1;ILkotlin/jvm/internal/DefaultConstructorMarker;)Lkotlin/jvm/functions/Function1; + public fun equals (Ljava/lang/Object;)Z + public static fun equals-impl (Lkotlin/jvm/functions/Function1;Ljava/lang/Object;)Z + public static final fun equals-impl0 (Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function1;)Z + public final fun getOnAny ()Lkotlin/jvm/functions/Function1; + public fun hashCode ()I + public static fun hashCode-impl (Lkotlin/jvm/functions/Function1;)I + public fun toString ()Ljava/lang/String; + public static fun toString-impl (Lkotlin/jvm/functions/Function1;)Ljava/lang/String; + public final synthetic fun unbox-impl ()Lkotlin/jvm/functions/Function1; +} + +public final class com/huanshankeji/compose/foundation/text/KeyboardActions$Companion { + public final fun getDefault-eR24s0A ()Lkotlin/jvm/functions/Function1; +} + +public final class com/huanshankeji/compose/foundation/text/KeyboardActions_composeUiKt { + public static final fun toCommonValue (Landroidx/compose/foundation/text/KeyboardActionScope;)Lcom/huanshankeji/compose/foundation/text/KeyboardActionScope; + public static final fun toPlatformValue-XYNfWhM (Lkotlin/jvm/functions/Function1;)Landroidx/compose/foundation/text/KeyboardActions; +} + +public final class com/huanshankeji/compose/foundation/text/KeyboardOptions { + public static final field $stable I + public static final field Companion Lcom/huanshankeji/compose/foundation/text/KeyboardOptions$Companion; + public synthetic fun (Lcom/huanshankeji/compose/foundation/text/input/KeyboardCapitalization;Ljava/lang/Boolean;Lcom/huanshankeji/compose/foundation/text/input/KeyboardType;Lcom/huanshankeji/compose/foundation/text/input/ImeAction;Lcom/huanshankeji/compose/foundation/text/input/PlatformImeOptions;ILkotlin/jvm/internal/DefaultConstructorMarker;)V + public synthetic fun (Lcom/huanshankeji/compose/foundation/text/input/KeyboardCapitalization;Ljava/lang/Boolean;Lcom/huanshankeji/compose/foundation/text/input/KeyboardType;Lcom/huanshankeji/compose/foundation/text/input/ImeAction;Lcom/huanshankeji/compose/foundation/text/input/PlatformImeOptions;Lkotlin/jvm/internal/DefaultConstructorMarker;)V + public final fun getAutoCorrect ()Ljava/lang/Boolean; + public final fun getCapitalization-sV_096Q ()Lcom/huanshankeji/compose/foundation/text/input/KeyboardCapitalization; + public final fun getImeAction-YTjJnxY ()Lcom/huanshankeji/compose/foundation/text/input/ImeAction; + public final fun getKeyboardType-vTtPjw8 ()Lcom/huanshankeji/compose/foundation/text/input/KeyboardType; + public final fun getPlatformImeOptions ()Lcom/huanshankeji/compose/foundation/text/input/PlatformImeOptions; +} + +public final class com/huanshankeji/compose/foundation/text/KeyboardOptions$Companion { + public final fun getDefault ()Lcom/huanshankeji/compose/foundation/text/KeyboardOptions; +} + +public final class com/huanshankeji/compose/foundation/text/KeyboardOptions_composeUiKt { + public static final fun toPlatformValue (Lcom/huanshankeji/compose/foundation/text/KeyboardOptions;)Landroidx/compose/foundation/text/KeyboardOptions; +} + +public final class com/huanshankeji/compose/foundation/text/ext/TextKt { + public static final field INLINE_TEXT_DEPRECATED_MESSAGE Ljava/lang/String; + public static final fun InlineBasicText (Ljava/lang/String;Landroidx/compose/runtime/Composer;I)V + public static final fun SpanBasicText (Ljava/lang/String;Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/graphics/ColorProducer;Landroidx/compose/runtime/Composer;II)V +} + +public final class com/huanshankeji/compose/foundation/text/ext/Text_composeUiKt { + public static final fun TaglessBasicText (Ljava/lang/String;Landroidx/compose/runtime/Composer;I)V +} + +public final class com/huanshankeji/compose/foundation/text/input/ImeAction { + public static final field Companion Lcom/huanshankeji/compose/foundation/text/input/ImeAction$Companion; + public static final synthetic fun box-impl (I)Lcom/huanshankeji/compose/foundation/text/input/ImeAction; + public fun equals (Ljava/lang/Object;)Z + public static fun equals-impl (ILjava/lang/Object;)Z + public static final fun equals-impl0 (II)Z + public fun hashCode ()I + public static fun hashCode-impl (I)I + public fun toString ()Ljava/lang/String; + public static fun toString-impl (I)Ljava/lang/String; + public final synthetic fun unbox-impl ()I +} + +public final class com/huanshankeji/compose/foundation/text/input/ImeAction$Companion { + public final fun getDefault-wMdBJBk ()I + public final fun getDone-wMdBJBk ()I + public final fun getGo-wMdBJBk ()I + public final fun getNext-wMdBJBk ()I + public final fun getNone-wMdBJBk ()I + public final fun getPrevious-wMdBJBk ()I + public final fun getSearch-wMdBJBk ()I + public final fun getSend-wMdBJBk ()I +} + +public final class com/huanshankeji/compose/foundation/text/input/ImeAction_composeUiKt { + public static final fun toPlatformValue-BY5W8_o (I)I + public static final fun toPlatformValue-Ya8g6bQ (Lcom/huanshankeji/compose/foundation/text/input/ImeAction;)I +} + +public final class com/huanshankeji/compose/foundation/text/input/KeyboardCapitalization { + public static final field Companion Lcom/huanshankeji/compose/foundation/text/input/KeyboardCapitalization$Companion; + public static final synthetic fun box-impl (I)Lcom/huanshankeji/compose/foundation/text/input/KeyboardCapitalization; + public fun equals (Ljava/lang/Object;)Z + public static fun equals-impl (ILjava/lang/Object;)Z + public static final fun equals-impl0 (II)Z + public fun hashCode ()I + public static fun hashCode-impl (I)I + public fun toString ()Ljava/lang/String; + public static fun toString-impl (I)Ljava/lang/String; + public final synthetic fun unbox-impl ()I +} + +public final class com/huanshankeji/compose/foundation/text/input/KeyboardCapitalization$Companion { + public final fun getCharacters-yuZ006c ()I + public final fun getNone-yuZ006c ()I + public final fun getSentences-yuZ006c ()I + public final fun getWords-yuZ006c ()I +} + +public final class com/huanshankeji/compose/foundation/text/input/KeyboardCapitalization_composeUiKt { + public static final fun toPlatformValue-7c3A3NA (I)I + public static final fun toPlatformValue-M0wbBxY (Lcom/huanshankeji/compose/foundation/text/input/KeyboardCapitalization;)I +} + +public final class com/huanshankeji/compose/foundation/text/input/KeyboardType { + public static final field Companion Lcom/huanshankeji/compose/foundation/text/input/KeyboardType$Companion; + public static final synthetic fun box-impl (I)Lcom/huanshankeji/compose/foundation/text/input/KeyboardType; + public fun equals (Ljava/lang/Object;)Z + public static fun equals-impl (ILjava/lang/Object;)Z + public static final fun equals-impl0 (II)Z + public fun hashCode ()I + public static fun hashCode-impl (I)I + public fun toString ()Ljava/lang/String; + public static fun toString-impl (I)Ljava/lang/String; + public final synthetic fun unbox-impl ()I +} + +public final class com/huanshankeji/compose/foundation/text/input/KeyboardType$Companion { + public final fun getAscii-BGL2Dk4 ()I + public final fun getDecimal-BGL2Dk4 ()I + public final fun getEmail-BGL2Dk4 ()I + public final fun getNumber-BGL2Dk4 ()I + public final fun getNumberPassword-BGL2Dk4 ()I + public final fun getPassword-BGL2Dk4 ()I + public final fun getPhone-BGL2Dk4 ()I + public final fun getText-BGL2Dk4 ()I + public final fun getUri-BGL2Dk4 ()I +} + +public final class com/huanshankeji/compose/foundation/text/input/KeyboardType_composeUiKt { + public static final fun toPlatformValue-6FDry6U (Lcom/huanshankeji/compose/foundation/text/input/KeyboardType;)I + public static final fun toPlatformValue-awQKiIc (I)I +} + +public final class com/huanshankeji/compose/foundation/text/input/PlatformImeOptions { + public static final field $stable I + public fun (Landroidx/compose/ui/text/input/PlatformImeOptions;)V + public final fun getPlatformValue ()Landroidx/compose/ui/text/input/PlatformImeOptions; +} + +public final class com/huanshankeji/compose/layout/ext/HiddenKt { + public static final fun invisible (Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; + public static final fun reserveSpace (Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/layout/ext/Hidden_composeUiKt { + public static final fun hidden (Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/runtime/DeferredComposableRunner { + public static final field $stable I + public fun ()V + public final fun ComposableRun (Lkotlin/jvm/functions/Function0;Landroidx/compose/runtime/Composer;I)V + public final fun addComposable (Lkotlin/jvm/functions/Function2;)V +} + +public abstract interface class com/huanshankeji/compose/ui/Alignment { + public static final field Companion Lcom/huanshankeji/compose/ui/Alignment$Companion; + public abstract fun getPlatformAlignment ()Landroidx/compose/ui/Alignment; +} + +public final class com/huanshankeji/compose/ui/Alignment$Companion { + public final fun getBottom ()Lcom/huanshankeji/compose/ui/Alignment$Vertical; + public final fun getBottomCenter ()Lcom/huanshankeji/compose/ui/Alignment; + public final fun getBottomEnd ()Lcom/huanshankeji/compose/ui/Alignment; + public final fun getBottomStart ()Lcom/huanshankeji/compose/ui/Alignment; + public final fun getCenter ()Lcom/huanshankeji/compose/ui/Alignment; + public final fun getCenterEnd ()Lcom/huanshankeji/compose/ui/Alignment; + public final fun getCenterHorizontally ()Lcom/huanshankeji/compose/ui/Alignment$Horizontal; + public final fun getCenterStart ()Lcom/huanshankeji/compose/ui/Alignment; + public final fun getCenterVertically ()Lcom/huanshankeji/compose/ui/Alignment$Vertical; + public final fun getEnd ()Lcom/huanshankeji/compose/ui/Alignment$Horizontal; + public final fun getStart ()Lcom/huanshankeji/compose/ui/Alignment$Horizontal; + public final fun getTop ()Lcom/huanshankeji/compose/ui/Alignment$Vertical; + public final fun getTopCenter ()Lcom/huanshankeji/compose/ui/Alignment; + public final fun getTopEnd ()Lcom/huanshankeji/compose/ui/Alignment; + public final fun getTopStart ()Lcom/huanshankeji/compose/ui/Alignment; +} + +public abstract interface class com/huanshankeji/compose/ui/Alignment$Horizontal { + public abstract fun getPlatformHorizontal ()Landroidx/compose/ui/Alignment$Horizontal; +} + +public final class com/huanshankeji/compose/ui/Alignment$Horizontal$Impl : com/huanshankeji/compose/ui/Alignment$Horizontal { + public static final synthetic fun box-impl (Landroidx/compose/ui/Alignment$Horizontal;)Lcom/huanshankeji/compose/ui/Alignment$Horizontal$Impl; + public static fun constructor-impl (Landroidx/compose/ui/Alignment$Horizontal;)Landroidx/compose/ui/Alignment$Horizontal; + public fun equals (Ljava/lang/Object;)Z + public static fun equals-impl (Landroidx/compose/ui/Alignment$Horizontal;Ljava/lang/Object;)Z + public static final fun equals-impl0 (Landroidx/compose/ui/Alignment$Horizontal;Landroidx/compose/ui/Alignment$Horizontal;)Z + public fun getPlatformHorizontal ()Landroidx/compose/ui/Alignment$Horizontal; + public fun hashCode ()I + public static fun hashCode-impl (Landroidx/compose/ui/Alignment$Horizontal;)I + public fun toString ()Ljava/lang/String; + public static fun toString-impl (Landroidx/compose/ui/Alignment$Horizontal;)Ljava/lang/String; + public final synthetic fun unbox-impl ()Landroidx/compose/ui/Alignment$Horizontal; +} + +public final class com/huanshankeji/compose/ui/Alignment$Impl : com/huanshankeji/compose/ui/Alignment { + public static final synthetic fun box-impl (Landroidx/compose/ui/Alignment;)Lcom/huanshankeji/compose/ui/Alignment$Impl; + public static fun constructor-impl (Landroidx/compose/ui/Alignment;)Landroidx/compose/ui/Alignment; + public fun equals (Ljava/lang/Object;)Z + public static fun equals-impl (Landroidx/compose/ui/Alignment;Ljava/lang/Object;)Z + public static final fun equals-impl0 (Landroidx/compose/ui/Alignment;Landroidx/compose/ui/Alignment;)Z + public fun getPlatformAlignment ()Landroidx/compose/ui/Alignment; + public fun hashCode ()I + public static fun hashCode-impl (Landroidx/compose/ui/Alignment;)I + public fun toString ()Ljava/lang/String; + public static fun toString-impl (Landroidx/compose/ui/Alignment;)Ljava/lang/String; + public final synthetic fun unbox-impl ()Landroidx/compose/ui/Alignment; +} + +public abstract interface class com/huanshankeji/compose/ui/Alignment$Vertical { + public abstract fun getPlatformHorizontal ()Landroidx/compose/ui/Alignment$Vertical; +} + +public final class com/huanshankeji/compose/ui/Alignment$Vertical$Impl : com/huanshankeji/compose/ui/Alignment$Vertical { + public static final synthetic fun box-impl (Landroidx/compose/ui/Alignment$Vertical;)Lcom/huanshankeji/compose/ui/Alignment$Vertical$Impl; + public static fun constructor-impl (Landroidx/compose/ui/Alignment$Vertical;)Landroidx/compose/ui/Alignment$Vertical; + public fun equals (Ljava/lang/Object;)Z + public static fun equals-impl (Landroidx/compose/ui/Alignment$Vertical;Ljava/lang/Object;)Z + public static final fun equals-impl0 (Landroidx/compose/ui/Alignment$Vertical;Landroidx/compose/ui/Alignment$Vertical;)Z + public fun getPlatformHorizontal ()Landroidx/compose/ui/Alignment$Vertical; + public fun hashCode ()I + public static fun hashCode-impl (Landroidx/compose/ui/Alignment$Vertical;)I + public fun toString ()Ljava/lang/String; + public static fun toString-impl (Landroidx/compose/ui/Alignment$Vertical;)Ljava/lang/String; + public final synthetic fun unbox-impl ()Landroidx/compose/ui/Alignment$Vertical; +} + +public abstract interface class com/huanshankeji/compose/ui/Modifier { + public static final field Companion Lcom/huanshankeji/compose/ui/Modifier$Companion; + public abstract fun foldIn (Ljava/lang/Object;Lkotlin/jvm/functions/Function2;)Ljava/lang/Object; + public abstract fun getPlatformModifier ()Landroidx/compose/ui/Modifier; + public abstract fun platformModify (Lkotlin/jvm/functions/Function1;)Lcom/huanshankeji/compose/ui/Modifier; + public abstract fun then (Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/ui/Modifier$Companion : com/huanshankeji/compose/ui/Modifier { + public fun foldIn (Ljava/lang/Object;Lkotlin/jvm/functions/Function2;)Ljava/lang/Object; + public fun getPlatformModifier ()Landroidx/compose/ui/Modifier$Companion; + public synthetic fun getPlatformModifier ()Landroidx/compose/ui/Modifier; + public fun platformModify (Lkotlin/jvm/functions/Function1;)Lcom/huanshankeji/compose/ui/Modifier; + public fun then (Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/ui/Modifier$DefaultImpls { + public static fun foldIn (Lcom/huanshankeji/compose/ui/Modifier;Ljava/lang/Object;Lkotlin/jvm/functions/Function2;)Ljava/lang/Object; + public static fun platformModify (Lcom/huanshankeji/compose/ui/Modifier;Lkotlin/jvm/functions/Function1;)Lcom/huanshankeji/compose/ui/Modifier; + public static fun then (Lcom/huanshankeji/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public abstract interface class com/huanshankeji/compose/ui/Modifier$Element : com/huanshankeji/compose/ui/Modifier { + public abstract fun getPlatformElement ()Landroidx/compose/ui/Modifier$Element; +} + +public final class com/huanshankeji/compose/ui/Modifier$Element$DefaultImpls { + public static fun foldIn (Lcom/huanshankeji/compose/ui/Modifier$Element;Ljava/lang/Object;Lkotlin/jvm/functions/Function2;)Ljava/lang/Object; + public static fun platformModify (Lcom/huanshankeji/compose/ui/Modifier$Element;Lkotlin/jvm/functions/Function1;)Lcom/huanshankeji/compose/ui/Modifier; + public static fun then (Lcom/huanshankeji/compose/ui/Modifier$Element;Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/ui/Modifier$Element$Impl : com/huanshankeji/compose/ui/Modifier$Element { + public static final synthetic fun box-impl (Landroidx/compose/ui/Modifier$Element;)Lcom/huanshankeji/compose/ui/Modifier$Element$Impl; + public static fun constructor-impl (Landroidx/compose/ui/Modifier$Element;)Landroidx/compose/ui/Modifier$Element; + public fun equals (Ljava/lang/Object;)Z + public static fun equals-impl (Landroidx/compose/ui/Modifier$Element;Ljava/lang/Object;)Z + public static final fun equals-impl0 (Landroidx/compose/ui/Modifier$Element;Landroidx/compose/ui/Modifier$Element;)Z + public fun foldIn (Ljava/lang/Object;Lkotlin/jvm/functions/Function2;)Ljava/lang/Object; + public static fun foldIn-impl (Landroidx/compose/ui/Modifier$Element;Ljava/lang/Object;Lkotlin/jvm/functions/Function2;)Ljava/lang/Object; + public fun getPlatformElement ()Landroidx/compose/ui/Modifier$Element; + public fun getPlatformModifier ()Landroidx/compose/ui/Modifier$Element; + public synthetic fun getPlatformModifier ()Landroidx/compose/ui/Modifier; + public static fun getPlatformModifier-impl (Landroidx/compose/ui/Modifier$Element;)Landroidx/compose/ui/Modifier$Element; + public fun hashCode ()I + public static fun hashCode-impl (Landroidx/compose/ui/Modifier$Element;)I + public fun platformModify (Lkotlin/jvm/functions/Function1;)Lcom/huanshankeji/compose/ui/Modifier; + public static fun platformModify-impl (Landroidx/compose/ui/Modifier$Element;Lkotlin/jvm/functions/Function1;)Lcom/huanshankeji/compose/ui/Modifier; + public fun then (Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; + public static fun then-impl (Landroidx/compose/ui/Modifier$Element;Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; + public fun toString ()Ljava/lang/String; + public static fun toString-impl (Landroidx/compose/ui/Modifier$Element;)Ljava/lang/String; + public final synthetic fun unbox-impl ()Landroidx/compose/ui/Modifier$Element; +} + +public final class com/huanshankeji/compose/ui/Modifier$Impl : com/huanshankeji/compose/ui/Modifier { + public static final synthetic fun box-impl (Landroidx/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier$Impl; + public static fun constructor-impl (Landroidx/compose/ui/Modifier;)Landroidx/compose/ui/Modifier; + public fun equals (Ljava/lang/Object;)Z + public static fun equals-impl (Landroidx/compose/ui/Modifier;Ljava/lang/Object;)Z + public static final fun equals-impl0 (Landroidx/compose/ui/Modifier;Landroidx/compose/ui/Modifier;)Z + public fun foldIn (Ljava/lang/Object;Lkotlin/jvm/functions/Function2;)Ljava/lang/Object; + public static fun foldIn-impl (Landroidx/compose/ui/Modifier;Ljava/lang/Object;Lkotlin/jvm/functions/Function2;)Ljava/lang/Object; + public fun getPlatformModifier ()Landroidx/compose/ui/Modifier; + public fun hashCode ()I + public static fun hashCode-impl (Landroidx/compose/ui/Modifier;)I + public fun platformModify (Lkotlin/jvm/functions/Function1;)Lcom/huanshankeji/compose/ui/Modifier; + public static fun platformModify-impl (Landroidx/compose/ui/Modifier;Lkotlin/jvm/functions/Function1;)Lcom/huanshankeji/compose/ui/Modifier; + public fun then (Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; + public static fun then-impl (Landroidx/compose/ui/Modifier;Lcom/huanshankeji/compose/ui/Modifier;)Lcom/huanshankeji/compose/ui/Modifier; + public fun toString ()Ljava/lang/String; + public static fun toString-impl (Landroidx/compose/ui/Modifier;)Ljava/lang/String; + public final synthetic fun unbox-impl ()Landroidx/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/ui/draw/Alpha_composeUiKt { + public static final fun alpha (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/ui/draw/Rotate_composeUiKt { + public static final fun rotate (Lcom/huanshankeji/compose/ui/Modifier;F)Lcom/huanshankeji/compose/ui/Modifier; +} + +public final class com/huanshankeji/compose/ui/graphics/Brush { + public static final field $stable I + public fun (Landroidx/compose/ui/graphics/Brush;)V + public final fun getPlatformValue ()Landroidx/compose/ui/graphics/Brush; +} + +public final class com/huanshankeji/compose/ui/graphics/Color { + public static final field $stable I + public static final field Companion Lcom/huanshankeji/compose/ui/graphics/Color$Companion; + public synthetic fun (JLkotlin/jvm/internal/DefaultConstructorMarker;)V + public final fun getPlatformValue-0d7_KjU ()J + public fun toString ()Ljava/lang/String; +} + +public final class com/huanshankeji/compose/ui/graphics/Color$Companion { + public final fun getBlack ()Lcom/huanshankeji/compose/ui/graphics/Color; + public final fun getBlue ()Lcom/huanshankeji/compose/ui/graphics/Color; + public final fun getCyan ()Lcom/huanshankeji/compose/ui/graphics/Color; + public final fun getDarkGray ()Lcom/huanshankeji/compose/ui/graphics/Color; + public final fun getGray ()Lcom/huanshankeji/compose/ui/graphics/Color; + public final fun getGreen ()Lcom/huanshankeji/compose/ui/graphics/Color; + public final fun getLightGray ()Lcom/huanshankeji/compose/ui/graphics/Color; + public final fun getMagenta ()Lcom/huanshankeji/compose/ui/graphics/Color; + public final fun getRed ()Lcom/huanshankeji/compose/ui/graphics/Color; + public final fun getTransparent ()Lcom/huanshankeji/compose/ui/graphics/Color; + public final fun getWhite ()Lcom/huanshankeji/compose/ui/graphics/Color; + public final fun getYellow ()Lcom/huanshankeji/compose/ui/graphics/Color; + public final fun hsl (FFFF)Lcom/huanshankeji/compose/ui/graphics/Color; + public static synthetic fun hsl$default (Lcom/huanshankeji/compose/ui/graphics/Color$Companion;FFFFILjava/lang/Object;)Lcom/huanshankeji/compose/ui/graphics/Color; +} + +public abstract interface class com/huanshankeji/compose/ui/graphics/ColorProducer { + public abstract fun invoke ()Lcom/huanshankeji/compose/ui/graphics/Color; +} + +public final class com/huanshankeji/compose/ui/graphics/Color_composeUiKt { + public static final fun Color (FFFF)Lcom/huanshankeji/compose/ui/graphics/Color; + public static final fun Color (I)Lcom/huanshankeji/compose/ui/graphics/Color; + public static final fun Color (IIII)Lcom/huanshankeji/compose/ui/graphics/Color; + public static final fun Color (J)Lcom/huanshankeji/compose/ui/graphics/Color; + public static synthetic fun Color$default (FFFFILjava/lang/Object;)Lcom/huanshankeji/compose/ui/graphics/Color; + public static synthetic fun Color$default (IIIIILjava/lang/Object;)Lcom/huanshankeji/compose/ui/graphics/Color; + public static final fun luminance (Lcom/huanshankeji/compose/ui/graphics/Color;)F + public static final fun toArgb (Lcom/huanshankeji/compose/ui/graphics/Color;)I + public static final fun toNullablePlatformValue (Lcom/huanshankeji/compose/ui/graphics/ColorProducer;)Landroidx/compose/ui/graphics/ColorProducer; + public static final fun toPlatformValue (Lcom/huanshankeji/compose/ui/graphics/Color;)J + public static final fun toPlatformValue (Lcom/huanshankeji/compose/ui/graphics/ColorProducer;)Landroidx/compose/ui/graphics/ColorProducer; +} + +public abstract class com/huanshankeji/compose/ui/unit/ext/DpOrPercentage { + public static final field $stable I +} + +public final class com/huanshankeji/compose/ui/unit/ext/DpOrPercentage$Dp : com/huanshankeji/compose/ui/unit/ext/DpOrPercentage { + public static final field $stable I + public synthetic fun (FLkotlin/jvm/internal/DefaultConstructorMarker;)V + public final fun getDp-D9Ej5fM ()F +} + +public final class com/huanshankeji/compose/ui/unit/ext/DpOrPercentage$Percentage : com/huanshankeji/compose/ui/unit/ext/DpOrPercentage { + public static final field $stable I + public fun (I)V + public final fun getPercentage ()I +} + diff --git a/compose-multiplatform-common/build.gradle.kts b/common/build.gradle.kts similarity index 95% rename from compose-multiplatform-common/build.gradle.kts rename to common/build.gradle.kts index 91153060..1b37d89f 100644 --- a/compose-multiplatform-common/build.gradle.kts +++ b/common/build.gradle.kts @@ -10,8 +10,8 @@ kotlin { @OptIn(ExperimentalKotlinGradlePluginApi::class) applyDefaultHierarchyTemplate { common { - group("androidxCommon") { - group("androidxCommonExceptAndroid") { + group("composeUi") { + group("composeUiExceptAndroid") { withJvm() group("ios") withWasmJs() @@ -44,7 +44,7 @@ kotlin { implementation("org.jetbrains.compose.annotation-internal:annotation:${DependencyVersions.composeMultiplatform}") } } - androidxCommonMain { + composeUiMain { dependencies { api(compose.foundation) implementation(compose.ui) diff --git a/compose-multiplatform-common/legacy/build.gradle.kts b/common/legacy/build.gradle.kts similarity index 97% rename from compose-multiplatform-common/legacy/build.gradle.kts rename to common/legacy/build.gradle.kts index 88844067..c8d91add 100644 --- a/compose-multiplatform-common/legacy/build.gradle.kts +++ b/common/legacy/build.gradle.kts @@ -10,7 +10,7 @@ kotlin { //compileOnly(compose.foundation) // for KDoc element links only } } - androidxCommonMain { + composeUiMain { dependencies { api(compose.foundation) } diff --git a/compose-multiplatform-common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/BasicText.kt b/common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/BasicText.kt similarity index 100% rename from compose-multiplatform-common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/BasicText.kt rename to common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/BasicText.kt diff --git a/compose-multiplatform-common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/RawText.kt b/common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/RawText.kt similarity index 100% rename from compose-multiplatform-common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/RawText.kt rename to common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/RawText.kt diff --git a/compose-multiplatform-common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/layout/Box.kt b/common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/layout/Box.kt similarity index 100% rename from compose-multiplatform-common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/layout/Box.kt rename to common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/layout/Box.kt diff --git a/compose-multiplatform-common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/layout/Column.kt b/common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/layout/Column.kt similarity index 100% rename from compose-multiplatform-common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/layout/Column.kt rename to common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/layout/Column.kt diff --git a/compose-multiplatform-common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/layout/Row.kt b/common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/layout/Row.kt similarity index 100% rename from compose-multiplatform-common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/layout/Row.kt rename to common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/layout/Row.kt diff --git a/compose-multiplatform-common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/ui/ModifierOrAttrsScope.kt b/common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/ui/ModifierOrAttrsScope.kt similarity index 100% rename from compose-multiplatform-common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/ui/ModifierOrAttrsScope.kt rename to common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/ui/ModifierOrAttrsScope.kt diff --git a/compose-multiplatform-common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/ui/color/Color.kt b/common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/ui/color/Color.kt similarity index 100% rename from compose-multiplatform-common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/ui/color/Color.kt rename to common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/ui/color/Color.kt diff --git a/compose-multiplatform-common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/ui/color/Colors.kt b/common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/ui/color/Colors.kt similarity index 88% rename from compose-multiplatform-common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/ui/color/Colors.kt rename to common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/ui/color/Colors.kt index bfc27795..546d80ae 100644 --- a/compose-multiplatform-common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/ui/color/Colors.kt +++ b/common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/ui/color/Colors.kt @@ -3,7 +3,7 @@ package com.huanshankeji.compose.ui.color expect object Colors { val black: Color val white: Color - val gray : Color + val gray: Color val red: Color val green: Color val blue: Color diff --git a/compose-multiplatform-common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/ui/unit/Sizes.kt b/common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/ui/unit/Sizes.kt similarity index 100% rename from compose-multiplatform-common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/ui/unit/Sizes.kt rename to common/legacy/src/commonMain/kotlin/com/huanshankeji/compose/ui/unit/Sizes.kt diff --git a/compose-multiplatform-common/legacy/src/androidxCommonMain/kotlin/com/huanshankeji/compose/BasicText.kt b/common/legacy/src/composeUiMain/kotlin/com/huanshankeji/compose/BasicText.kt similarity index 100% rename from compose-multiplatform-common/legacy/src/androidxCommonMain/kotlin/com/huanshankeji/compose/BasicText.kt rename to common/legacy/src/composeUiMain/kotlin/com/huanshankeji/compose/BasicText.kt diff --git a/compose-multiplatform-common/legacy/src/androidxCommonMain/kotlin/com/huanshankeji/compose/RawText.kt b/common/legacy/src/composeUiMain/kotlin/com/huanshankeji/compose/RawText.kt similarity index 100% rename from compose-multiplatform-common/legacy/src/androidxCommonMain/kotlin/com/huanshankeji/compose/RawText.kt rename to common/legacy/src/composeUiMain/kotlin/com/huanshankeji/compose/RawText.kt diff --git a/compose-multiplatform-common/legacy/src/androidxCommonMain/kotlin/com/huanshankeji/compose/layout/Box.kt b/common/legacy/src/composeUiMain/kotlin/com/huanshankeji/compose/layout/Box.kt similarity index 100% rename from compose-multiplatform-common/legacy/src/androidxCommonMain/kotlin/com/huanshankeji/compose/layout/Box.kt rename to common/legacy/src/composeUiMain/kotlin/com/huanshankeji/compose/layout/Box.kt diff --git a/compose-multiplatform-common/legacy/src/androidxCommonMain/kotlin/com/huanshankeji/compose/layout/Column.kt b/common/legacy/src/composeUiMain/kotlin/com/huanshankeji/compose/layout/Column.kt similarity index 100% rename from compose-multiplatform-common/legacy/src/androidxCommonMain/kotlin/com/huanshankeji/compose/layout/Column.kt rename to common/legacy/src/composeUiMain/kotlin/com/huanshankeji/compose/layout/Column.kt diff --git a/compose-multiplatform-common/legacy/src/androidxCommonMain/kotlin/com/huanshankeji/compose/layout/Row.kt b/common/legacy/src/composeUiMain/kotlin/com/huanshankeji/compose/layout/Row.kt similarity index 100% rename from compose-multiplatform-common/legacy/src/androidxCommonMain/kotlin/com/huanshankeji/compose/layout/Row.kt rename to common/legacy/src/composeUiMain/kotlin/com/huanshankeji/compose/layout/Row.kt diff --git a/compose-multiplatform-common/legacy/src/androidxCommonMain/kotlin/com/huanshankeji/compose/ui/ModifierOrAttrsScopeJvm.kt b/common/legacy/src/composeUiMain/kotlin/com/huanshankeji/compose/ui/ModifierOrAttrsScopeJvm.kt similarity index 100% rename from compose-multiplatform-common/legacy/src/androidxCommonMain/kotlin/com/huanshankeji/compose/ui/ModifierOrAttrsScopeJvm.kt rename to common/legacy/src/composeUiMain/kotlin/com/huanshankeji/compose/ui/ModifierOrAttrsScopeJvm.kt diff --git a/compose-multiplatform-common/legacy/src/androidxCommonMain/kotlin/com/huanshankeji/compose/ui/color/ColorJvm.kt b/common/legacy/src/composeUiMain/kotlin/com/huanshankeji/compose/ui/color/ColorJvm.kt similarity index 100% rename from compose-multiplatform-common/legacy/src/androidxCommonMain/kotlin/com/huanshankeji/compose/ui/color/ColorJvm.kt rename to common/legacy/src/composeUiMain/kotlin/com/huanshankeji/compose/ui/color/ColorJvm.kt diff --git a/compose-multiplatform-common/legacy/src/androidxCommonMain/kotlin/com/huanshankeji/compose/ui/color/Colors.kt b/common/legacy/src/composeUiMain/kotlin/com/huanshankeji/compose/ui/color/Colors.kt similarity index 100% rename from compose-multiplatform-common/legacy/src/androidxCommonMain/kotlin/com/huanshankeji/compose/ui/color/Colors.kt rename to common/legacy/src/composeUiMain/kotlin/com/huanshankeji/compose/ui/color/Colors.kt diff --git a/compose-multiplatform-common/legacy/src/androidxCommonMain/kotlin/com/huanshankeji/compose/ui/unit/Sizes.kt b/common/legacy/src/composeUiMain/kotlin/com/huanshankeji/compose/ui/unit/Sizes.kt similarity index 100% rename from compose-multiplatform-common/legacy/src/androidxCommonMain/kotlin/com/huanshankeji/compose/ui/unit/Sizes.kt rename to common/legacy/src/composeUiMain/kotlin/com/huanshankeji/compose/ui/unit/Sizes.kt diff --git a/compose-multiplatform-common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/BasicText.kt b/common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/BasicText.kt similarity index 100% rename from compose-multiplatform-common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/BasicText.kt rename to common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/BasicText.kt diff --git a/compose-multiplatform-common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/RawText.kt b/common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/RawText.kt similarity index 100% rename from compose-multiplatform-common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/RawText.kt rename to common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/RawText.kt diff --git a/compose-multiplatform-common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/layout/Box.kt b/common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/layout/Box.kt similarity index 100% rename from compose-multiplatform-common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/layout/Box.kt rename to common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/layout/Box.kt diff --git a/compose-multiplatform-common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/layout/Column.kt b/common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/layout/Column.kt similarity index 100% rename from compose-multiplatform-common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/layout/Column.kt rename to common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/layout/Column.kt diff --git a/compose-multiplatform-common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/layout/Row.kt b/common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/layout/Row.kt similarity index 100% rename from compose-multiplatform-common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/layout/Row.kt rename to common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/layout/Row.kt diff --git a/compose-multiplatform-common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/ui/ModifierOrAttrsScope.kt b/common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/ui/ModifierOrAttrsScope.kt similarity index 100% rename from compose-multiplatform-common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/ui/ModifierOrAttrsScope.kt rename to common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/ui/ModifierOrAttrsScope.kt diff --git a/compose-multiplatform-common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/ui/color/Color.kt b/common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/ui/color/Color.kt similarity index 100% rename from compose-multiplatform-common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/ui/color/Color.kt rename to common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/ui/color/Color.kt diff --git a/compose-multiplatform-common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/ui/color/Colors.kt b/common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/ui/color/Colors.kt similarity index 100% rename from compose-multiplatform-common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/ui/color/Colors.kt rename to common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/ui/color/Colors.kt diff --git a/compose-multiplatform-common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/ui/unit/Sizes.kt b/common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/ui/unit/Sizes.kt similarity index 100% rename from compose-multiplatform-common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/ui/unit/Sizes.kt rename to common/legacy/src/jsMain/kotlin/com/huanshankeji/compose/ui/unit/Sizes.kt diff --git a/compose-multiplatform-common/src/androidMain/kotlin/com/huanshankeji/compose/foundation/OnClick.android.kt b/common/src/androidMain/kotlin/com/huanshankeji/compose/foundation/OnClick.android.kt similarity index 100% rename from compose-multiplatform-common/src/androidMain/kotlin/com/huanshankeji/compose/foundation/OnClick.android.kt rename to common/src/androidMain/kotlin/com/huanshankeji/compose/foundation/OnClick.android.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/Content.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/Content.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/Content.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/Content.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/ExtRecommendedApi.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/ExtRecommendedApi.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/ExtRecommendedApi.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/ExtRecommendedApi.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/ext/LoadingState.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/ext/LoadingState.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/ext/LoadingState.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/ext/LoadingState.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/Background.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/Background.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/Background.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/Background.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/Border.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/Border.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/Border.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/Border.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/BorderStroke.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/BorderStroke.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/BorderStroke.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/BorderStroke.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/ExperimentalFoundationApi.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/ExperimentalFoundationApi.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/ExperimentalFoundationApi.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/ExperimentalFoundationApi.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/OnClick.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/OnClick.kt similarity index 87% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/OnClick.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/OnClick.kt index 68f88dce..1dc27287 100644 --- a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/OnClick.kt +++ b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/OnClick.kt @@ -10,7 +10,7 @@ import com.huanshankeji.compose.ui.Modifier expect fun Modifier.onClick(onClick: () -> Unit): Modifier /** - * Has the interactive effect when clicked on the `androidxCommon` targets. + * Has the interactive effect when clicked on the `composeUi` targets. */ @ExperimentalFoundationApi expect fun Modifier.clickable(onClick: () -> Unit): Modifier diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/Scroll.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/Scroll.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/Scroll.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/Scroll.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/ext/BackgroundAndBorder.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/ext/BackgroundAndBorder.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/ext/BackgroundAndBorder.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/ext/BackgroundAndBorder.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/ext/Border.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/ext/Border.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/ext/Border.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/ext/Border.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/ext/MatchPositionRelativeParentJsOnly.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/ext/MatchPositionRelativeParentJsOnly.kt similarity index 79% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/ext/MatchPositionRelativeParentJsOnly.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/ext/MatchPositionRelativeParentJsOnly.kt index 29f54d15..d53d7a82 100644 --- a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/ext/MatchPositionRelativeParentJsOnly.kt +++ b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/ext/MatchPositionRelativeParentJsOnly.kt @@ -4,7 +4,7 @@ import com.huanshankeji.compose.ui.Modifier /* const val MATCH_POSITION_RELATIVE_PARENT_DEPRECATED_MESSAGE = - "This function's functionality is replaced by `imitateAndroidxLayout`." + "This function's functionality is replaced by `imitateComposeUiLayout`." */ diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Arrangement.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Arrangement.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Arrangement.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Arrangement.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Box.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Box.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Box.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Box.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Column.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Column.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Column.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Column.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Intrinsic.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Intrinsic.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Intrinsic.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Intrinsic.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Padding.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Padding.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Padding.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Padding.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Row.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Row.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Row.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Row.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Size.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Size.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Size.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Size.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Spacer.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Spacer.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Spacer.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/Spacer.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/BoxWithConstraints.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/BoxWithConstraints.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/BoxWithConstraints.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/BoxWithConstraints.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/InnerPadding.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/InnerPadding.kt similarity index 96% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/InnerPadding.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/InnerPadding.kt index e6d640ec..e5eae230 100644 --- a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/InnerPadding.kt +++ b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/InnerPadding.kt @@ -6,7 +6,6 @@ import androidx.compose.ui.unit.dp import com.huanshankeji.compose.foundation.background import com.huanshankeji.compose.foundation.clickable import com.huanshankeji.compose.foundation.layout.PaddingValues -import com.huanshankeji.compose.foundation.layout.padding import com.huanshankeji.compose.ui.Modifier /** diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/OuterPadding.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/OuterPadding.kt similarity index 96% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/OuterPadding.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/OuterPadding.kt index ffcb90f5..196d1b0b 100644 --- a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/OuterPadding.kt +++ b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/OuterPadding.kt @@ -6,7 +6,6 @@ import androidx.compose.ui.unit.dp import com.huanshankeji.compose.foundation.background import com.huanshankeji.compose.foundation.clickable import com.huanshankeji.compose.foundation.layout.PaddingValues -import com.huanshankeji.compose.foundation.layout.padding import com.huanshankeji.compose.ui.Modifier /** diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/Size.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/Size.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/Size.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/Size.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/lazy/LazyDsl.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/lazy/LazyDsl.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/lazy/LazyDsl.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/lazy/LazyDsl.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/lazy/LazyItemScope.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/lazy/LazyItemScope.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/lazy/LazyItemScope.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/lazy/LazyItemScope.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/BasicText.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/BasicText.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/BasicText.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/BasicText.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/KeyboardActions.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/KeyboardActions.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/KeyboardActions.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/KeyboardActions.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/KeyboardOptions.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/KeyboardOptions.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/KeyboardOptions.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/KeyboardOptions.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/ext/Text.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/ext/Text.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/ext/Text.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/ext/Text.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/input/ImeAction.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/input/ImeAction.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/input/ImeAction.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/input/ImeAction.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/input/KeyboardCapitalization.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/input/KeyboardCapitalization.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/input/KeyboardCapitalization.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/input/KeyboardCapitalization.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/input/KeyboardType.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/input/KeyboardType.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/input/KeyboardType.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/input/KeyboardType.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/input/PlatformImeOptions.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/input/PlatformImeOptions.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/input/PlatformImeOptions.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/foundation/text/input/PlatformImeOptions.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/layout/ext/Hidden.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/layout/ext/Hidden.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/layout/ext/Hidden.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/layout/ext/Hidden.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/runtime/DeferredComposableRunner.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/runtime/DeferredComposableRunner.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/runtime/DeferredComposableRunner.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/runtime/DeferredComposableRunner.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/ui/Alignment.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/ui/Alignment.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/ui/Alignment.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/ui/Alignment.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/ui/Modifier.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/ui/Modifier.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/ui/Modifier.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/ui/Modifier.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/ui/draw/Alpha.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/ui/draw/Alpha.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/ui/draw/Alpha.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/ui/draw/Alpha.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/ui/draw/Rotate.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/ui/draw/Rotate.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/ui/draw/Rotate.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/ui/draw/Rotate.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/ui/graphics/Brush.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/ui/graphics/Brush.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/ui/graphics/Brush.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/ui/graphics/Brush.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/ui/graphics/Color.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/ui/graphics/Color.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/ui/graphics/Color.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/ui/graphics/Color.kt diff --git a/compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/ui/unit/ext/DpOrPercentage.kt b/common/src/commonMain/kotlin/com/huanshankeji/compose/ui/unit/ext/DpOrPercentage.kt similarity index 100% rename from compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/ui/unit/ext/DpOrPercentage.kt rename to common/src/commonMain/kotlin/com/huanshankeji/compose/ui/unit/ext/DpOrPercentage.kt diff --git a/compose-multiplatform-common/src/androidxCommonExceptAndroidMain/kotlin/com/huanshankeji/compose/foundation/OnClick.androidxCommonExceptAndroid.kt b/common/src/composeUiExceptAndroidMain/kotlin/com/huanshankeji/compose/foundation/OnClick.composeUiExceptAndroid.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonExceptAndroidMain/kotlin/com/huanshankeji/compose/foundation/OnClick.androidxCommonExceptAndroid.kt rename to common/src/composeUiExceptAndroidMain/kotlin/com/huanshankeji/compose/foundation/OnClick.composeUiExceptAndroid.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/Content.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/Content.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/Content.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/Content.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/Background.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/Background.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/Background.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/Background.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/Border.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/Border.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/Border.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/Border.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/BorderStroke.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/BorderStroke.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/BorderStroke.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/BorderStroke.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/OnClick.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/OnClick.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/OnClick.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/OnClick.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/Scroll.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/Scroll.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/Scroll.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/Scroll.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/ext/BackgroundAndBorder.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/ext/BackgroundAndBorder.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/ext/BackgroundAndBorder.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/ext/BackgroundAndBorder.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/ext/Border.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/ext/Border.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/ext/Border.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/ext/Border.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/ext/MatchPositionRelativeParentJsOnly.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/ext/MatchPositionRelativeParentJsOnly.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/ext/MatchPositionRelativeParentJsOnly.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/ext/MatchPositionRelativeParentJsOnly.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/layout/Arrangement.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/layout/Arrangement.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/layout/Arrangement.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/layout/Arrangement.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/layout/Box.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/layout/Box.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/layout/Box.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/layout/Box.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/layout/Column.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/layout/Column.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/layout/Column.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/layout/Column.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/layout/Intrinsic.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/layout/Intrinsic.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/layout/Intrinsic.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/layout/Intrinsic.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/layout/Padding.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/layout/Padding.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/layout/Padding.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/layout/Padding.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/layout/Row.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/layout/Row.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/layout/Row.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/layout/Row.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/layout/Size.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/layout/Size.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/layout/Size.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/layout/Size.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/layout/Spacer.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/layout/Spacer.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/layout/Spacer.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/layout/Spacer.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/BoxWithConstraints.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/BoxWithConstraints.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/BoxWithConstraints.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/BoxWithConstraints.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/InnerPadding.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/InnerPadding.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/InnerPadding.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/InnerPadding.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/OuterPadding.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/OuterPadding.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/OuterPadding.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/OuterPadding.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/Size.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/Size.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/Size.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/Size.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/lazy/LazyDsl.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/lazy/LazyDsl.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/lazy/LazyDsl.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/lazy/LazyDsl.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/lazy/LazyItemScope.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/lazy/LazyItemScope.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/lazy/LazyItemScope.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/lazy/LazyItemScope.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/text/BasicText.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/text/BasicText.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/text/BasicText.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/text/BasicText.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/text/KeyboardActions.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/text/KeyboardActions.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/text/KeyboardActions.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/text/KeyboardActions.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/text/KeyboardOptions.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/text/KeyboardOptions.composeUi.kt similarity index 95% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/text/KeyboardOptions.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/text/KeyboardOptions.composeUi.kt index 0685efbd..31d14365 100644 --- a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/text/KeyboardOptions.androidxCommon.kt +++ b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/text/KeyboardOptions.composeUi.kt @@ -4,6 +4,7 @@ import com.huanshankeji.compose.foundation.text.input.toPlatformValue import androidx.compose.foundation.text.KeyboardOptions as PlatformKeyboardOptions fun KeyboardOptions.toPlatformValue(): PlatformKeyboardOptions = + // TODO deprecated PlatformKeyboardOptions( capitalization.toPlatformValue(), autoCorrect ?: true, diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/text/ext/Text.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/text/ext/Text.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/text/ext/Text.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/text/ext/Text.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/text/input/ImeAction.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/text/input/ImeAction.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/text/input/ImeAction.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/text/input/ImeAction.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/text/input/KeyboardCapitalization.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/text/input/KeyboardCapitalization.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/text/input/KeyboardCapitalization.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/text/input/KeyboardCapitalization.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/text/input/KeyboardType.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/text/input/KeyboardType.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/text/input/KeyboardType.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/text/input/KeyboardType.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/text/input/PlatformImeOptions.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/text/input/PlatformImeOptions.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/foundation/text/input/PlatformImeOptions.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/foundation/text/input/PlatformImeOptions.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/layout/ext/Hidden.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/layout/ext/Hidden.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/layout/ext/Hidden.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/layout/ext/Hidden.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/ui/Alignment.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/ui/Alignment.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/ui/Alignment.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/ui/Alignment.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/ui/Modifier.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/ui/Modifier.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/ui/Modifier.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/ui/Modifier.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/ui/draw/Alpha.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/ui/draw/Alpha.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/ui/draw/Alpha.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/ui/draw/Alpha.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/ui/draw/Rotate.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/ui/draw/Rotate.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/ui/draw/Rotate.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/ui/draw/Rotate.composeUi.kt diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/ui/graphics/Brush.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/ui/graphics/Brush.composeUi.kt similarity index 75% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/ui/graphics/Brush.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/ui/graphics/Brush.composeUi.kt index be43029e..182b1fe7 100644 --- a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/ui/graphics/Brush.androidxCommon.kt +++ b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/ui/graphics/Brush.composeUi.kt @@ -4,4 +4,4 @@ import androidx.compose.runtime.Immutable import androidx.compose.ui.graphics.Brush as PlatformBrush @Immutable -actual class Brush(val platformValue : PlatformBrush) \ No newline at end of file +actual class Brush(val platformValue: PlatformBrush) \ No newline at end of file diff --git a/compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/ui/graphics/Color.androidxCommon.kt b/common/src/composeUiMain/kotlin/com/huanshankeji/compose/ui/graphics/Color.composeUi.kt similarity index 100% rename from compose-multiplatform-common/src/androidxCommonMain/kotlin/com/huanshankeji/compose/ui/graphics/Color.androidxCommon.kt rename to common/src/composeUiMain/kotlin/com/huanshankeji/compose/ui/graphics/Color.composeUi.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/browser/Browser.kt b/common/src/jsMain/kotlin/com/huanshankeji/browser/Browser.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/browser/Browser.kt rename to common/src/jsMain/kotlin/com/huanshankeji/browser/Browser.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/ContentDescription.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/ContentDescription.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/ContentDescription.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/ContentDescription.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/Background.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/Background.js.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/Background.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/Background.js.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/Border.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/Border.js.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/Border.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/Border.js.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/OnClick.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/OnClick.js.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/OnClick.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/OnClick.js.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/Scroll.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/Scroll.js.kt similarity index 84% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/Scroll.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/Scroll.js.kt index f5ed946d..6ba45ff1 100644 --- a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/Scroll.js.kt +++ b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/Scroll.js.kt @@ -10,7 +10,7 @@ import com.huanshankeji.compose.foundation.layout.ext.KobwebBox import com.huanshankeji.compose.ui.Alignment import com.huanshankeji.compose.ui.Modifier import com.huanshankeji.compose.ui.PlatformModifier -import com.huanshankeji.kobweb.compose.ui.modifiers.imitateAndroidxLayout +import com.huanshankeji.kobweb.compose.ui.modifiers.imitateComposeUiLayout import com.varabyte.kobweb.compose.ui.styleModifier fun PlatformModifier.verticalScroll() = @@ -19,8 +19,9 @@ fun PlatformModifier.verticalScroll() = fun PlatformModifier.horizontalScroll() = styleModifier { horizontalScroll() } -val imitateAndroidxLayoutVerticalScrollPlatformModifier = PlatformModifier.imitateAndroidxLayout().verticalScroll() -val imitateAndroidxLayoutHorizontalScrollPlatformModifier = PlatformModifier.imitateAndroidxLayout().horizontalScroll() +val imitateComposeUiLayoutVerticalScrollPlatformModifier = PlatformModifier.imitateComposeUiLayout().verticalScroll() +val imitateComposeUiLayoutHorizontalScrollPlatformModifier = + PlatformModifier.imitateComposeUiLayout().horizontalScroll() @Composable diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/ext/BackgroundAndBorder.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/ext/BackgroundAndBorder.js.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/ext/BackgroundAndBorder.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/ext/BackgroundAndBorder.js.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/ext/Border.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/ext/Border.js.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/ext/Border.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/ext/Border.js.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/ext/MatchPositionRelativeParentJsDom.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/ext/MatchPositionRelativeParentJsDom.js.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/ext/MatchPositionRelativeParentJsDom.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/ext/MatchPositionRelativeParentJsDom.js.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/ext/css/Scroll.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/ext/css/Scroll.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/ext/css/Scroll.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/ext/css/Scroll.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Arrangement.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Arrangement.js.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Arrangement.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Arrangement.js.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Box.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Box.js.kt similarity index 82% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Box.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Box.js.kt index d4181be6..7e2881dd 100644 --- a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Box.js.kt +++ b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Box.js.kt @@ -8,7 +8,7 @@ import com.huanshankeji.compose.ui.Alignment import com.huanshankeji.compose.ui.Modifier import com.huanshankeji.compose.ui.PlatformModifier import com.huanshankeji.compose.ui.toCommonModifier -import com.huanshankeji.kobweb.compose.ui.modifiers.imitateAndroidxLayout +import com.huanshankeji.kobweb.compose.ui.modifiers.imitateComposeUiLayout import com.varabyte.kobweb.compose.foundation.layout.LayoutScopeMarker import com.varabyte.kobweb.compose.foundation.layout.BoxScope as PlatformBoxScope @@ -19,14 +19,14 @@ actual fun Box( content: @Composable BoxScope.() -> Unit ) = KobwebBox( - PlatformModifier.imitateAndroidxLayout().toCommonModifier().then(modifier), + PlatformModifier.imitateComposeUiLayout().toCommonModifier().then(modifier), contentAlignment, content ) @Composable actual fun Box(modifier: Modifier) = - KobwebBox(PlatformModifier.imitateAndroidxLayout().then(modifier.platformModifier)) + KobwebBox(PlatformModifier.imitateComposeUiLayout().then(modifier.platformModifier)) @LayoutScopeMarker @Immutable diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Column.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Column.js.kt similarity index 89% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Column.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Column.js.kt index 41846b1a..7e70f89c 100644 --- a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Column.js.kt +++ b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Column.js.kt @@ -6,7 +6,7 @@ import androidx.compose.runtime.Stable import com.huanshankeji.compose.ui.Alignment import com.huanshankeji.compose.ui.Modifier import com.huanshankeji.compose.ui.PlatformModifier -import com.huanshankeji.kobweb.compose.ui.modifiers.imitateAndroidxLayout +import com.huanshankeji.kobweb.compose.ui.modifiers.imitateComposeUiLayout import com.varabyte.kobweb.compose.foundation.layout.LayoutScopeMarker @Composable @@ -19,7 +19,7 @@ actual fun Column( AddKobwebComposeStyleSheet() com.varabyte.kobweb.compose.foundation.layout.Column( PlatformModifier - .imitateAndroidxLayout() // "fit-content" is added to make it consistent with the `androidx` one + .imitateComposeUiLayout() // "fit-content" is added to make it consistent with the `androidx` one .stylesFrom(verticalArrangement) .then(modifier.platformModifier), verticalArrangement.platformValue, diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/FlexBasis.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/FlexBasis.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/FlexBasis.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/FlexBasis.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Intrinsic.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Intrinsic.js.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Intrinsic.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Intrinsic.js.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/KobwebCompose.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/KobwebCompose.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/KobwebCompose.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/KobwebCompose.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Padding.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Padding.js.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Padding.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Padding.js.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Row.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Row.js.kt similarity index 93% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Row.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Row.js.kt index f13c5e4c..57e17b5a 100644 --- a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Row.js.kt +++ b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Row.js.kt @@ -6,7 +6,7 @@ import androidx.compose.runtime.Stable import com.huanshankeji.compose.ui.Alignment import com.huanshankeji.compose.ui.Modifier import com.huanshankeji.compose.ui.PlatformModifier -import com.huanshankeji.kobweb.compose.ui.modifiers.imitateAndroidxLayout +import com.huanshankeji.kobweb.compose.ui.modifiers.imitateComposeUiLayout import com.varabyte.kobweb.compose.foundation.layout.LayoutScopeMarker @Composable @@ -19,7 +19,7 @@ actual fun Row( AddKobwebComposeStyleSheet() com.varabyte.kobweb.compose.foundation.layout.Row( PlatformModifier - .imitateAndroidxLayout() + .imitateComposeUiLayout() .stylesFrom(horizontalArrangement) .then(modifier.platformModifier), horizontalArrangement.platformValue, diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Size.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Size.js.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Size.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Size.js.kt diff --git a/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Spacer.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Spacer.js.kt new file mode 100644 index 00000000..c38ba52b --- /dev/null +++ b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Spacer.js.kt @@ -0,0 +1,9 @@ +package com.huanshankeji.compose.foundation.layout + +import androidx.compose.runtime.Composable +import com.huanshankeji.compose.foundation.layout.ext.DivBox +import com.huanshankeji.compose.ui.Modifier + +@Composable +actual fun Spacer(modifier: Modifier) = + DivBox(modifier.platformModifier) diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/Box.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/Box.js.kt similarity index 93% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/Box.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/Box.js.kt index 4609c153..21dd179d 100644 --- a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/Box.js.kt +++ b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/Box.js.kt @@ -5,7 +5,7 @@ import com.huanshankeji.compose.foundation.layout.AddKobwebComposeStyleSheet import com.huanshankeji.compose.foundation.layout.BoxScope import com.huanshankeji.compose.ui.CommonModifier import com.huanshankeji.compose.ui.PlatformModifier -import com.huanshankeji.kobweb.compose.ui.modifiers.imitateAndroidxLayout +import com.huanshankeji.kobweb.compose.ui.modifiers.imitateComposeUiLayout import com.varabyte.kobweb.compose.dom.ElementRefScope import com.varabyte.kobweb.compose.foundation.layout.Box import com.varabyte.kobweb.compose.ui.toAttrs @@ -19,7 +19,7 @@ import com.varabyte.kobweb.compose.foundation.layout.BoxScope as PlatformBoxScop import com.varabyte.kobweb.compose.ui.Alignment as PlatformAlignment /** - * Delegates to [Box] without [com.varabyte.kobweb.compose.ui.Modifier.imitateAndroidxLayout]. + * Delegates to [Box] without [com.varabyte.kobweb.compose.ui.Modifier.imitateComposeUiLayout]. */ @Composable fun KobwebBox( @@ -43,7 +43,7 @@ fun KobwebBox( } /** - * Delegates to [Div] without [com.varabyte.kobweb.compose.ui.Modifier.imitateAndroidxLayout]. + * Delegates to [Div] without [com.varabyte.kobweb.compose.ui.Modifier.imitateComposeUiLayout]. */ @Composable fun DivBox( diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/BoxWithConstraints.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/BoxWithConstraints.js.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/BoxWithConstraints.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/BoxWithConstraints.js.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/InnerPadding.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/InnerPadding.js.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/InnerPadding.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/InnerPadding.js.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/OuterPadding.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/OuterPadding.js.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/OuterPadding.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/OuterPadding.js.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/Size.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/Size.js.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/Size.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/ext/Size.js.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/lazy/LazyDsl.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/lazy/LazyDsl.js.kt similarity index 86% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/lazy/LazyDsl.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/lazy/LazyDsl.js.kt index 83413b51..cd332f79 100644 --- a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/lazy/LazyDsl.js.kt +++ b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/lazy/LazyDsl.js.kt @@ -1,8 +1,8 @@ package com.huanshankeji.compose.foundation.lazy import androidx.compose.runtime.Composable -import com.huanshankeji.compose.foundation.imitateAndroidxLayoutHorizontalScrollPlatformModifier -import com.huanshankeji.compose.foundation.imitateAndroidxLayoutVerticalScrollPlatformModifier +import com.huanshankeji.compose.foundation.imitateComposeUiLayoutHorizontalScrollPlatformModifier +import com.huanshankeji.compose.foundation.imitateComposeUiLayoutVerticalScrollPlatformModifier import com.huanshankeji.compose.foundation.layout.* import com.huanshankeji.compose.runtime.DeferredComposableRunner import com.huanshankeji.compose.ui.Alignment @@ -63,7 +63,7 @@ actual fun LazyRow( content: LazyListScope.() -> Unit ) = Row( - commonLazyModifier(imitateAndroidxLayoutHorizontalScrollPlatformModifier, contentPadding, modifier), + commonLazyModifier(imitateComposeUiLayoutHorizontalScrollPlatformModifier, contentPadding, modifier), horizontalArrangement, verticalAlignment ) { @@ -80,7 +80,7 @@ actual fun LazyColumn( content: LazyListScope.() -> Unit ) = Column( - commonLazyModifier(imitateAndroidxLayoutVerticalScrollPlatformModifier, contentPadding, modifier), + commonLazyModifier(imitateComposeUiLayoutVerticalScrollPlatformModifier, contentPadding, modifier), verticalArrangement, horizontalAlignment ) { diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/lazy/LazyItemScope.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/lazy/LazyItemScope.js.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/lazy/LazyItemScope.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/lazy/LazyItemScope.js.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/text/BasicText.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/text/BasicText.js.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/text/BasicText.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/text/BasicText.js.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/text/KeyboardOptions.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/text/KeyboardOptions.js.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/text/KeyboardOptions.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/text/KeyboardOptions.js.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/text/KeyboardOptionsAndKeyboardActions.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/text/KeyboardOptionsAndKeyboardActions.js.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/text/KeyboardOptionsAndKeyboardActions.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/text/KeyboardOptionsAndKeyboardActions.js.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/text/ext/Text.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/text/ext/Text.js.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/text/ext/Text.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/text/ext/Text.js.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/text/input/KeyboardCapitalization.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/text/input/KeyboardCapitalization.js.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/text/input/KeyboardCapitalization.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/text/input/KeyboardCapitalization.js.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/text/input/KeyboardType.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/text/input/KeyboardType.js.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/text/input/KeyboardType.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/text/input/KeyboardType.js.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/text/input/PlatformImeOptions.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/text/input/PlatformImeOptions.js.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/text/input/PlatformImeOptions.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/text/input/PlatformImeOptions.js.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/layout/ext/Hidden.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/layout/ext/Hidden.js.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/layout/ext/Hidden.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/layout/ext/Hidden.js.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/ui/Alignment.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/ui/Alignment.js.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/ui/Alignment.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/ui/Alignment.js.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/ui/Modifier.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/ui/Modifier.js.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/ui/Modifier.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/ui/Modifier.js.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/ui/draw/Alpha.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/ui/draw/Alpha.js.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/ui/draw/Alpha.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/ui/draw/Alpha.js.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/ui/draw/Rotate.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/ui/draw/Rotate.js.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/ui/draw/Rotate.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/ui/draw/Rotate.js.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/ui/graphics/Brush.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/ui/graphics/Brush.js.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/ui/graphics/Brush.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/ui/graphics/Brush.js.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/ui/graphics/Color.js.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/ui/graphics/Color.js.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/ui/graphics/Color.js.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/ui/graphics/Color.js.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/ui/unit/Dp.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/ui/unit/Dp.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/ui/unit/Dp.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/ui/unit/Dp.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/ui/unit/Percent.kt b/common/src/jsMain/kotlin/com/huanshankeji/compose/ui/unit/Percent.kt similarity index 100% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/ui/unit/Percent.kt rename to common/src/jsMain/kotlin/com/huanshankeji/compose/ui/unit/Percent.kt diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/kobweb/compose/ui/modifiers/Layout.kt b/common/src/jsMain/kotlin/com/huanshankeji/kobweb/compose/ui/modifiers/Layout.kt similarity index 96% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/kobweb/compose/ui/modifiers/Layout.kt rename to common/src/jsMain/kotlin/com/huanshankeji/kobweb/compose/ui/modifiers/Layout.kt index f449cb50..d10a0b2a 100644 --- a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/kobweb/compose/ui/modifiers/Layout.kt +++ b/common/src/jsMain/kotlin/com/huanshankeji/kobweb/compose/ui/modifiers/Layout.kt @@ -19,7 +19,7 @@ import org.jetbrains.compose.web.css.maxWidth * and make the `overflow-*` CSS property / the `*Scroll` modifier work better on JS DOM. * See https://developer.android.com/develop/ui/compose/layouts/constraints-modifiers for more details. */ -fun Modifier.imitateAndroidxLayout() = +fun Modifier.imitateComposeUiLayout() = styleModifier { width(Width.FitContent) height(Height.FitContent) diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/kobweb/compose/ui/modifiers/Size.kt b/common/src/jsMain/kotlin/com/huanshankeji/kobweb/compose/ui/modifiers/Size.kt similarity index 86% rename from compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/kobweb/compose/ui/modifiers/Size.kt rename to common/src/jsMain/kotlin/com/huanshankeji/kobweb/compose/ui/modifiers/Size.kt index 3b05c880..47c97610 100644 --- a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/kobweb/compose/ui/modifiers/Size.kt +++ b/common/src/jsMain/kotlin/com/huanshankeji/kobweb/compose/ui/modifiers/Size.kt @@ -15,7 +15,7 @@ fun Modifier.size(width: Width, height: Height): Modifier = //TODO consider removing and inlining this /** - * Consider using [Modifier.imitateAndroidxLayout] instead when adding this for a layout. + * Consider using [Modifier.imitateComposeUiLayout] instead when adding this for a layout. */ fun Modifier.sizeFitContent() = size(Width.FitContent, Height.FitContent) diff --git a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Spacer.js.kt b/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Spacer.js.kt deleted file mode 100644 index 2d2377cb..00000000 --- a/compose-multiplatform-common/src/jsMain/kotlin/com/huanshankeji/compose/foundation/layout/Spacer.js.kt +++ /dev/null @@ -1,13 +0,0 @@ -package com.huanshankeji.compose.foundation.layout - -import androidx.compose.runtime.Composable -import com.huanshankeji.compose.ui.Modifier -import com.huanshankeji.compose.ui.toAttrs -import org.jetbrains.compose.web.dom.Div - -@Composable -actual fun Spacer(modifier: Modifier) { - AddKobwebComposeStyleSheet() - Div(attrs = modifier.toAttrs { classes("kobweb-spacer") }) - //com.varabyte.kobweb.compose.foundation.layout.Spacer() // use this when `Modifier` is supported -} diff --git a/demo/build.gradle.kts b/demo/build.gradle.kts index 227ec7e9..b1699b89 100644 --- a/demo/build.gradle.kts +++ b/demo/build.gradle.kts @@ -1,4 +1,5 @@ -import org.jetbrains.kotlin.gradle.targets.js.dsl.ExperimentalWasmDsl +import com.huanshankeji.cpnProject +import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl plugins { `common-conventions` @@ -46,9 +47,9 @@ kotlin { commonMain { dependencies { implementation(compose.runtime) - implementation(project(":compose-multiplatform-material2")) - implementation(project(":compose-multiplatform-material3")) - implementation(project(":compose-multiplatform-navigation")) + implementation(cpnProject(project, ":material2")) + implementation(cpnProject(project, ":material3")) + implementation(cpnProject(project, ":navigation")) /* see https://github.com/JetBrains/compose-multiplatform-core/blob/476d43b99a27696d12ef087e8028d90789645ba7/compose/ui/ui/build.gradle#L54 and https://github.com/JetBrains/compose-multiplatform-core/blob/381796b5e682653aa1fa53e6bcf0441d06b873f8/compose/runtime/runtime/build.gradle#L124 @@ -56,6 +57,11 @@ kotlin { implementation(commonDependencies.kotlinx.coroutines.core()) } } + composeUiMain { + dependencies { + implementation(compose.ui) + } + } jvmMain { dependencies { implementation(compose.desktop.currentOs) @@ -63,23 +69,10 @@ kotlin { } androidMain { dependencies { - // TODO consider putting this in `androidxCommonMain` - implementation(compose.ui) - implementation(commonDependencies.androidx.activity.compose()) implementation(commonDependencies.androidx.compose.ui.module("tooling-preview")) } } - iosMain { - dependencies { - implementation(compose.ui) - } - } - wasmJsMain { - dependencies { - implementation(compose.ui) - } - } jsMain { dependencies { implementation(compose.html.core) @@ -119,3 +112,19 @@ android { debugImplementation(compose.uiTooling) } } + +val jsBrowserDistribution by tasks.getting(Copy::class) +val wasmJsBrowserDistribution by tasks.getting(Copy::class) + +tasks.register("sideBySideBrowserDistribution") { + group = "kotlin browser" + + into(layout.buildDirectory.dir("dist/sideBySide/productionExecutable")) + from(jsBrowserDistribution) { + into("js-dom") + } + from(wasmJsBrowserDistribution) { + into("wasm-js-canvas") + } + from(projectDir.resolve("side-by-side-site")) +} diff --git a/demo/iosApp/Configuration/Config.xcconfig b/demo/iosApp/Configuration/Config.xcconfig index 50982e62..3155fca9 100644 --- a/demo/iosApp/Configuration/Config.xcconfig +++ b/demo/iosApp/Configuration/Config.xcconfig @@ -1,3 +1,3 @@ TEAM_ID= BUNDLE_ID=com.huanshankeji.compose.material.demo -APP_NAME=compose-multiplatform-material-demo \ No newline at end of file +APP_NAME=compose-multiplatform-html-unified-demo \ No newline at end of file diff --git a/demo/iosApp/iosApp.xcodeproj/project.pbxproj b/demo/iosApp/iosApp.xcodeproj/project.pbxproj index 8831f318..6c2151c2 100644 --- a/demo/iosApp/iosApp.xcodeproj/project.pbxproj +++ b/demo/iosApp/iosApp.xcodeproj/project.pbxproj @@ -17,7 +17,7 @@ 058557BA273AAA24004C7B11 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 058557D8273AAEEB004C7B11 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = ""; }; 2152FB032600AC8F00CF470E /* iOSApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = iOSApp.swift; sourceTree = ""; }; - 7555FF7B242A565900829871 /* compose-multiplatform-material-demo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = compose-multiplatform-material-demo.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 7555FF7B242A565900829871 /* compose-multiplatform-html-unified-demo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = compose-multiplatform-html-unified-demo.app; sourceTree = BUILT_PRODUCTS_DIR; }; 7555FF82242A565900829871 /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = ""; }; 7555FF8C242A565B00829871 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; AB3632DC29227652001CCB65 /* Config.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Config.xcconfig; sourceTree = ""; }; @@ -62,7 +62,7 @@ 7555FF7C242A565900829871 /* Products */ = { isa = PBXGroup; children = ( - 7555FF7B242A565900829871 /* compose-multiplatform-material-demo.app */, + 7555FF7B242A565900829871 /* compose-multiplatform-html-unified-demo.app */, ); name = Products; sourceTree = ""; @@ -107,7 +107,7 @@ packageProductDependencies = ( ); productName = iosApp; - productReference = 7555FF7B242A565900829871 /* compose-multiplatform-material-demo.app */; + productReference = 7555FF7B242A565900829871 /* compose-multiplatform-html-unified-demo.app */; productType = "com.apple.product-type.application"; }; /* End PBXNativeTarget section */ @@ -175,7 +175,7 @@ ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "if [ \"YES\" = \"$OVERRIDE_KOTLIN_BUILD_IDE_SUPPORTED\" ]; then\n echo \"Skipping Gradle build task invocation due to OVERRIDE_KOTLIN_BUILD_IDE_SUPPORTED environment variable set to \\\"YES\\\"\"\n exit 0\nfi\ncd \"$SRCROOT/../..\"\n./gradlew :demo:embedAndSignAppleFrameworkForXcode\n"; + shellScript = "if [ \"YES\" = \"$OVERRIDE_KOTLIN_BUILD_IDE_SUPPORTED\" ]; then\n echo \"Skipping Gradle build task invocation due to OVERRIDE_KOTLIN_BUILD_IDE_SUPPORTED environment variable set to \\\"YES\\\"\"\n exit 0\nfi\ncd \"$SRCROOT/../..\"\n./gradlew :compose-multiplatform-html-unified-demo:embedAndSignAppleFrameworkForXcode\n"; }; /* End PBXShellScriptBuildPhase section */ diff --git a/demo/side-by-side-site/index.html b/demo/side-by-side-site/index.html new file mode 100644 index 00000000..39009e7a --- /dev/null +++ b/demo/side-by-side-site/index.html @@ -0,0 +1,45 @@ + + + + + + + Side by side - Compose Multiplatform HTML Unified demo + + + + + + + + + \ No newline at end of file diff --git a/demo/src/androidMain/res/values/strings.xml b/demo/src/androidMain/res/values/strings.xml index 37366de7..6be07cb4 100644 --- a/demo/src/androidMain/res/values/strings.xml +++ b/demo/src/androidMain/res/values/strings.xml @@ -1,3 +1,3 @@ - Compose Multiplatform Material demo + Compose Multiplatform HTML Unified demo \ No newline at end of file diff --git a/demo/src/commonMain/kotlin/com/huanshankeji/compose/material/demo/Common.kt b/demo/src/commonMain/kotlin/com/huanshankeji/compose/material/demo/Common.kt index 2b211d32..786fa6e9 100644 --- a/demo/src/commonMain/kotlin/com/huanshankeji/compose/material/demo/Common.kt +++ b/demo/src/commonMain/kotlin/com/huanshankeji/compose/material/demo/Common.kt @@ -7,6 +7,7 @@ import com.huanshankeji.compose.foundation.ext.outerBorder import com.huanshankeji.compose.foundation.ext.roundedCornerBackgroundAndOuterBorder import com.huanshankeji.compose.foundation.ext.roundedCornerOuterBorder import com.huanshankeji.compose.foundation.layout.* +import com.huanshankeji.compose.foundation.layout.ext.outerPadding import com.huanshankeji.compose.foundation.lazy.LazyColumn import com.huanshankeji.compose.foundation.lazy.LazyListScope import com.huanshankeji.compose.foundation.lazy.LazyRow @@ -26,7 +27,7 @@ fun Common(/*modifier: Modifier = Modifier*/) { @Composable fun ColorBox(color: Color) = - Box(Modifier.padding(8.dp).background(color).size(40.dp)) + Box(Modifier.outerPadding(8.dp).background(color).size(40.dp)) val halfGreen = Color(0, 0x80, 0x00) @@ -81,5 +82,17 @@ fun Common(/*modifier: Modifier = Modifier*/) { BasicText("shown text") BasicText("hidden text", Modifier.hidden()) BasicText("shown text") + + // Background color doesn't work in a `Spacer` modifier. + Column { + BasicText("above spacer") + Spacer(Modifier.height(32.dp)) + BasicText("below spacer") + } + Row { + BasicText("left to spacer") + Spacer(Modifier.width(32.dp)) + BasicText("right to spacer") + } } } \ No newline at end of file diff --git a/demo/src/commonMain/kotlin/com/huanshankeji/compose/material/demo/Material2.kt b/demo/src/commonMain/kotlin/com/huanshankeji/compose/material/demo/Material2.kt index 88902f9f..fd0c4097 100644 --- a/demo/src/commonMain/kotlin/com/huanshankeji/compose/material/demo/Material2.kt +++ b/demo/src/commonMain/kotlin/com/huanshankeji/compose/material/demo/Material2.kt @@ -5,6 +5,7 @@ import androidx.compose.ui.unit.dp import com.huanshankeji.compose.foundation.VerticalScrollBox import com.huanshankeji.compose.foundation.background import com.huanshankeji.compose.foundation.layout.* +import com.huanshankeji.compose.foundation.layout.ext.outerPadding import com.huanshankeji.compose.foundation.text.KeyboardActions import com.huanshankeji.compose.foundation.text.KeyboardOptions import com.huanshankeji.compose.foundation.text.input.ImeAction @@ -31,7 +32,7 @@ fun Material2(/*modifier: Modifier = Modifier*/) { val snackbarHostState = remember { SnackbarHostState() } // It seems the modifier can't be set on `TopAppBarScaffold` or a box wrapping it TopAppBarScaffold({ - Text("Compose Multiplatform Material demo") + Text("Compose Multiplatform HTML Unified demo") }, navigationIcon = { MaterialIconNavButton({}, icon = Icons.Default.Menu, contentDescription = "menu") }, actions = { @@ -73,7 +74,7 @@ fun Material2(/*modifier: Modifier = Modifier*/) { IconButton(onClick, icon = Icons.Default.Add, contentDescription = "increment count") } - val listModifier = Modifier.padding(16.dp).height(listSize) + val listModifier = Modifier.outerPadding(16.dp).height(listSize) List(listModifier) { item { Text("Ungrouped item") diff --git a/demo/src/jsMain/resources/index.html b/demo/src/jsMain/resources/index.html index 4687f55c..448ec17c 100644 --- a/demo/src/jsMain/resources/index.html +++ b/demo/src/jsMain/resources/index.html @@ -4,7 +4,7 @@ - Compose Multiplatform Material demo + JS DOM - Compose Multiplatform HTML Unified demo