diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6994e84..0de5262 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,7 @@ jobs: uses: gradle/actions/setup-gradle@v4 - name: Build package - run: ./gradlew build + run: ./gradlew build --stacktrace - name: Publish release run: ./gradlew publishAndReleaseToMavenCentral --no-configuration-cache @@ -33,4 +33,4 @@ jobs: ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.MAVEN_CENTRAL_PASSWORD }} ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.GPG_KEY }} ORG_GRADLE_PROJECT_signingInMemoryKeyId: ${{ secrets.GPG_KEY_ID }} - ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.GPG_KEY_PASSWORD }} + ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.GPG_KEY_PASSWORD }} \ No newline at end of file diff --git a/demo-common/src/jsMain/kotlin/com/seanproctor/datatable/demo/Scrollbar.js.kt b/demo-common/src/jsMain/kotlin/com/seanproctor/datatable/demo/Scrollbar.js.kt new file mode 100644 index 0000000..38f9249 --- /dev/null +++ b/demo-common/src/jsMain/kotlin/com/seanproctor/datatable/demo/Scrollbar.js.kt @@ -0,0 +1,11 @@ +package com.seanproctor.datatable.demo + +import androidx.compose.runtime.Composable +import androidx.compose.ui.Modifier +import com.seanproctor.datatable.DataTableScrollState + +@Composable +actual fun VerticalScrollbar(scrollState: DataTableScrollState, modifier: Modifier) {} + +@Composable +actual fun HorizontalScrollbar(scrollState: DataTableScrollState, modifier: Modifier) {} \ No newline at end of file