diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0d7c8fd6..99df5c77 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,9 +19,9 @@ on: repository_dispatch: types: [test] push: - branches: ['*'] + branches-ignore: ['gh-pages', 'googlemaps-bot/update_gh_pages'] pull_request: - branches: ['*'] + branches-ignore: ['gh-pages'] workflow_dispatch: jobs: diff --git a/README.md b/README.md deleted file mode 100644 index 781919ce..00000000 --- a/README.md +++ /dev/null @@ -1,137 +0,0 @@ -![Tests](https://github.com/googlemaps/android-maps-compose/actions/workflows/test.yml/badge.svg) -![Stable](https://img.shields.io/badge/stability-stable-green) -[![Discord](https://img.shields.io/discord/676948200904589322)][Discord channel] -![Apache-2.0](https://img.shields.io/badge/license-Apache-blue) - -Maps Compose 🗺 -=============== - -## Description -This repository contains [Jetpack Compose][jetpack-compose] components for the Maps SDK for Android. - -## Requirements -* Kotlin-enabled project -* Jetpack Compose-enabled project -* An [API key][api-key] -* API level 21+ - -## Usage - -Adding a map to your app looks like the following: - -```kotlin -val singapore = LatLng(1.35, 103.87) -GoogleMap( - modifier = Modifier.fillMaxSize(), - googleMapOptionsFactory = { - GoogleMapOptions().camera(CameraPosition.fromLatLngZoom(singapore, 10f)) - } -) -``` - -### Creating and configuring a map - -Configuring the map can be done either by passing a `GoogleMapOptions` instance -to initialize the map, or by passing a `MapProperties` object into the `GoogleMap` -composable. - -```kotlin -// Initialize map by providing a googleMapOptionsFactory -GoogleMap( - googleMapOptionsFactory = { - GoogleMapOptions().mapId("MyMapId") - } -) - -// ...or set properties using MapProperties which you can use to recompose the map -var mapProperties by remember { - mutableStateOf( - MapProperties(maxZoomPreference = 10f, minZoomPreference = 5f) - ) -} -Box(Modifier.fillMaxSize()) { - GoogleMap(mapProperties = mapProperties) - Button(onClick = { - mapProperties = mapProperties.copy( - isBuildingEnabled = !mapProperties.isBuildingEnabled - ) - }) { - Text(text = "Toggle isBuildingEnabled") - } -} -``` - -### Controlling the map's camera - -Camera changes and updates can be observed and controlled via `CameraPositionState`. - -```kotlin -val singapore = LatLng(1.35, 103.87) -val cameraPositionState: CameraPositionState = rememberCameraPositionState( - position = CameraPosition.fromLatLngZoom(singapore, 11f) -) -Box(Modifier.fillMaxSize()) { - GoogleMap(cameraPositionState = cameraPositionState) - Button(onClick = { - // Move the camera to a new zoom level - cameraPositionState.move(CameraUpdateFactory.zoomIn()) - }) { - Text(text = "Zoom In") - } -} -``` - -### Drawing on a map - -Drawing on the map, such as adding markers, can be accomplished by adding child -composable elements to the content of the `GoogleMap`. - -```kotlin -GoogleMap( - //... -) { - Marker(position = LatLng(-34, 151), title = "Marker in Sydney") - Marker(position = LatLng(35.66, 139.6), title = "Marker in Tokyo") -} -``` - -## Sample App - -This repository includes a [sample app](app). - -To run it, you'll have to: -1. Get a [Maps API key][api-key] -1. Add an entry in `local.properties` that looks like `MAPS_API_KEY=YOUR_KEY` -1. Build and run - -## Installation - -```groovy -dependencies { - implementation 'com.google.maps.android:maps-compose:1.0.0' - - // Make sure to also include the latest version of the Maps SDK for Android - implementation 'com.google.android.gms:play-services-maps:18.0.2' -} -``` - -## Documentation - -You can learn more about all the extensions provided by this library by reading the [reference documents][Javadoc]. - -## Support - -Encounter an issue while using this library? - -If you find a bug or have a feature request, please [file an issue]. -Or, if you'd like to contribute, send us a [pull request] and refer to our [code of conduct]. - -You can also reach us on our [Discord channel]. - -[api-key]: https://developers.google.com/maps/documentation/android-sdk/get-api-key -[Discord channel]: https://discord.gg/hYsWbmk -[Javadoc]: https://googlemaps.github.io/android-maps-compose -[code of conduct]: CODE_OF_CONDUCT.md -[file an issue]: https://github.com/googlemaps/android-maps-compose/issues/new/choose -[pull request]: https://github.com/googlemaps/android-maps-compose/compare -[jetpack-compose]: https://developer.android.com/jetpack/compose diff --git a/app/.gitignore b/app/.gitignore deleted file mode 100644 index 42afabfd..00000000 --- a/app/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/build \ No newline at end of file diff --git a/app/build.gradle b/app/build.gradle deleted file mode 100644 index 661bf9bb..00000000 --- a/app/build.gradle +++ /dev/null @@ -1,58 +0,0 @@ -plugins { - id 'com.android.application' - id 'kotlin-android' - id 'com.google.android.libraries.mapsplatform.secrets-gradle-plugin' -} - -android { - compileSdk 31 - - defaultConfig { - applicationId "com.google.maps.android.compose" - minSdk 21 - targetSdk 31 - versionCode 1 - versionName "1.0" - - testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" - } - - compileOptions { - sourceCompatibility JavaVersion.VERSION_1_8 - targetCompatibility JavaVersion.VERSION_1_8 - } - - composeOptions { - kotlinCompilerExtensionVersion '1.1.0-rc01' - } - - buildFeatures { - buildConfig false - compose true - } - - kotlinOptions { - jvmTarget = '1.8' - } -} - -dependencies { - implementation project(':maps-compose') - implementation 'androidx.activity:activity-compose:1.4.0' - implementation "androidx.compose.foundation:foundation:1.1.0-rc01" - implementation "androidx.compose.material:material:1.1.0-rc01" - implementation 'androidx.appcompat:appcompat:1.4.0' - implementation 'androidx.core:core-ktx:1.7.0' - implementation 'com.google.android.gms:play-services-maps:18.0.2' - implementation 'com.google.android.material:material:1.4.0' - implementation 'com.google.maps.android:maps-ktx:3.3.0' - implementation "androidx.core:core-ktx:1.7.0" - implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" -} - -secrets { - // To add your Maps API key to this project: - // 1. Add this line to your local.properties file, where YOUR_API_KEY is your API key: - // MAPS_API_KEY=YOUR_API_KEY - defaultPropertiesFileName 'local.defaults.properties' -} \ No newline at end of file diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro deleted file mode 100644 index 481bb434..00000000 --- a/app/proguard-rules.pro +++ /dev/null @@ -1,21 +0,0 @@ -# Add project specific ProGuard rules here. -# You can control the set of applied configuration files using the -# proguardFiles setting in build.gradle. -# -# For more details, see -# http://developer.android.com/guide/developing/tools/proguard.html - -# If your project uses WebView with JS, uncomment the following -# and specify the fully qualified class name to the JavaScript interface -# class: -#-keepclassmembers class fqcn.of.javascript.interface.for.webview { -# public *; -#} - -# Uncomment this to preserve the line number information for -# debugging stack traces. -#-keepattributes SourceFile,LineNumberTable - -# If you keep the line number information, uncomment this to -# hide the original source file name. -#-renamesourcefileattribute SourceFile \ No newline at end of file diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml deleted file mode 100644 index b2d82c36..00000000 --- a/app/src/main/AndroidManifest.xml +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/java/com/google/maps/android/compose/MapSampleActivity.kt b/app/src/main/java/com/google/maps/android/compose/MapSampleActivity.kt deleted file mode 100644 index d6c4e69d..00000000 --- a/app/src/main/java/com/google/maps/android/compose/MapSampleActivity.kt +++ /dev/null @@ -1,254 +0,0 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -package com.google.maps.android.compose - -import android.os.Bundle -import android.util.Log -import androidx.activity.ComponentActivity -import androidx.activity.compose.setContent -import androidx.compose.animation.AnimatedVisibility -import androidx.compose.animation.EnterTransition -import androidx.compose.animation.fadeOut -import androidx.compose.foundation.ScrollState -import androidx.compose.foundation.background -import androidx.compose.foundation.horizontalScroll -import androidx.compose.foundation.layout.Arrangement -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.Column -import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.fillMaxSize -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.layout.wrapContentSize -import androidx.compose.material.Button -import androidx.compose.material.ButtonDefaults -import androidx.compose.material.CircularProgressIndicator -import androidx.compose.material.MaterialTheme -import androidx.compose.material.Switch -import androidx.compose.material.Text -import androidx.compose.runtime.Composable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.rememberCoroutineScope -import androidx.compose.runtime.setValue -import androidx.compose.ui.Modifier -import androidx.compose.ui.unit.dp -import com.google.android.gms.maps.CameraUpdateFactory -import com.google.android.gms.maps.GoogleMapOptions -import com.google.android.gms.maps.model.CameraPosition -import com.google.android.gms.maps.model.LatLng -import kotlinx.coroutines.launch - -private const val TAG = "MapSampleActivity" - -class MapSampleActivity : ComponentActivity() { - - override fun onCreate(savedInstanceState: Bundle?) { - super.onCreate(savedInstanceState) - setContent { - var isMapLoaded by remember { mutableStateOf(false) } - - Box(Modifier.fillMaxSize()) { - GoogleMapView( - modifier = Modifier.matchParentSize(), - onMapLoaded = { - isMapLoaded = true - } - ) - if (!isMapLoaded) { - AnimatedVisibility( - modifier = Modifier - .matchParentSize(), - visible = !isMapLoaded, - enter = EnterTransition.None, - exit = fadeOut() - ) { - CircularProgressIndicator( - modifier = Modifier.background(MaterialTheme.colors.background) - .wrapContentSize() - ) - } - } - } - } - } -} - -@Composable -private fun GoogleMapView(modifier: Modifier, onMapLoaded: () -> Unit) { - val singapore = LatLng(1.35, 103.87) - // Observing and controlling the camera's state can be done with a CameraPositionState - val cameraPositionState = rememberCameraPositionState { - position = CameraPosition.fromLatLngZoom(singapore, 11f) - } - - var mapProperties by remember { - mutableStateOf(MapProperties(mapType = MapType.NORMAL)) - } - var uiSettings by remember { mutableStateOf(MapUiSettings(compassEnabled = false)) } - var shouldAnimateZoom by remember { mutableStateOf(true) } - var ticker by remember { mutableStateOf(0) } - - GoogleMap( - modifier = modifier, - cameraPositionState = cameraPositionState, - properties = mapProperties, - uiSettings = uiSettings, - onMapLoaded = onMapLoaded, - googleMapOptionsFactory = { - GoogleMapOptions().camera(CameraPosition.fromLatLngZoom(singapore, 11f)) - }, - onPOIClick = { - Log.d(TAG, "POI clicked: ${it.name}") - } - ) { - // Drawing on the map is accomplished with a child-based API - Marker( - position = singapore, - title = "Zoom in has been tapped $ticker times.", - onClick = { - println("${it.title} was clicked") - false - } - ) - Circle( - center = singapore, - fillColor = MaterialTheme.colors.secondary, - strokeColor = MaterialTheme.colors.secondaryVariant, - radius = 1000.0, - ) - } - - Column { - MapTypeControls(onMapTypeClick = { - Log.d("GoogleMap", "Selected map type $it") - mapProperties = mapProperties.copy(mapType = it) - }) - val coroutineScope = rememberCoroutineScope() - ZoomControls( - shouldAnimateZoom, - uiSettings.zoomControlsEnabled, - onZoomOut = { - if (shouldAnimateZoom) { - coroutineScope.launch { - cameraPositionState.animate(CameraUpdateFactory.zoomOut()) - } - } else { - cameraPositionState.move(CameraUpdateFactory.zoomOut()) - } - }, - onZoomIn = { - if (shouldAnimateZoom) { - coroutineScope.launch { - cameraPositionState.animate(CameraUpdateFactory.zoomIn()) - } - } else { - cameraPositionState.move(CameraUpdateFactory.zoomIn()) - } - ticker++ - }, - onCameraAnimationCheckedChange = { - shouldAnimateZoom = it - }, - onZoomControlsCheckedChange = { - uiSettings = uiSettings.copy(zoomControlsEnabled = it) - } - ) - DebugView(cameraPositionState) - } -} - -@Composable -private fun MapTypeControls( - onMapTypeClick: (MapType) -> Unit -) { - Row( - Modifier - .fillMaxWidth() - .horizontalScroll(state = ScrollState(0)), - horizontalArrangement = Arrangement.Center - ) { - MapType.values().forEach { - MapTypeButton(type = it) { onMapTypeClick(it) } - } - } -} - -@Composable -private fun MapTypeButton(type: MapType, onClick: () -> Unit) { - Button( - modifier = Modifier.padding(4.dp), - colors = ButtonDefaults.buttonColors( - backgroundColor = MaterialTheme.colors.onPrimary, - contentColor = MaterialTheme.colors.primary - ), - onClick = onClick - ) { - Text(text = type.toString(), style = MaterialTheme.typography.body1) - } -} - -@Composable -private fun ZoomControls( - isCameraAnimationChecked: Boolean, - isZoomControlsEnabledChecked: Boolean, - onZoomOut: () -> Unit, - onZoomIn: () -> Unit, - onCameraAnimationCheckedChange: (Boolean) -> Unit, - onZoomControlsCheckedChange: (Boolean) -> Unit, -) { - Row(Modifier.fillMaxWidth(), horizontalArrangement = Arrangement.Center) { - MapButton("-", onClick = { onZoomOut() }) - MapButton("+", onClick = { onZoomIn() }) - Column(verticalArrangement = Arrangement.Center) { - Row(horizontalArrangement = Arrangement.Center) { - Text(text = "Camera Animations On?") - Switch(isCameraAnimationChecked, onCheckedChange = onCameraAnimationCheckedChange) - } - Row(horizontalArrangement = Arrangement.Center) { - Text(text = "Zoom Controls On?") - Switch(isZoomControlsEnabledChecked, onCheckedChange = onZoomControlsCheckedChange) - } - } - } -} - -@Composable -private fun MapButton(text: String, onClick: () -> Unit) { - Button( - modifier = Modifier.padding(8.dp), - colors = ButtonDefaults.buttonColors( - backgroundColor = MaterialTheme.colors.onPrimary, - contentColor = MaterialTheme.colors.primary - ), - onClick = onClick - ) { - Text(text = text, style = MaterialTheme.typography.h5) - } -} - -@Composable -private fun DebugView(cameraPositionState: CameraPositionState) { - Column( - Modifier - .fillMaxWidth(), - verticalArrangement = Arrangement.Center - ) { - val moving = if (cameraPositionState.isMoving) "moving" else "not moving" - Text(text = "Camera is $moving") - Text(text = "Camera position is ${cameraPositionState.position}") - } -} \ No newline at end of file diff --git a/app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/app/src/main/res/drawable-v24/ic_launcher_foreground.xml deleted file mode 100644 index 23d642e3..00000000 --- a/app/src/main/res/drawable-v24/ic_launcher_foreground.xml +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/drawable/ic_launcher_background.xml b/app/src/main/res/drawable/ic_launcher_background.xml deleted file mode 100644 index 02ba3a87..00000000 --- a/app/src/main/res/drawable/ic_launcher_background.xml +++ /dev/null @@ -1,186 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher.webp b/app/src/main/res/mipmap-hdpi/ic_launcher.webp deleted file mode 100644 index c209e78e..00000000 Binary files a/app/src/main/res/mipmap-hdpi/ic_launcher.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp deleted file mode 100644 index b2dfe3d1..00000000 Binary files a/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher.webp b/app/src/main/res/mipmap-mdpi/ic_launcher.webp deleted file mode 100644 index 4f0f1d64..00000000 Binary files a/app/src/main/res/mipmap-mdpi/ic_launcher.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp deleted file mode 100644 index 62b611da..00000000 Binary files a/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher.webp deleted file mode 100644 index 948a3070..00000000 Binary files a/app/src/main/res/mipmap-xhdpi/ic_launcher.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp deleted file mode 100644 index 1b9a6956..00000000 Binary files a/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp deleted file mode 100644 index 28d4b77f..00000000 Binary files a/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp deleted file mode 100644 index 9287f508..00000000 Binary files a/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp deleted file mode 100644 index aa7d6427..00000000 Binary files a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp deleted file mode 100644 index 9126ae37..00000000 Binary files a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp and /dev/null differ diff --git a/app/src/main/res/values-night/themes.xml b/app/src/main/res/values-night/themes.xml deleted file mode 100644 index afa5f961..00000000 --- a/app/src/main/res/values-night/themes.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml deleted file mode 100644 index a455e4cc..00000000 --- a/app/src/main/res/values/colors.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - #FFBB86FC - #FF6200EE - #FF3700B3 - #FF03DAC5 - #FF018786 - #FF000000 - #FFFFFFFF - \ No newline at end of file diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml deleted file mode 100644 index d0561733..00000000 --- a/app/src/main/res/values/themes.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/build-logic/convention/build/classes/kotlin/main/DokkaConventionPlugin.class b/build-logic/convention/build/classes/kotlin/main/DokkaConventionPlugin.class new file mode 100644 index 00000000..723bf4f8 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/DokkaConventionPlugin.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/Dokka_convention_gradle$2$1$1.class b/build-logic/convention/build/classes/kotlin/main/Dokka_convention_gradle$2$1$1.class new file mode 100644 index 00000000..92ae6106 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/Dokka_convention_gradle$2$1$1.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/Dokka_convention_gradle$2$1.class b/build-logic/convention/build/classes/kotlin/main/Dokka_convention_gradle$2$1.class new file mode 100644 index 00000000..03d8587b Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/Dokka_convention_gradle$2$1.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/Dokka_convention_gradle$2.class b/build-logic/convention/build/classes/kotlin/main/Dokka_convention_gradle$2.class new file mode 100644 index 00000000..481bf333 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/Dokka_convention_gradle$2.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/Dokka_convention_gradle.class b/build-logic/convention/build/classes/kotlin/main/Dokka_convention_gradle.class new file mode 100644 index 00000000..8c539a88 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/Dokka_convention_gradle.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/META-INF/convention.kotlin_module b/build-logic/convention/build/classes/kotlin/main/META-INF/convention.kotlin_module new file mode 100644 index 00000000..3aa63618 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/META-INF/convention.kotlin_module differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureJacoco$$inlined$configure$1.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureJacoco$$inlined$configure$1.class new file mode 100644 index 00000000..02e0e93e Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureJacoco$$inlined$configure$1.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureJacoco$$inlined$configure$2.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureJacoco$$inlined$configure$2.class new file mode 100644 index 00000000..b32d380d Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureJacoco$$inlined$configure$2.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureJacoco$1.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureJacoco$1.class new file mode 100644 index 00000000..bd9d3dc3 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureJacoco$1.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureJacoco$2$1.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureJacoco$2$1.class new file mode 100644 index 00000000..ede88756 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureJacoco$2$1.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureJacoco$2.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureJacoco$2.class new file mode 100644 index 00000000..37d67336 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureJacoco$2.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$$inlined$configure$1.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$$inlined$configure$1.class new file mode 100644 index 00000000..58b5ec61 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$$inlined$configure$1.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$$inlined$configure$2.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$$inlined$configure$2.class new file mode 100644 index 00000000..c1269d62 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$$inlined$configure$2.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$1$1$1.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$1$1$1.class new file mode 100644 index 00000000..e34e28fa Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$1$1$1.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$1$1.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$1$1.class new file mode 100644 index 00000000..93bc3e41 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$1$1.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$1.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$1.class new file mode 100644 index 00000000..f4c05670 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$1.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1$1$1.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1$1$1.class new file mode 100644 index 00000000..21214ea8 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1$1$1.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1$1$2$1.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1$1$2$1.class new file mode 100644 index 00000000..bca47813 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1$1$2$1.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1$1$2$2$1.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1$1$2$2$1.class new file mode 100644 index 00000000..3bb50ee1 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1$1$2$2$1.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1$1$2$2.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1$1$2$2.class new file mode 100644 index 00000000..e31eaa7b Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1$1$2$2.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1$1$2$3.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1$1$2$3.class new file mode 100644 index 00000000..f1ee22c2 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1$1$2$3.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1$1$2$4$1.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1$1$2$4$1.class new file mode 100644 index 00000000..d1bc7314 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1$1$2$4$1.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1$1$2$4.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1$1$2$4.class new file mode 100644 index 00000000..68b6caa0 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1$1$2$4.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1$1$2.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1$1$2.class new file mode 100644 index 00000000..86c3f352 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1$1$2.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1$1.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1$1.class new file mode 100644 index 00000000..7c841667 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1$1.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1$inlined$sam$i$org_gradle_api_Action$0.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1$inlined$sam$i$org_gradle_api_Action$0.class new file mode 100644 index 00000000..4e9a7659 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1$inlined$sam$i$org_gradle_api_Action$0.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1.class new file mode 100644 index 00000000..0d17431e Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$1.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$2$1$1.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$2$1$1.class new file mode 100644 index 00000000..912935ec Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$2$1$1.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$2$1.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$2$1.class new file mode 100644 index 00000000..d98e9a33 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$2$1.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$2.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$2.class new file mode 100644 index 00000000..562fbddf Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2$2.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2.class new file mode 100644 index 00000000..75684c9e Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configurePublishing$2.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureSigning$$inlined$configure$1.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureSigning$$inlined$configure$1.class new file mode 100644 index 00000000..cb108c6e Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureSigning$$inlined$configure$1.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureSigning$$inlined$configure$2.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureSigning$$inlined$configure$2.class new file mode 100644 index 00000000..3a74de3f Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureSigning$$inlined$configure$2.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureSigning$1$invoke$$inlined$getByType$1.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureSigning$1$invoke$$inlined$getByType$1.class new file mode 100644 index 00000000..c0a1560e Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureSigning$1$invoke$$inlined$getByType$1.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureSigning$1.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureSigning$1.class new file mode 100644 index 00000000..1d6bc6b9 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureSigning$1.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureVanniktechPublishing$$inlined$configure$1.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureVanniktechPublishing$$inlined$configure$1.class new file mode 100644 index 00000000..8476f1f0 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureVanniktechPublishing$$inlined$configure$1.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureVanniktechPublishing$1$1$1$1.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureVanniktechPublishing$1$1$1$1.class new file mode 100644 index 00000000..eae9a485 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureVanniktechPublishing$1$1$1$1.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureVanniktechPublishing$1$1$1.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureVanniktechPublishing$1$1$1.class new file mode 100644 index 00000000..c9fa5129 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureVanniktechPublishing$1$1$1.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureVanniktechPublishing$1$1$2.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureVanniktechPublishing$1$1$2.class new file mode 100644 index 00000000..d48ad141 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureVanniktechPublishing$1$1$2.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureVanniktechPublishing$1$1$3$1.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureVanniktechPublishing$1$1$3$1.class new file mode 100644 index 00000000..557ee411 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureVanniktechPublishing$1$1$3$1.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureVanniktechPublishing$1$1$3.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureVanniktechPublishing$1$1$3.class new file mode 100644 index 00000000..5ec11c4c Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureVanniktechPublishing$1$1$3.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureVanniktechPublishing$1$1$4.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureVanniktechPublishing$1$1$4.class new file mode 100644 index 00000000..f6fdcd03 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureVanniktechPublishing$1$1$4.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureVanniktechPublishing$1$1.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureVanniktechPublishing$1$1.class new file mode 100644 index 00000000..8ab7dfa8 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureVanniktechPublishing$1$1.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureVanniktechPublishing$1.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureVanniktechPublishing$1.class new file mode 100644 index 00000000..0bebeb33 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$configureVanniktechPublishing$1.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$inlined$sam$i$org_gradle_api_Action$0.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$inlined$sam$i$org_gradle_api_Action$0.class new file mode 100644 index 00000000..f9d40ff7 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin$inlined$sam$i$org_gradle_api_Action$0.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin.class b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin.class new file mode 100644 index 00000000..c00f3b57 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/PublishingConventionPlugin.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors1814at3803w63ms3j2ncdoy9fKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors1814at3803w63ms3j2ncdoy9fKt.class new file mode 100644 index 00000000..f3c1afed Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors1814at3803w63ms3j2ncdoy9fKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors2g5epxeyye0j2zlp62h6aad2oKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors2g5epxeyye0j2zlp62h6aad2oKt.class new file mode 100644 index 00000000..c6ae1192 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors2g5epxeyye0j2zlp62h6aad2oKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors2hflg4pq6ysjvpe100g593qqhKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors2hflg4pq6ysjvpe100g593qqhKt.class new file mode 100644 index 00000000..537daaa7 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors2hflg4pq6ysjvpe100g593qqhKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors2vo6c1usfsp64lst1fwxi58r4Kt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors2vo6c1usfsp64lst1fwxi58r4Kt.class new file mode 100644 index 00000000..e9c2ff77 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors2vo6c1usfsp64lst1fwxi58r4Kt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors2y3qmtkmk3qb3zvtsnb7mkugkKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors2y3qmtkmk3qb3zvtsnb7mkugkKt.class new file mode 100644 index 00000000..6e546b7c Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors2y3qmtkmk3qb3zvtsnb7mkugkKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors3dd7y6706u2lw819mkt4rv4dyKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors3dd7y6706u2lw819mkt4rv4dyKt.class new file mode 100644 index 00000000..375baf13 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors3dd7y6706u2lw819mkt4rv4dyKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors3jq7xcpp8zxjmu9rvj51zeuwbKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors3jq7xcpp8zxjmu9rvj51zeuwbKt.class new file mode 100644 index 00000000..97e682b7 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors3jq7xcpp8zxjmu9rvj51zeuwbKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors3mldokxe3pyw73ldvkbyeufmoKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors3mldokxe3pyw73ldvkbyeufmoKt.class new file mode 100644 index 00000000..19799438 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors3mldokxe3pyw73ldvkbyeufmoKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors4n4k4ran1jpeh9mjt2hsoix1iKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors4n4k4ran1jpeh9mjt2hsoix1iKt.class new file mode 100644 index 00000000..e1dab989 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors4n4k4ran1jpeh9mjt2hsoix1iKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors4qehku0p9fscm3xeaddworifcKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors4qehku0p9fscm3xeaddworifcKt.class new file mode 100644 index 00000000..9a2e6550 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors4qehku0p9fscm3xeaddworifcKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors4vbe3oshuuh0o2qfcq786o8yrKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors4vbe3oshuuh0o2qfcq786o8yrKt.class new file mode 100644 index 00000000..8bc24167 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors4vbe3oshuuh0o2qfcq786o8yrKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors4xsvbsv0xr5dr62eja7ywms6fKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors4xsvbsv0xr5dr62eja7ywms6fKt.class new file mode 100644 index 00000000..11a76182 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors4xsvbsv0xr5dr62eja7ywms6fKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors52142jolsw9ujy2r4wxctyesaKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors52142jolsw9ujy2r4wxctyesaKt.class new file mode 100644 index 00000000..710fbd0e Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors52142jolsw9ujy2r4wxctyesaKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors5ukftyrov2ugrcqabxjbq4v2kKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors5ukftyrov2ugrcqabxjbq4v2kKt.class new file mode 100644 index 00000000..b93a16e3 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors5ukftyrov2ugrcqabxjbq4v2kKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors5vhacbtmdqy9eg1sasbu9lbkyKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors5vhacbtmdqy9eg1sasbu9lbkyKt.class new file mode 100644 index 00000000..92a1dbd1 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors5vhacbtmdqy9eg1sasbu9lbkyKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors6r039ogynh58bb2g79ui5zt4kKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors6r039ogynh58bb2g79ui5zt4kKt.class new file mode 100644 index 00000000..bb4aec6d Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors6r039ogynh58bb2g79ui5zt4kKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors6x8s2idksogzdbuwvu6dxo1o6Kt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors6x8s2idksogzdbuwvu6dxo1o6Kt.class new file mode 100644 index 00000000..bfb07699 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors6x8s2idksogzdbuwvu6dxo1o6Kt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors6xttpwxm3fux0j1z2ovyzk1e1Kt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors6xttpwxm3fux0j1z2ovyzk1e1Kt.class new file mode 100644 index 00000000..ec1af193 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors6xttpwxm3fux0j1z2ovyzk1e1Kt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors7gif3hautczufvtshcf1ele2sKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors7gif3hautczufvtshcf1ele2sKt.class new file mode 100644 index 00000000..56577418 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors7gif3hautczufvtshcf1ele2sKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors7gx2xdszh6z9cgkxga0icti10Kt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors7gx2xdszh6z9cgkxga0icti10Kt.class new file mode 100644 index 00000000..29de9c18 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors7gx2xdszh6z9cgkxga0icti10Kt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors7xaxf8ag12a3tnppopibl3txtKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors7xaxf8ag12a3tnppopibl3txtKt.class new file mode 100644 index 00000000..111d196c Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors7xaxf8ag12a3tnppopibl3txtKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors8fo9q5jnh37fvf1s6vap80de7Kt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors8fo9q5jnh37fvf1s6vap80de7Kt.class new file mode 100644 index 00000000..91ca3b21 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors8fo9q5jnh37fvf1s6vap80de7Kt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors8omrm7xh0qzd35kclf8p20sz5Kt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors8omrm7xh0qzd35kclf8p20sz5Kt.class new file mode 100644 index 00000000..4c4b364b Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors8omrm7xh0qzd35kclf8p20sz5Kt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors91giltb9degs64cxv7c2gprgfKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors91giltb9degs64cxv7c2gprgfKt.class new file mode 100644 index 00000000..9a58c08e Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors91giltb9degs64cxv7c2gprgfKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors9388c8jd15p9nvwfpy4rcem1zKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors9388c8jd15p9nvwfpy4rcem1zKt.class new file mode 100644 index 00000000..45e957c5 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors9388c8jd15p9nvwfpy4rcem1zKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors9tta56tlj7j7pbo2zpo3u1i94Kt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors9tta56tlj7j7pbo2zpo3u1i94Kt.class new file mode 100644 index 00000000..49bed80e Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors9tta56tlj7j7pbo2zpo3u1i94Kt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsa23p7zp0eqocg7i8w5hxad7qxKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsa23p7zp0eqocg7i8w5hxad7qxKt.class new file mode 100644 index 00000000..c13b2ec3 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsa23p7zp0eqocg7i8w5hxad7qxKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsa2xjchdp9azrjvz0ylrst54dvKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsa2xjchdp9azrjvz0ylrst54dvKt.class new file mode 100644 index 00000000..f51bb462 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsa2xjchdp9azrjvz0ylrst54dvKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsaaoi935rzdzsicplwm1rxjuvlKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsaaoi935rzdzsicplwm1rxjuvlKt.class new file mode 100644 index 00000000..fda13c7f Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsaaoi935rzdzsicplwm1rxjuvlKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsabhfixk6x58cm7148lht7qm2vKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsabhfixk6x58cm7148lht7qm2vKt.class new file mode 100644 index 00000000..3ce1d7cb Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsabhfixk6x58cm7148lht7qm2vKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsba7gbh6l3xhj2qhxae5mepgqkKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsba7gbh6l3xhj2qhxae5mepgqkKt.class new file mode 100644 index 00000000..b1da7ba7 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsba7gbh6l3xhj2qhxae5mepgqkKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsbfy893843kdpxu0oqzv79pgfqKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsbfy893843kdpxu0oqzv79pgfqKt.class new file mode 100644 index 00000000..98930488 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsbfy893843kdpxu0oqzv79pgfqKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsbinuh2dmy82szfgqwl4ef9ib0Kt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsbinuh2dmy82szfgqwl4ef9ib0Kt.class new file mode 100644 index 00000000..839b12b1 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsbinuh2dmy82szfgqwl4ef9ib0Kt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsbmk3bn05bcc8zv39xwiuucwkKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsbmk3bn05bcc8zv39xwiuucwkKt.class new file mode 100644 index 00000000..2e219f81 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsbmk3bn05bcc8zv39xwiuucwkKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsboaiyk2c11hn81v6lro5w55zjKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsboaiyk2c11hn81v6lro5w55zjKt.class new file mode 100644 index 00000000..ca8cfbbe Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsboaiyk2c11hn81v6lro5w55zjKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsbtzn0h95cvhh00v9pbr08w1tlKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsbtzn0h95cvhh00v9pbr08w1tlKt.class new file mode 100644 index 00000000..2b46da32 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsbtzn0h95cvhh00v9pbr08w1tlKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsbu4celzmx94h5ebu8epruan0bKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsbu4celzmx94h5ebu8epruan0bKt.class new file mode 100644 index 00000000..6e75b3c8 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsbu4celzmx94h5ebu8epruan0bKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorscjoex2b9cji424ewwlcg2drw3Kt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorscjoex2b9cji424ewwlcg2drw3Kt.class new file mode 100644 index 00000000..cfcb88be Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorscjoex2b9cji424ewwlcg2drw3Kt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsckfe7zcr5kxodmj4duluab5cgKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsckfe7zcr5kxodmj4duluab5cgKt.class new file mode 100644 index 00000000..d669dd13 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsckfe7zcr5kxodmj4duluab5cgKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorse0rscgy78j45y2tgmzrkyb74Kt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorse0rscgy78j45y2tgmzrkyb74Kt.class new file mode 100644 index 00000000..801335a5 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorse0rscgy78j45y2tgmzrkyb74Kt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorse1drgqizlg1dwbloekvznld39Kt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorse1drgqizlg1dwbloekvznld39Kt.class new file mode 100644 index 00000000..7961014f Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorse1drgqizlg1dwbloekvznld39Kt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorse1l2mc0naige81sgqfz2gt8xiKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorse1l2mc0naige81sgqfz2gt8xiKt.class new file mode 100644 index 00000000..4a868e12 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorse1l2mc0naige81sgqfz2gt8xiKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorse30jynzcca29n6vk74f0ywqhgKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorse30jynzcca29n6vk74f0ywqhgKt.class new file mode 100644 index 00000000..679a424f Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorse30jynzcca29n6vk74f0ywqhgKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsefaf4qyddh684d3vhn1r8m4c8Kt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsefaf4qyddh684d3vhn1r8m4c8Kt.class new file mode 100644 index 00000000..72d9b2ef Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsefaf4qyddh684d3vhn1r8m4c8Kt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorserp86ynvx2my9x9u8cy3e97k6Kt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorserp86ynvx2my9x9u8cy3e97k6Kt.class new file mode 100644 index 00000000..d7e4420a Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorserp86ynvx2my9x9u8cy3e97k6Kt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsexiottiqdoq5rm4qirwgv19flKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsexiottiqdoq5rm4qirwgv19flKt.class new file mode 100644 index 00000000..fea117bf Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsexiottiqdoq5rm4qirwgv19flKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorswg2hwbe40b7k8y0ip4rm248cKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorswg2hwbe40b7k8y0ip4rm248cKt.class new file mode 100644 index 00000000..46f82b2c Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorswg2hwbe40b7k8y0ip4rm248cKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsyrppczo9fber4pjocukkrmc6Kt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsyrppczo9fber4pjocukkrmc6Kt.class new file mode 100644 index 00000000..458e6d10 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsyrppczo9fber4pjocukkrmc6Kt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class new file mode 100644 index 00000000..f89f3e4b Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaConfigurationAccessorsKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaConfigurationAccessorsKt.class new file mode 100644 index 00000000..579a903d Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaConfigurationAccessorsKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaGfmPluginConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaGfmPluginConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class new file mode 100644 index 00000000..3bcc079b Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaGfmPluginConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaGfmPluginConfigurationAccessorsKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaGfmPluginConfigurationAccessorsKt.class new file mode 100644 index 00000000..7ebfbb8c Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaGfmPluginConfigurationAccessorsKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaGfmRuntimeConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaGfmRuntimeConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class new file mode 100644 index 00000000..f534db3d Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaGfmRuntimeConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaGfmRuntimeConfigurationAccessorsKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaGfmRuntimeConfigurationAccessorsKt.class new file mode 100644 index 00000000..37cbe647 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaGfmRuntimeConfigurationAccessorsKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlGeneratorRuntimeConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlGeneratorRuntimeConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class new file mode 100644 index 00000000..d391d831 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlGeneratorRuntimeConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlGeneratorRuntimeConfigurationAccessorsKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlGeneratorRuntimeConfigurationAccessorsKt.class new file mode 100644 index 00000000..a1893d9c Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlGeneratorRuntimeConfigurationAccessorsKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlGeneratorRuntimeResolver_internalConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlGeneratorRuntimeResolver_internalConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class new file mode 100644 index 00000000..222c0e37 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlGeneratorRuntimeResolver_internalConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlGeneratorRuntimeResolver_internalConfigurationAccessorsKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlGeneratorRuntimeResolver_internalConfigurationAccessorsKt.class new file mode 100644 index 00000000..0df3ad98 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlGeneratorRuntimeResolver_internalConfigurationAccessorsKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlModuleOutputDirectoriesConsumable_internalConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlModuleOutputDirectoriesConsumable_internalConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class new file mode 100644 index 00000000..a831a05e Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlModuleOutputDirectoriesConsumable_internalConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlModuleOutputDirectoriesConsumable_internalConfigurationAccessorsKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlModuleOutputDirectoriesConsumable_internalConfigurationAccessorsKt.class new file mode 100644 index 00000000..bd5dd377 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlModuleOutputDirectoriesConsumable_internalConfigurationAccessorsKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlModuleOutputDirectoriesResolver_internalConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlModuleOutputDirectoriesResolver_internalConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class new file mode 100644 index 00000000..cc33302d Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlModuleOutputDirectoriesResolver_internalConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlModuleOutputDirectoriesResolver_internalConfigurationAccessorsKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlModuleOutputDirectoriesResolver_internalConfigurationAccessorsKt.class new file mode 100644 index 00000000..a8f94560 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlModuleOutputDirectoriesResolver_internalConfigurationAccessorsKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPluginConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPluginConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class new file mode 100644 index 00000000..124faee9 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPluginConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPluginConfigurationAccessorsKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPluginConfigurationAccessorsKt.class new file mode 100644 index 00000000..98295786 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPluginConfigurationAccessorsKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPluginIntransitiveResolver_internalConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPluginIntransitiveResolver_internalConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class new file mode 100644 index 00000000..1143c4fa Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPluginIntransitiveResolver_internalConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPluginIntransitiveResolver_internalConfigurationAccessorsKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPluginIntransitiveResolver_internalConfigurationAccessorsKt.class new file mode 100644 index 00000000..aaa2bffe Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPluginIntransitiveResolver_internalConfigurationAccessorsKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginApiOnlyConsumable_internalConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginApiOnlyConsumable_internalConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class new file mode 100644 index 00000000..318b6f01 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginApiOnlyConsumable_internalConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginApiOnlyConsumable_internalConfigurationAccessorsKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginApiOnlyConsumable_internalConfigurationAccessorsKt.class new file mode 100644 index 00000000..d5167f54 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginApiOnlyConsumable_internalConfigurationAccessorsKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginApiOnly_internalConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginApiOnly_internalConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class new file mode 100644 index 00000000..85dba902 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginApiOnly_internalConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginApiOnly_internalConfigurationAccessorsKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginApiOnly_internalConfigurationAccessorsKt.class new file mode 100644 index 00000000..2915dd6c Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginApiOnly_internalConfigurationAccessorsKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class new file mode 100644 index 00000000..545aeabd Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginConfigurationAccessorsKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginConfigurationAccessorsKt.class new file mode 100644 index 00000000..e0f723b3 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginConfigurationAccessorsKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginResolver_internalConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginResolver_internalConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class new file mode 100644 index 00000000..4359fbb2 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginResolver_internalConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginResolver_internalConfigurationAccessorsKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginResolver_internalConfigurationAccessorsKt.class new file mode 100644 index 00000000..d1f0ba2e Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginResolver_internalConfigurationAccessorsKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaJekyllPluginConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaJekyllPluginConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class new file mode 100644 index 00000000..3e4cd17a Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaJekyllPluginConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaJekyllPluginConfigurationAccessorsKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaJekyllPluginConfigurationAccessorsKt.class new file mode 100644 index 00000000..37154171 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaJekyllPluginConfigurationAccessorsKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaJekyllRuntimeConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaJekyllRuntimeConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class new file mode 100644 index 00000000..c1e0e929 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaJekyllRuntimeConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaJekyllRuntimeConfigurationAccessorsKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaJekyllRuntimeConfigurationAccessorsKt.class new file mode 100644 index 00000000..7bd3f20d Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaJekyllRuntimeConfigurationAccessorsKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaPluginConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaPluginConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class new file mode 100644 index 00000000..c5c82459 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaPluginConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaPluginConfigurationAccessorsKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaPluginConfigurationAccessorsKt.class new file mode 100644 index 00000000..ced0b1a2 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaPluginConfigurationAccessorsKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaRuntimeConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaRuntimeConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class new file mode 100644 index 00000000..f56d7739 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaRuntimeConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaRuntimeConfigurationAccessorsKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaRuntimeConfigurationAccessorsKt.class new file mode 100644 index 00000000..ed566028 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaRuntimeConfigurationAccessorsKt.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidInternalKotlinMultiplatformPluginGroup.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidInternalKotlinMultiplatformPluginGroup.class new file mode 100644 index 00000000..129b4bfe Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidInternalKotlinMultiplatformPluginGroup.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidInternalKotlinPluginGroup.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidInternalKotlinPluginGroup.class new file mode 100644 index 00000000..67665b15 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidInternalKotlinPluginGroup.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidInternalPluginGroup.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidInternalPluginGroup.class new file mode 100644 index 00000000..71d6cec0 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidInternalPluginGroup.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidKotlinMultiplatformPluginGroup.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidKotlinMultiplatformPluginGroup.class new file mode 100644 index 00000000..5cb4d53d Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidKotlinMultiplatformPluginGroup.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidKotlinPluginGroup.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidKotlinPluginGroup.class new file mode 100644 index 00000000..697c8b7d Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidKotlinPluginGroup.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidPluginGroup.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidPluginGroup.class new file mode 100644 index 00000000..91c6ba28 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidPluginGroup.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComPluginGroup.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComPluginGroup.class new file mode 100644 index 00000000..55e1ed75 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComPluginGroup.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComVanniktechMavenPluginGroup.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComVanniktechMavenPluginGroup.class new file mode 100644 index 00000000..68859ecc Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComVanniktechMavenPluginGroup.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComVanniktechPluginGroup.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComVanniktechPluginGroup.class new file mode 100644 index 00000000..a5b68622 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComVanniktechPluginGroup.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgGradlePluginGroup.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgGradlePluginGroup.class new file mode 100644 index 00000000..a3a13390 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgGradlePluginGroup.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgJetbrainsKotlinNativePluginGroup.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgJetbrainsKotlinNativePluginGroup.class new file mode 100644 index 00000000..9230ecb2 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgJetbrainsKotlinNativePluginGroup.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgJetbrainsKotlinPluginGroup.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgJetbrainsKotlinPluginGroup.class new file mode 100644 index 00000000..6981d2f0 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgJetbrainsKotlinPluginGroup.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgJetbrainsKotlinPluginPluginGroup.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgJetbrainsKotlinPluginPluginGroup.class new file mode 100644 index 00000000..f27fba26 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgJetbrainsKotlinPluginPluginGroup.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgJetbrainsPluginGroup.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgJetbrainsPluginGroup.class new file mode 100644 index 00000000..29dca6cd Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgJetbrainsPluginGroup.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgPluginGroup.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgPluginGroup.class new file mode 100644 index 00000000..aabef9b9 Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgPluginGroup.class differ diff --git a/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/PluginSpecBuildersKt.class b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/PluginSpecBuildersKt.class new file mode 100644 index 00000000..8bcf459c Binary files /dev/null and b/build-logic/convention/build/classes/kotlin/main/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/PluginSpecBuildersKt.class differ diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors1814at3803w63ms3j2ncdoy9f.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors1814at3803w63ms3j2ncdoy9f.kt new file mode 100644 index 00000000..ccb29595 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors1814at3803w63ms3j2ncdoy9f.kt @@ -0,0 +1,76 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Retrieves the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension. + */ +internal +val org.jetbrains.dokka.gradle.engine.plugins.DokkaVersioningPluginParameters.`ext`: org.gradle.api.plugins.ExtraPropertiesExtension get() = + (this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("ext") as org.gradle.api.plugins.ExtraPropertiesExtension + +/** + * Configures the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension. + */ +internal +fun org.jetbrains.dokka.gradle.engine.plugins.DokkaVersioningPluginParameters.`ext`(configure: Action): Unit = + (this as org.gradle.api.plugins.ExtensionAware).extensions.configure("ext", configure) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors2g5epxeyye0j2zlp62h6aad2o.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors2g5epxeyye0j2zlp62h6aad2o.kt new file mode 100644 index 00000000..0ab1e2f0 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors2g5epxeyye0j2zlp62h6aad2o.kt @@ -0,0 +1,76 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Retrieves the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension. + */ +internal +val org.gradle.api.artifacts.VersionCatalogsExtension.`ext`: org.gradle.api.plugins.ExtraPropertiesExtension get() = + (this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("ext") as org.gradle.api.plugins.ExtraPropertiesExtension + +/** + * Configures the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension. + */ +internal +fun org.gradle.api.artifacts.VersionCatalogsExtension.`ext`(configure: Action): Unit = + (this as org.gradle.api.plugins.ExtensionAware).extensions.configure("ext", configure) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors2hflg4pq6ysjvpe100g593qqh.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors2hflg4pq6ysjvpe100g593qqh.kt new file mode 100644 index 00000000..d58c3447 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors2hflg4pq6ysjvpe100g593qqh.kt @@ -0,0 +1,68 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Provides the existing [dokkaHtmlPublicationPluginResolver~internal][org.gradle.api.artifacts.Configuration] element. + */ +internal +val org.gradle.api.NamedDomainObjectContainer.`dokkaHtmlPublicationPluginResolver~internal`: NamedDomainObjectProvider + get() = named("dokkaHtmlPublicationPluginResolver~internal") + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors2vo6c1usfsp64lst1fwxi58r4.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors2vo6c1usfsp64lst1fwxi58r4.kt new file mode 100644 index 00000000..1abedf8c --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors2vo6c1usfsp64lst1fwxi58r4.kt @@ -0,0 +1,68 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Provides the existing [dokkaRuntime][org.gradle.api.artifacts.Configuration] element. + */ +internal +val org.gradle.api.NamedDomainObjectContainer.`dokkaRuntime`: NamedDomainObjectProvider + get() = named("dokkaRuntime") + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors2y3qmtkmk3qb3zvtsnb7mkugk.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors2y3qmtkmk3qb3zvtsnb7mkugk.kt new file mode 100644 index 00000000..c5d26087 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors2y3qmtkmk3qb3zvtsnb7mkugk.kt @@ -0,0 +1,68 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Provides the existing [check][org.gradle.api.DefaultTask] task. + */ +internal +val TaskContainer.`check`: TaskProvider + get() = named("check") + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors3dd7y6706u2lw819mkt4rv4dy.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors3dd7y6706u2lw819mkt4rv4dy.kt new file mode 100644 index 00000000..714c1d26 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors3dd7y6706u2lw819mkt4rv4dy.kt @@ -0,0 +1,68 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Provides the existing [dokkaPlugin][org.gradle.api.artifacts.Configuration] element. + */ +internal +val org.gradle.api.NamedDomainObjectContainer.`dokkaPlugin`: NamedDomainObjectProvider + get() = named("dokkaPlugin") + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors3jq7xcpp8zxjmu9rvj51zeuwb.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors3jq7xcpp8zxjmu9rvj51zeuwb.kt new file mode 100644 index 00000000..d01c658d --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors3jq7xcpp8zxjmu9rvj51zeuwb.kt @@ -0,0 +1,76 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Retrieves the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension. + */ +internal +val org.jetbrains.dokka.gradle.DokkaExtension.`ext`: org.gradle.api.plugins.ExtraPropertiesExtension get() = + (this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("ext") as org.gradle.api.plugins.ExtraPropertiesExtension + +/** + * Configures the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension. + */ +internal +fun org.jetbrains.dokka.gradle.DokkaExtension.`ext`(configure: Action): Unit = + (this as org.gradle.api.plugins.ExtensionAware).extensions.configure("ext", configure) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors3mldokxe3pyw73ldvkbyeufmo.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors3mldokxe3pyw73ldvkbyeufmo.kt new file mode 100644 index 00000000..1ed4232c --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors3mldokxe3pyw73ldvkbyeufmo.kt @@ -0,0 +1,68 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Provides the existing [dokka][org.gradle.api.artifacts.Configuration] element. + */ +internal +val org.gradle.api.NamedDomainObjectContainer.`dokka`: NamedDomainObjectProvider + get() = named("dokka") + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors4n4k4ran1jpeh9mjt2hsoix1i.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors4n4k4ran1jpeh9mjt2hsoix1i.kt new file mode 100644 index 00000000..431fbf36 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors4n4k4ran1jpeh9mjt2hsoix1i.kt @@ -0,0 +1,68 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Provides the existing [dokkaGenerateModuleHtml][org.jetbrains.dokka.gradle.tasks.DokkaGenerateModuleTask] task. + */ +internal +val TaskContainer.`dokkaGenerateModuleHtml`: TaskProvider + get() = named("dokkaGenerateModuleHtml") + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors4qehku0p9fscm3xeaddworifc.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors4qehku0p9fscm3xeaddworifc.kt new file mode 100644 index 00000000..f88b1420 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors4qehku0p9fscm3xeaddworifc.kt @@ -0,0 +1,68 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Provides the existing [build][org.gradle.api.DefaultTask] task. + */ +internal +val TaskContainer.`build`: TaskProvider + get() = named("build") + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors4vbe3oshuuh0o2qfcq786o8yr.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors4vbe3oshuuh0o2qfcq786o8yr.kt new file mode 100644 index 00000000..88c1103c --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors4vbe3oshuuh0o2qfcq786o8yr.kt @@ -0,0 +1,68 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Provides the existing [dokkaHtmlModuleOutputDirectoriesResolver~internal][org.gradle.api.artifacts.Configuration] element. + */ +internal +val org.gradle.api.NamedDomainObjectContainer.`dokkaHtmlModuleOutputDirectoriesResolver~internal`: NamedDomainObjectProvider + get() = named("dokkaHtmlModuleOutputDirectoriesResolver~internal") + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors4xsvbsv0xr5dr62eja7ywms6f.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors4xsvbsv0xr5dr62eja7ywms6f.kt new file mode 100644 index 00000000..cd000c27 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors4xsvbsv0xr5dr62eja7ywms6f.kt @@ -0,0 +1,76 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Retrieves the [versionCatalogs][org.gradle.api.artifacts.VersionCatalogsExtension] extension. + */ +internal +val org.gradle.api.Project.`versionCatalogs`: org.gradle.api.artifacts.VersionCatalogsExtension get() = + (this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("versionCatalogs") as org.gradle.api.artifacts.VersionCatalogsExtension + +/** + * Configures the [versionCatalogs][org.gradle.api.artifacts.VersionCatalogsExtension] extension. + */ +internal +fun org.gradle.api.Project.`versionCatalogs`(configure: Action): Unit = + (this as org.gradle.api.plugins.ExtensionAware).extensions.configure("versionCatalogs", configure) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors52142jolsw9ujy2r4wxctyesa.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors52142jolsw9ujy2r4wxctyesa.kt new file mode 100644 index 00000000..ecb9aba1 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors52142jolsw9ujy2r4wxctyesa.kt @@ -0,0 +1,68 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Provides the existing [dokkaHtmlPublicationPlugin][org.gradle.api.artifacts.Configuration] element. + */ +internal +val org.gradle.api.NamedDomainObjectContainer.`dokkaHtmlPublicationPlugin`: NamedDomainObjectProvider + get() = named("dokkaHtmlPublicationPlugin") + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors5ukftyrov2ugrcqabxjbq4v2k.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors5ukftyrov2ugrcqabxjbq4v2k.kt new file mode 100644 index 00000000..f348d70c --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors5ukftyrov2ugrcqabxjbq4v2k.kt @@ -0,0 +1,76 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Retrieves the [dokka][org.jetbrains.dokka.gradle.DokkaExtension] extension. + */ +internal +val org.gradle.api.Project.`dokka`: org.jetbrains.dokka.gradle.DokkaExtension get() = + (this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("dokka") as org.jetbrains.dokka.gradle.DokkaExtension + +/** + * Configures the [dokka][org.jetbrains.dokka.gradle.DokkaExtension] extension. + */ +internal +fun org.gradle.api.Project.`dokka`(configure: Action): Unit = + (this as org.gradle.api.plugins.ExtensionAware).extensions.configure("dokka", configure) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors5vhacbtmdqy9eg1sasbu9lbky.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors5vhacbtmdqy9eg1sasbu9lbky.kt new file mode 100644 index 00000000..e3a4400d --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors5vhacbtmdqy9eg1sasbu9lbky.kt @@ -0,0 +1,68 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Provides the existing [dokkaHtmlPlugin][org.gradle.api.artifacts.Configuration] element. + */ +internal +val org.gradle.api.NamedDomainObjectContainer.`dokkaHtmlPlugin`: NamedDomainObjectProvider + get() = named("dokkaHtmlPlugin") + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors6r039ogynh58bb2g79ui5zt4k.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors6r039ogynh58bb2g79ui5zt4k.kt new file mode 100644 index 00000000..04ad5ae1 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors6r039ogynh58bb2g79ui5zt4k.kt @@ -0,0 +1,70 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Provides the existing [dokkaGfm][org.jetbrains.dokka.gradle.DokkaTask] task. + */ +@Suppress("deprecation") +@Deprecated("Dokka Gradle plugin V1 mode is deprecated, and scheduled to be removed in Dokka v2.2.0. Migrate to V2 mode https://kotl.in/dokka-gradle-migration", level = DeprecationLevel.WARNING) +internal +val TaskContainer.`dokkaGfm`: TaskProvider + get() = named("dokkaGfm") + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors6x8s2idksogzdbuwvu6dxo1o6.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors6x8s2idksogzdbuwvu6dxo1o6.kt new file mode 100644 index 00000000..3cba49be --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors6x8s2idksogzdbuwvu6dxo1o6.kt @@ -0,0 +1,68 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Provides the existing [dokkaHtmlGeneratorRuntimeResolver~internal][org.gradle.api.artifacts.Configuration] element. + */ +internal +val org.gradle.api.NamedDomainObjectContainer.`dokkaHtmlGeneratorRuntimeResolver~internal`: NamedDomainObjectProvider + get() = named("dokkaHtmlGeneratorRuntimeResolver~internal") + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors6xttpwxm3fux0j1z2ovyzk1e1.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors6xttpwxm3fux0j1z2ovyzk1e1.kt new file mode 100644 index 00000000..0d7fe4e1 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors6xttpwxm3fux0j1z2ovyzk1e1.kt @@ -0,0 +1,68 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Provides the existing [dokkaGenerateHtml][org.gradle.api.DefaultTask] task. + */ +internal +val TaskContainer.`dokkaGenerateHtml`: TaskProvider + get() = named("dokkaGenerateHtml") + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors7gif3hautczufvtshcf1ele2s.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors7gif3hautczufvtshcf1ele2s.kt new file mode 100644 index 00000000..6b4d33a3 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors7gif3hautczufvtshcf1ele2s.kt @@ -0,0 +1,76 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Retrieves the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension. + */ +internal +val org.gradle.api.NamedDomainObjectContainer.`ext`: org.gradle.api.plugins.ExtraPropertiesExtension get() = + (this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("ext") as org.gradle.api.plugins.ExtraPropertiesExtension + +/** + * Configures the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension. + */ +internal +fun org.gradle.api.NamedDomainObjectContainer.`ext`(configure: Action): Unit = + (this as org.gradle.api.plugins.ExtensionAware).extensions.configure("ext", configure) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors7gx2xdszh6z9cgkxga0icti10.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors7gx2xdszh6z9cgkxga0icti10.kt new file mode 100644 index 00000000..12f408c0 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors7gx2xdszh6z9cgkxga0icti10.kt @@ -0,0 +1,76 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Retrieves the [pluginsConfiguration][org.gradle.api.ExtensiblePolymorphicDomainObjectContainer] extension. + */ +internal +val org.jetbrains.dokka.gradle.DokkaExtension.`pluginsConfiguration`: org.gradle.api.ExtensiblePolymorphicDomainObjectContainer get() = + (this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("pluginsConfiguration") as org.gradle.api.ExtensiblePolymorphicDomainObjectContainer + +/** + * Configures the [pluginsConfiguration][org.gradle.api.ExtensiblePolymorphicDomainObjectContainer] extension. + */ +internal +fun org.jetbrains.dokka.gradle.DokkaExtension.`pluginsConfiguration`(configure: Action>): Unit = + (this as org.gradle.api.plugins.ExtensionAware).extensions.configure("pluginsConfiguration", configure) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors7xaxf8ag12a3tnppopibl3txt.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors7xaxf8ag12a3tnppopibl3txt.kt new file mode 100644 index 00000000..f0179a81 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors7xaxf8ag12a3tnppopibl3txt.kt @@ -0,0 +1,68 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Provides the existing [dokkaHtmlGeneratorRuntime][org.gradle.api.artifacts.Configuration] element. + */ +internal +val org.gradle.api.NamedDomainObjectContainer.`dokkaHtmlGeneratorRuntime`: NamedDomainObjectProvider + get() = named("dokkaHtmlGeneratorRuntime") + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors8fo9q5jnh37fvf1s6vap80de7.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors8fo9q5jnh37fvf1s6vap80de7.kt new file mode 100644 index 00000000..dfb15b8f --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors8fo9q5jnh37fvf1s6vap80de7.kt @@ -0,0 +1,68 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Provides the existing [dokkaGenerate][org.jetbrains.dokka.gradle.tasks.DokkaBaseTask] task. + */ +internal +val TaskContainer.`dokkaGenerate`: TaskProvider + get() = named("dokkaGenerate") + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors8omrm7xh0qzd35kclf8p20sz5.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors8omrm7xh0qzd35kclf8p20sz5.kt new file mode 100644 index 00000000..f395f87e --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors8omrm7xh0qzd35kclf8p20sz5.kt @@ -0,0 +1,68 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Provides the existing [logLinkDokkaGeneratePublicationHtml][org.jetbrains.dokka.gradle.tasks.LogHtmlPublicationLinkTask] task. + */ +internal +val TaskContainer.`logLinkDokkaGeneratePublicationHtml`: TaskProvider + get() = named("logLinkDokkaGeneratePublicationHtml") + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors91giltb9degs64cxv7c2gprgf.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors91giltb9degs64cxv7c2gprgf.kt new file mode 100644 index 00000000..190e1e71 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors91giltb9degs64cxv7c2gprgf.kt @@ -0,0 +1,70 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Provides the existing [dokkaJavadoc][org.jetbrains.dokka.gradle.DokkaTask] task. + */ +@Suppress("deprecation") +@Deprecated("Dokka Gradle plugin V1 mode is deprecated, and scheduled to be removed in Dokka v2.2.0. Migrate to V2 mode https://kotl.in/dokka-gradle-migration", level = DeprecationLevel.WARNING) +internal +val TaskContainer.`dokkaJavadoc`: TaskProvider + get() = named("dokkaJavadoc") + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors9388c8jd15p9nvwfpy4rcem1z.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors9388c8jd15p9nvwfpy4rcem1z.kt new file mode 100644 index 00000000..7b614b5b --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors9388c8jd15p9nvwfpy4rcem1z.kt @@ -0,0 +1,68 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Provides the existing [dokkaGeneratePublicationHtml][org.jetbrains.dokka.gradle.tasks.DokkaGeneratePublicationTask] task. + */ +internal +val TaskContainer.`dokkaGeneratePublicationHtml`: TaskProvider + get() = named("dokkaGeneratePublicationHtml") + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors9tta56tlj7j7pbo2zpo3u1i94.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors9tta56tlj7j7pbo2zpo3u1i94.kt new file mode 100644 index 00000000..4b05b3cb --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessors9tta56tlj7j7pbo2zpo3u1i94.kt @@ -0,0 +1,68 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Provides the existing [assemble][org.gradle.api.DefaultTask] task. + */ +internal +val TaskContainer.`assemble`: TaskProvider + get() = named("assemble") + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsa23p7zp0eqocg7i8w5hxad7qx.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsa23p7zp0eqocg7i8w5hxad7qx.kt new file mode 100644 index 00000000..c79ac9fc --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsa23p7zp0eqocg7i8w5hxad7qx.kt @@ -0,0 +1,76 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Retrieves the [versioning][org.jetbrains.dokka.gradle.engine.plugins.DokkaVersioningPluginParameters] extension. + */ +internal +val org.gradle.api.ExtensiblePolymorphicDomainObjectContainer.`versioning`: org.jetbrains.dokka.gradle.engine.plugins.DokkaVersioningPluginParameters get() = + (this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("versioning") as org.jetbrains.dokka.gradle.engine.plugins.DokkaVersioningPluginParameters + +/** + * Configures the [versioning][org.jetbrains.dokka.gradle.engine.plugins.DokkaVersioningPluginParameters] extension. + */ +internal +fun org.gradle.api.ExtensiblePolymorphicDomainObjectContainer.`versioning`(configure: Action): Unit = + (this as org.gradle.api.plugins.ExtensionAware).extensions.configure("versioning", configure) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsa2xjchdp9azrjvz0ylrst54dv.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsa2xjchdp9azrjvz0ylrst54dv.kt new file mode 100644 index 00000000..2dde6ad7 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsa2xjchdp9azrjvz0ylrst54dv.kt @@ -0,0 +1,68 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Provides the existing [dokkaGfmRuntime][org.gradle.api.artifacts.Configuration] element. + */ +internal +val org.gradle.api.NamedDomainObjectContainer.`dokkaGfmRuntime`: NamedDomainObjectProvider + get() = named("dokkaGfmRuntime") + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsaaoi935rzdzsicplwm1rxjuvl.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsaaoi935rzdzsicplwm1rxjuvl.kt new file mode 100644 index 00000000..cc96c911 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsaaoi935rzdzsicplwm1rxjuvl.kt @@ -0,0 +1,70 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Provides the existing [dokkaHtml][org.jetbrains.dokka.gradle.DokkaTask] task. + */ +@Suppress("deprecation") +@Deprecated("Dokka Gradle plugin V1 mode is deprecated, and scheduled to be removed in Dokka v2.2.0. Migrate to V2 mode https://kotl.in/dokka-gradle-migration", level = DeprecationLevel.WARNING) +internal +val TaskContainer.`dokkaHtml`: TaskProvider + get() = named("dokkaHtml") + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsabhfixk6x58cm7148lht7qm2v.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsabhfixk6x58cm7148lht7qm2v.kt new file mode 100644 index 00000000..5a3251b3 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsabhfixk6x58cm7148lht7qm2v.kt @@ -0,0 +1,68 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Provides the existing [dokkaHtmlPublicationPluginApiOnly~internal][org.gradle.api.artifacts.Configuration] element. + */ +internal +val org.gradle.api.NamedDomainObjectContainer.`dokkaHtmlPublicationPluginApiOnly~internal`: NamedDomainObjectProvider + get() = named("dokkaHtmlPublicationPluginApiOnly~internal") + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsba7gbh6l3xhj2qhxae5mepgqk.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsba7gbh6l3xhj2qhxae5mepgqk.kt new file mode 100644 index 00000000..1e625ee9 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsba7gbh6l3xhj2qhxae5mepgqk.kt @@ -0,0 +1,76 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Retrieves the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension. + */ +internal +val org.gradle.api.NamedDomainObjectContainer.`ext`: org.gradle.api.plugins.ExtraPropertiesExtension get() = + (this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("ext") as org.gradle.api.plugins.ExtraPropertiesExtension + +/** + * Configures the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension. + */ +internal +fun org.gradle.api.NamedDomainObjectContainer.`ext`(configure: Action): Unit = + (this as org.gradle.api.plugins.ExtensionAware).extensions.configure("ext", configure) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsbfy893843kdpxu0oqzv79pgfq.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsbfy893843kdpxu0oqzv79pgfq.kt new file mode 100644 index 00000000..3d5a2d24 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsbfy893843kdpxu0oqzv79pgfq.kt @@ -0,0 +1,68 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Provides the existing [html][org.jetbrains.dokka.gradle.formats.DokkaPublication] element. + */ +internal +val org.gradle.api.NamedDomainObjectContainer.`html`: NamedDomainObjectProvider + get() = named("html") + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsbinuh2dmy82szfgqwl4ef9ib0.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsbinuh2dmy82szfgqwl4ef9ib0.kt new file mode 100644 index 00000000..3ae7a986 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsbinuh2dmy82szfgqwl4ef9ib0.kt @@ -0,0 +1,76 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Retrieves the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension. + */ +internal +val org.gradle.api.artifacts.dsl.DependencyHandler.`ext`: org.gradle.api.plugins.ExtraPropertiesExtension get() = + (this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("ext") as org.gradle.api.plugins.ExtraPropertiesExtension + +/** + * Configures the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension. + */ +internal +fun org.gradle.api.artifacts.dsl.DependencyHandler.`ext`(configure: Action): Unit = + (this as org.gradle.api.plugins.ExtensionAware).extensions.configure("ext", configure) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsbmk3bn05bcc8zv39xwiuucwk.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsbmk3bn05bcc8zv39xwiuucwk.kt new file mode 100644 index 00000000..25c3f4f5 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsbmk3bn05bcc8zv39xwiuucwk.kt @@ -0,0 +1,70 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Provides the existing [dokkaJekyll][org.jetbrains.dokka.gradle.DokkaTask] task. + */ +@Suppress("deprecation") +@Deprecated("Dokka Gradle plugin V1 mode is deprecated, and scheduled to be removed in Dokka v2.2.0. Migrate to V2 mode https://kotl.in/dokka-gradle-migration", level = DeprecationLevel.WARNING) +internal +val TaskContainer.`dokkaJekyll`: TaskProvider + get() = named("dokkaJekyll") + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsboaiyk2c11hn81v6lro5w55zj.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsboaiyk2c11hn81v6lro5w55zj.kt new file mode 100644 index 00000000..9a154677 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsboaiyk2c11hn81v6lro5w55zj.kt @@ -0,0 +1,76 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Retrieves the [dokkaPublications][org.gradle.api.NamedDomainObjectContainer] extension. + */ +internal +val org.jetbrains.dokka.gradle.DokkaExtension.`dokkaPublications`: org.gradle.api.NamedDomainObjectContainer get() = + (this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("dokkaPublications") as org.gradle.api.NamedDomainObjectContainer + +/** + * Configures the [dokkaPublications][org.gradle.api.NamedDomainObjectContainer] extension. + */ +internal +fun org.jetbrains.dokka.gradle.DokkaExtension.`dokkaPublications`(configure: Action>): Unit = + (this as org.gradle.api.plugins.ExtensionAware).extensions.configure("dokkaPublications", configure) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsbtzn0h95cvhh00v9pbr08w1tl.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsbtzn0h95cvhh00v9pbr08w1tl.kt new file mode 100644 index 00000000..fa19f241 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsbtzn0h95cvhh00v9pbr08w1tl.kt @@ -0,0 +1,68 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Provides the existing [dokkaHtmlPublicationPluginApiOnlyConsumable~internal][org.gradle.api.artifacts.Configuration] element. + */ +internal +val org.gradle.api.NamedDomainObjectContainer.`dokkaHtmlPublicationPluginApiOnlyConsumable~internal`: NamedDomainObjectProvider + get() = named("dokkaHtmlPublicationPluginApiOnlyConsumable~internal") + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsbu4celzmx94h5ebu8epruan0b.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsbu4celzmx94h5ebu8epruan0b.kt new file mode 100644 index 00000000..700a6e96 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsbu4celzmx94h5ebu8epruan0b.kt @@ -0,0 +1,76 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Retrieves the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension. + */ +internal +val org.gradle.api.Project.`ext`: org.gradle.api.plugins.ExtraPropertiesExtension get() = + (this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("ext") as org.gradle.api.plugins.ExtraPropertiesExtension + +/** + * Configures the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension. + */ +internal +fun org.gradle.api.Project.`ext`(configure: Action): Unit = + (this as org.gradle.api.plugins.ExtensionAware).extensions.configure("ext", configure) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorscjoex2b9cji424ewwlcg2drw3.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorscjoex2b9cji424ewwlcg2drw3.kt new file mode 100644 index 00000000..06dff7c9 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorscjoex2b9cji424ewwlcg2drw3.kt @@ -0,0 +1,68 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Provides the existing [dokkaJekyllPlugin][org.gradle.api.artifacts.Configuration] element. + */ +internal +val org.gradle.api.NamedDomainObjectContainer.`dokkaJekyllPlugin`: NamedDomainObjectProvider + get() = named("dokkaJekyllPlugin") + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsckfe7zcr5kxodmj4duluab5cg.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsckfe7zcr5kxodmj4duluab5cg.kt new file mode 100644 index 00000000..c69f1d5a --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsckfe7zcr5kxodmj4duluab5cg.kt @@ -0,0 +1,68 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Provides the existing [dokkaGfmPlugin][org.gradle.api.artifacts.Configuration] element. + */ +internal +val org.gradle.api.NamedDomainObjectContainer.`dokkaGfmPlugin`: NamedDomainObjectProvider + get() = named("dokkaGfmPlugin") + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorse0rscgy78j45y2tgmzrkyb74.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorse0rscgy78j45y2tgmzrkyb74.kt new file mode 100644 index 00000000..31338819 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorse0rscgy78j45y2tgmzrkyb74.kt @@ -0,0 +1,68 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Provides the existing [dokkaJekyllRuntime][org.gradle.api.artifacts.Configuration] element. + */ +internal +val org.gradle.api.NamedDomainObjectContainer.`dokkaJekyllRuntime`: NamedDomainObjectProvider + get() = named("dokkaJekyllRuntime") + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorse1drgqizlg1dwbloekvznld39.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorse1drgqizlg1dwbloekvznld39.kt new file mode 100644 index 00000000..3ea7cf78 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorse1drgqizlg1dwbloekvznld39.kt @@ -0,0 +1,76 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Retrieves the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension. + */ +internal +val org.gradle.api.ExtensiblePolymorphicDomainObjectContainer.`ext`: org.gradle.api.plugins.ExtraPropertiesExtension get() = + (this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("ext") as org.gradle.api.plugins.ExtraPropertiesExtension + +/** + * Configures the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension. + */ +internal +fun org.gradle.api.ExtensiblePolymorphicDomainObjectContainer.`ext`(configure: Action): Unit = + (this as org.gradle.api.plugins.ExtensionAware).extensions.configure("ext", configure) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorse1l2mc0naige81sgqfz2gt8xi.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorse1l2mc0naige81sgqfz2gt8xi.kt new file mode 100644 index 00000000..a108f56f --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorse1l2mc0naige81sgqfz2gt8xi.kt @@ -0,0 +1,76 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Retrieves the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension. + */ +internal +val org.jetbrains.dokka.gradle.engine.plugins.DokkaHtmlPluginParameters.`ext`: org.gradle.api.plugins.ExtraPropertiesExtension get() = + (this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("ext") as org.gradle.api.plugins.ExtraPropertiesExtension + +/** + * Configures the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension. + */ +internal +fun org.jetbrains.dokka.gradle.engine.plugins.DokkaHtmlPluginParameters.`ext`(configure: Action): Unit = + (this as org.gradle.api.plugins.ExtensionAware).extensions.configure("ext", configure) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorse30jynzcca29n6vk74f0ywqhg.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorse30jynzcca29n6vk74f0ywqhg.kt new file mode 100644 index 00000000..d206bbc5 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorse30jynzcca29n6vk74f0ywqhg.kt @@ -0,0 +1,68 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Provides the existing [dokkaHtmlPluginIntransitiveResolver~internal][org.gradle.api.artifacts.Configuration] element. + */ +internal +val org.gradle.api.NamedDomainObjectContainer.`dokkaHtmlPluginIntransitiveResolver~internal`: NamedDomainObjectProvider + get() = named("dokkaHtmlPluginIntransitiveResolver~internal") + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsefaf4qyddh684d3vhn1r8m4c8.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsefaf4qyddh684d3vhn1r8m4c8.kt new file mode 100644 index 00000000..f17570c5 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsefaf4qyddh684d3vhn1r8m4c8.kt @@ -0,0 +1,76 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Retrieves the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension. + */ +internal +val org.gradle.api.artifacts.dsl.RepositoryHandler.`ext`: org.gradle.api.plugins.ExtraPropertiesExtension get() = + (this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("ext") as org.gradle.api.plugins.ExtraPropertiesExtension + +/** + * Configures the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension. + */ +internal +fun org.gradle.api.artifacts.dsl.RepositoryHandler.`ext`(configure: Action): Unit = + (this as org.gradle.api.plugins.ExtensionAware).extensions.configure("ext", configure) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorserp86ynvx2my9x9u8cy3e97k6.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorserp86ynvx2my9x9u8cy3e97k6.kt new file mode 100644 index 00000000..f35efff3 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorserp86ynvx2my9x9u8cy3e97k6.kt @@ -0,0 +1,76 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Retrieves the [dokkaSourceSets][org.gradle.api.NamedDomainObjectContainer] extension. + */ +internal +val org.jetbrains.dokka.gradle.DokkaExtension.`dokkaSourceSets`: org.gradle.api.NamedDomainObjectContainer get() = + (this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("dokkaSourceSets") as org.gradle.api.NamedDomainObjectContainer + +/** + * Configures the [dokkaSourceSets][org.gradle.api.NamedDomainObjectContainer] extension. + */ +internal +fun org.jetbrains.dokka.gradle.DokkaExtension.`dokkaSourceSets`(configure: Action>): Unit = + (this as org.gradle.api.plugins.ExtensionAware).extensions.configure("dokkaSourceSets", configure) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsexiottiqdoq5rm4qirwgv19fl.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsexiottiqdoq5rm4qirwgv19fl.kt new file mode 100644 index 00000000..8ae02528 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsexiottiqdoq5rm4qirwgv19fl.kt @@ -0,0 +1,68 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Provides the existing [clean][org.gradle.api.tasks.Delete] task. + */ +internal +val TaskContainer.`clean`: TaskProvider + get() = named("clean") + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorswg2hwbe40b7k8y0ip4rm248c.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorswg2hwbe40b7k8y0ip4rm248c.kt new file mode 100644 index 00000000..47537fed --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorswg2hwbe40b7k8y0ip4rm248c.kt @@ -0,0 +1,68 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Provides the existing [dokkaHtmlModuleOutputDirectoriesConsumable~internal][org.gradle.api.artifacts.Configuration] element. + */ +internal +val org.gradle.api.NamedDomainObjectContainer.`dokkaHtmlModuleOutputDirectoriesConsumable~internal`: NamedDomainObjectProvider + get() = named("dokkaHtmlModuleOutputDirectoriesConsumable~internal") + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsyrppczo9fber4pjocukkrmc6.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsyrppczo9fber4pjocukkrmc6.kt new file mode 100644 index 00000000..2c23fa46 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/Accessorsyrppczo9fber4pjocukkrmc6.kt @@ -0,0 +1,76 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Retrieves the [html][org.jetbrains.dokka.gradle.engine.plugins.DokkaHtmlPluginParameters] extension. + */ +internal +val org.gradle.api.ExtensiblePolymorphicDomainObjectContainer.`html`: org.jetbrains.dokka.gradle.engine.plugins.DokkaHtmlPluginParameters get() = + (this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("html") as org.jetbrains.dokka.gradle.engine.plugins.DokkaHtmlPluginParameters + +/** + * Configures the [html][org.jetbrains.dokka.gradle.engine.plugins.DokkaHtmlPluginParameters] extension. + */ +internal +fun org.gradle.api.ExtensiblePolymorphicDomainObjectContainer.`html`(configure: Action): Unit = + (this as org.gradle.api.plugins.ExtensionAware).extensions.configure("html", configure) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaConfigurationAccessors.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaConfigurationAccessors.kt new file mode 100644 index 00000000..deb8d9f5 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaConfigurationAccessors.kt @@ -0,0 +1,223 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Adds a dependency to the 'dokka' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokka`(dependencyNotation: Any): Dependency? = + add("dokka", dependencyNotation) + +/** + * Adds a dependency to the 'dokka' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokka`( + dependencyNotation: String, + dependencyConfiguration: Action +): ExternalModuleDependency = addDependencyTo( + this, "dokka", dependencyNotation, dependencyConfiguration +) as ExternalModuleDependency + +/** + * Adds a dependency to the 'dokka' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokka`( + dependencyNotation: Provider<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokka", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokka' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokka`( + dependencyNotation: ProviderConvertible<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokka", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokka' configuration. + * + * @param group the group of the module to be added as a dependency. + * @param name the name of the module to be added as a dependency. + * @param version the optional version of the module to be added as a dependency. + * @param configuration the optional configuration of the module to be added as a dependency. + * @param classifier the optional classifier of the module artifact to be added as a dependency. + * @param ext the optional extension of the module artifact to be added as a dependency. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.create] + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokka`( + group: String, + name: String, + version: String? = null, + configuration: String? = null, + classifier: String? = null, + ext: String? = null, + dependencyConfiguration: Action? = null +): ExternalModuleDependency = addExternalModuleDependencyTo( + this, "dokka", group, name, version, configuration, classifier, ext, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokka' configuration. + * + * @param dependency dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokka`( + dependency: T, + dependencyConfiguration: T.() -> Unit +): T = add("dokka", dependency, dependencyConfiguration) + +/** + * Adds a dependency constraint to the 'dokka' configuration. + * + * @param constraintNotation the dependency constraint notation + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +internal +fun DependencyConstraintHandler.`dokka`(constraintNotation: Any): DependencyConstraint = + add("dokka", constraintNotation) + +/** + * Adds a dependency constraint to the 'dokka' configuration. + * + * @param constraintNotation the dependency constraint notation + * @param block the block to use to configure the dependency constraint + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +internal +fun DependencyConstraintHandler.`dokka`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint = + add("dokka", constraintNotation, block) + +/** + * Adds an artifact to the 'dokka' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokka`(artifactNotation: Any): PublishArtifact = + add("dokka", artifactNotation) + +/** + * Adds an artifact to the 'dokka' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @param configureAction The action to execute to configure the artifact. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokka`( + artifactNotation: Any, + configureAction: ConfigurablePublishArtifact.() -> Unit +): PublishArtifact = + add("dokka", artifactNotation, configureAction) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaGfmPluginConfigurationAccessors.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaGfmPluginConfigurationAccessors.kt new file mode 100644 index 00000000..c83ea6d5 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaGfmPluginConfigurationAccessors.kt @@ -0,0 +1,231 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Adds a dependency to the 'dokkaGfmPlugin' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +@Deprecated(message = "The dokkaGfmPlugin configuration has been deprecated for dependency declaration. Please use the 'dokkaGfmPlugin' configuration instead.") +internal +fun DependencyHandler.`dokkaGfmPlugin`(dependencyNotation: Any): Dependency? = + add("dokkaGfmPlugin", dependencyNotation) + +/** + * Adds a dependency to the 'dokkaGfmPlugin' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +@Deprecated(message = "The dokkaGfmPlugin configuration has been deprecated for dependency declaration. Please use the 'dokkaGfmPlugin' configuration instead.") +internal +fun DependencyHandler.`dokkaGfmPlugin`( + dependencyNotation: String, + dependencyConfiguration: Action +): ExternalModuleDependency = addDependencyTo( + this, "dokkaGfmPlugin", dependencyNotation, dependencyConfiguration +) as ExternalModuleDependency + +/** + * Adds a dependency to the 'dokkaGfmPlugin' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +@Deprecated(message = "The dokkaGfmPlugin configuration has been deprecated for dependency declaration. Please use the 'dokkaGfmPlugin' configuration instead.") +internal +fun DependencyHandler.`dokkaGfmPlugin`( + dependencyNotation: Provider<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaGfmPlugin", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaGfmPlugin' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +@Deprecated(message = "The dokkaGfmPlugin configuration has been deprecated for dependency declaration. Please use the 'dokkaGfmPlugin' configuration instead.") +internal +fun DependencyHandler.`dokkaGfmPlugin`( + dependencyNotation: ProviderConvertible<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaGfmPlugin", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaGfmPlugin' configuration. + * + * @param group the group of the module to be added as a dependency. + * @param name the name of the module to be added as a dependency. + * @param version the optional version of the module to be added as a dependency. + * @param configuration the optional configuration of the module to be added as a dependency. + * @param classifier the optional classifier of the module artifact to be added as a dependency. + * @param ext the optional extension of the module artifact to be added as a dependency. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.create] + * @see [DependencyHandler.add] + */ +@Deprecated(message = "The dokkaGfmPlugin configuration has been deprecated for dependency declaration. Please use the 'dokkaGfmPlugin' configuration instead.") +internal +fun DependencyHandler.`dokkaGfmPlugin`( + group: String, + name: String, + version: String? = null, + configuration: String? = null, + classifier: String? = null, + ext: String? = null, + dependencyConfiguration: Action? = null +): ExternalModuleDependency = addExternalModuleDependencyTo( + this, "dokkaGfmPlugin", group, name, version, configuration, classifier, ext, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaGfmPlugin' configuration. + * + * @param dependency dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +@Deprecated(message = "The dokkaGfmPlugin configuration has been deprecated for dependency declaration. Please use the 'dokkaGfmPlugin' configuration instead.") +internal +fun DependencyHandler.`dokkaGfmPlugin`( + dependency: T, + dependencyConfiguration: T.() -> Unit +): T = add("dokkaGfmPlugin", dependency, dependencyConfiguration) + +/** + * Adds a dependency constraint to the 'dokkaGfmPlugin' configuration. + * + * @param constraintNotation the dependency constraint notation + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +@Deprecated(message = "The dokkaGfmPlugin configuration has been deprecated for dependency declaration. Please use the 'dokkaGfmPlugin' configuration instead.") +internal +fun DependencyConstraintHandler.`dokkaGfmPlugin`(constraintNotation: Any): DependencyConstraint = + add("dokkaGfmPlugin", constraintNotation) + +/** + * Adds a dependency constraint to the 'dokkaGfmPlugin' configuration. + * + * @param constraintNotation the dependency constraint notation + * @param block the block to use to configure the dependency constraint + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +@Deprecated(message = "The dokkaGfmPlugin configuration has been deprecated for dependency declaration. Please use the 'dokkaGfmPlugin' configuration instead.") +internal +fun DependencyConstraintHandler.`dokkaGfmPlugin`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint = + add("dokkaGfmPlugin", constraintNotation, block) + +/** + * Adds an artifact to the 'dokkaGfmPlugin' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaGfmPlugin`(artifactNotation: Any): PublishArtifact = + add("dokkaGfmPlugin", artifactNotation) + +/** + * Adds an artifact to the 'dokkaGfmPlugin' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @param configureAction The action to execute to configure the artifact. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaGfmPlugin`( + artifactNotation: Any, + configureAction: ConfigurablePublishArtifact.() -> Unit +): PublishArtifact = + add("dokkaGfmPlugin", artifactNotation, configureAction) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaGfmRuntimeConfigurationAccessors.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaGfmRuntimeConfigurationAccessors.kt new file mode 100644 index 00000000..5e2834bf --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaGfmRuntimeConfigurationAccessors.kt @@ -0,0 +1,231 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Adds a dependency to the 'dokkaGfmRuntime' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +@Deprecated(message = "The dokkaGfmRuntime configuration has been deprecated for dependency declaration. Please use the 'dokkaGfmGeneratorRuntime' configuration instead.") +internal +fun DependencyHandler.`dokkaGfmRuntime`(dependencyNotation: Any): Dependency? = + add("dokkaGfmRuntime", dependencyNotation) + +/** + * Adds a dependency to the 'dokkaGfmRuntime' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +@Deprecated(message = "The dokkaGfmRuntime configuration has been deprecated for dependency declaration. Please use the 'dokkaGfmGeneratorRuntime' configuration instead.") +internal +fun DependencyHandler.`dokkaGfmRuntime`( + dependencyNotation: String, + dependencyConfiguration: Action +): ExternalModuleDependency = addDependencyTo( + this, "dokkaGfmRuntime", dependencyNotation, dependencyConfiguration +) as ExternalModuleDependency + +/** + * Adds a dependency to the 'dokkaGfmRuntime' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +@Deprecated(message = "The dokkaGfmRuntime configuration has been deprecated for dependency declaration. Please use the 'dokkaGfmGeneratorRuntime' configuration instead.") +internal +fun DependencyHandler.`dokkaGfmRuntime`( + dependencyNotation: Provider<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaGfmRuntime", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaGfmRuntime' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +@Deprecated(message = "The dokkaGfmRuntime configuration has been deprecated for dependency declaration. Please use the 'dokkaGfmGeneratorRuntime' configuration instead.") +internal +fun DependencyHandler.`dokkaGfmRuntime`( + dependencyNotation: ProviderConvertible<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaGfmRuntime", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaGfmRuntime' configuration. + * + * @param group the group of the module to be added as a dependency. + * @param name the name of the module to be added as a dependency. + * @param version the optional version of the module to be added as a dependency. + * @param configuration the optional configuration of the module to be added as a dependency. + * @param classifier the optional classifier of the module artifact to be added as a dependency. + * @param ext the optional extension of the module artifact to be added as a dependency. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.create] + * @see [DependencyHandler.add] + */ +@Deprecated(message = "The dokkaGfmRuntime configuration has been deprecated for dependency declaration. Please use the 'dokkaGfmGeneratorRuntime' configuration instead.") +internal +fun DependencyHandler.`dokkaGfmRuntime`( + group: String, + name: String, + version: String? = null, + configuration: String? = null, + classifier: String? = null, + ext: String? = null, + dependencyConfiguration: Action? = null +): ExternalModuleDependency = addExternalModuleDependencyTo( + this, "dokkaGfmRuntime", group, name, version, configuration, classifier, ext, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaGfmRuntime' configuration. + * + * @param dependency dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +@Deprecated(message = "The dokkaGfmRuntime configuration has been deprecated for dependency declaration. Please use the 'dokkaGfmGeneratorRuntime' configuration instead.") +internal +fun DependencyHandler.`dokkaGfmRuntime`( + dependency: T, + dependencyConfiguration: T.() -> Unit +): T = add("dokkaGfmRuntime", dependency, dependencyConfiguration) + +/** + * Adds a dependency constraint to the 'dokkaGfmRuntime' configuration. + * + * @param constraintNotation the dependency constraint notation + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +@Deprecated(message = "The dokkaGfmRuntime configuration has been deprecated for dependency declaration. Please use the 'dokkaGfmGeneratorRuntime' configuration instead.") +internal +fun DependencyConstraintHandler.`dokkaGfmRuntime`(constraintNotation: Any): DependencyConstraint = + add("dokkaGfmRuntime", constraintNotation) + +/** + * Adds a dependency constraint to the 'dokkaGfmRuntime' configuration. + * + * @param constraintNotation the dependency constraint notation + * @param block the block to use to configure the dependency constraint + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +@Deprecated(message = "The dokkaGfmRuntime configuration has been deprecated for dependency declaration. Please use the 'dokkaGfmGeneratorRuntime' configuration instead.") +internal +fun DependencyConstraintHandler.`dokkaGfmRuntime`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint = + add("dokkaGfmRuntime", constraintNotation, block) + +/** + * Adds an artifact to the 'dokkaGfmRuntime' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaGfmRuntime`(artifactNotation: Any): PublishArtifact = + add("dokkaGfmRuntime", artifactNotation) + +/** + * Adds an artifact to the 'dokkaGfmRuntime' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @param configureAction The action to execute to configure the artifact. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaGfmRuntime`( + artifactNotation: Any, + configureAction: ConfigurablePublishArtifact.() -> Unit +): PublishArtifact = + add("dokkaGfmRuntime", artifactNotation, configureAction) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlGeneratorRuntimeConfigurationAccessors.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlGeneratorRuntimeConfigurationAccessors.kt new file mode 100644 index 00000000..66cb531f --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlGeneratorRuntimeConfigurationAccessors.kt @@ -0,0 +1,223 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Adds a dependency to the 'dokkaHtmlGeneratorRuntime' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlGeneratorRuntime`(dependencyNotation: Any): Dependency? = + add("dokkaHtmlGeneratorRuntime", dependencyNotation) + +/** + * Adds a dependency to the 'dokkaHtmlGeneratorRuntime' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlGeneratorRuntime`( + dependencyNotation: String, + dependencyConfiguration: Action +): ExternalModuleDependency = addDependencyTo( + this, "dokkaHtmlGeneratorRuntime", dependencyNotation, dependencyConfiguration +) as ExternalModuleDependency + +/** + * Adds a dependency to the 'dokkaHtmlGeneratorRuntime' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlGeneratorRuntime`( + dependencyNotation: Provider<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaHtmlGeneratorRuntime", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaHtmlGeneratorRuntime' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlGeneratorRuntime`( + dependencyNotation: ProviderConvertible<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaHtmlGeneratorRuntime", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaHtmlGeneratorRuntime' configuration. + * + * @param group the group of the module to be added as a dependency. + * @param name the name of the module to be added as a dependency. + * @param version the optional version of the module to be added as a dependency. + * @param configuration the optional configuration of the module to be added as a dependency. + * @param classifier the optional classifier of the module artifact to be added as a dependency. + * @param ext the optional extension of the module artifact to be added as a dependency. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.create] + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlGeneratorRuntime`( + group: String, + name: String, + version: String? = null, + configuration: String? = null, + classifier: String? = null, + ext: String? = null, + dependencyConfiguration: Action? = null +): ExternalModuleDependency = addExternalModuleDependencyTo( + this, "dokkaHtmlGeneratorRuntime", group, name, version, configuration, classifier, ext, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaHtmlGeneratorRuntime' configuration. + * + * @param dependency dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlGeneratorRuntime`( + dependency: T, + dependencyConfiguration: T.() -> Unit +): T = add("dokkaHtmlGeneratorRuntime", dependency, dependencyConfiguration) + +/** + * Adds a dependency constraint to the 'dokkaHtmlGeneratorRuntime' configuration. + * + * @param constraintNotation the dependency constraint notation + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +internal +fun DependencyConstraintHandler.`dokkaHtmlGeneratorRuntime`(constraintNotation: Any): DependencyConstraint = + add("dokkaHtmlGeneratorRuntime", constraintNotation) + +/** + * Adds a dependency constraint to the 'dokkaHtmlGeneratorRuntime' configuration. + * + * @param constraintNotation the dependency constraint notation + * @param block the block to use to configure the dependency constraint + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +internal +fun DependencyConstraintHandler.`dokkaHtmlGeneratorRuntime`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint = + add("dokkaHtmlGeneratorRuntime", constraintNotation, block) + +/** + * Adds an artifact to the 'dokkaHtmlGeneratorRuntime' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaHtmlGeneratorRuntime`(artifactNotation: Any): PublishArtifact = + add("dokkaHtmlGeneratorRuntime", artifactNotation) + +/** + * Adds an artifact to the 'dokkaHtmlGeneratorRuntime' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @param configureAction The action to execute to configure the artifact. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaHtmlGeneratorRuntime`( + artifactNotation: Any, + configureAction: ConfigurablePublishArtifact.() -> Unit +): PublishArtifact = + add("dokkaHtmlGeneratorRuntime", artifactNotation, configureAction) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlGeneratorRuntimeResolver~internalConfigurationAccessors.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlGeneratorRuntimeResolver~internalConfigurationAccessors.kt new file mode 100644 index 00000000..3d3f9c2a --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlGeneratorRuntimeResolver~internalConfigurationAccessors.kt @@ -0,0 +1,223 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Adds a dependency to the 'dokkaHtmlGeneratorRuntimeResolver~internal' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlGeneratorRuntimeResolver~internal`(dependencyNotation: Any): Dependency? = + add("dokkaHtmlGeneratorRuntimeResolver~internal", dependencyNotation) + +/** + * Adds a dependency to the 'dokkaHtmlGeneratorRuntimeResolver~internal' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlGeneratorRuntimeResolver~internal`( + dependencyNotation: String, + dependencyConfiguration: Action +): ExternalModuleDependency = addDependencyTo( + this, "dokkaHtmlGeneratorRuntimeResolver~internal", dependencyNotation, dependencyConfiguration +) as ExternalModuleDependency + +/** + * Adds a dependency to the 'dokkaHtmlGeneratorRuntimeResolver~internal' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlGeneratorRuntimeResolver~internal`( + dependencyNotation: Provider<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaHtmlGeneratorRuntimeResolver~internal", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaHtmlGeneratorRuntimeResolver~internal' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlGeneratorRuntimeResolver~internal`( + dependencyNotation: ProviderConvertible<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaHtmlGeneratorRuntimeResolver~internal", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaHtmlGeneratorRuntimeResolver~internal' configuration. + * + * @param group the group of the module to be added as a dependency. + * @param name the name of the module to be added as a dependency. + * @param version the optional version of the module to be added as a dependency. + * @param configuration the optional configuration of the module to be added as a dependency. + * @param classifier the optional classifier of the module artifact to be added as a dependency. + * @param ext the optional extension of the module artifact to be added as a dependency. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.create] + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlGeneratorRuntimeResolver~internal`( + group: String, + name: String, + version: String? = null, + configuration: String? = null, + classifier: String? = null, + ext: String? = null, + dependencyConfiguration: Action? = null +): ExternalModuleDependency = addExternalModuleDependencyTo( + this, "dokkaHtmlGeneratorRuntimeResolver~internal", group, name, version, configuration, classifier, ext, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaHtmlGeneratorRuntimeResolver~internal' configuration. + * + * @param dependency dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlGeneratorRuntimeResolver~internal`( + dependency: T, + dependencyConfiguration: T.() -> Unit +): T = add("dokkaHtmlGeneratorRuntimeResolver~internal", dependency, dependencyConfiguration) + +/** + * Adds a dependency constraint to the 'dokkaHtmlGeneratorRuntimeResolver~internal' configuration. + * + * @param constraintNotation the dependency constraint notation + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +internal +fun DependencyConstraintHandler.`dokkaHtmlGeneratorRuntimeResolver~internal`(constraintNotation: Any): DependencyConstraint = + add("dokkaHtmlGeneratorRuntimeResolver~internal", constraintNotation) + +/** + * Adds a dependency constraint to the 'dokkaHtmlGeneratorRuntimeResolver~internal' configuration. + * + * @param constraintNotation the dependency constraint notation + * @param block the block to use to configure the dependency constraint + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +internal +fun DependencyConstraintHandler.`dokkaHtmlGeneratorRuntimeResolver~internal`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint = + add("dokkaHtmlGeneratorRuntimeResolver~internal", constraintNotation, block) + +/** + * Adds an artifact to the 'dokkaHtmlGeneratorRuntimeResolver~internal' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaHtmlGeneratorRuntimeResolver~internal`(artifactNotation: Any): PublishArtifact = + add("dokkaHtmlGeneratorRuntimeResolver~internal", artifactNotation) + +/** + * Adds an artifact to the 'dokkaHtmlGeneratorRuntimeResolver~internal' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @param configureAction The action to execute to configure the artifact. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaHtmlGeneratorRuntimeResolver~internal`( + artifactNotation: Any, + configureAction: ConfigurablePublishArtifact.() -> Unit +): PublishArtifact = + add("dokkaHtmlGeneratorRuntimeResolver~internal", artifactNotation, configureAction) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlModuleOutputDirectoriesConsumable~internalConfigurationAccessors.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlModuleOutputDirectoriesConsumable~internalConfigurationAccessors.kt new file mode 100644 index 00000000..5076aa75 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlModuleOutputDirectoriesConsumable~internalConfigurationAccessors.kt @@ -0,0 +1,223 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Adds a dependency to the 'dokkaHtmlModuleOutputDirectoriesConsumable~internal' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlModuleOutputDirectoriesConsumable~internal`(dependencyNotation: Any): Dependency? = + add("dokkaHtmlModuleOutputDirectoriesConsumable~internal", dependencyNotation) + +/** + * Adds a dependency to the 'dokkaHtmlModuleOutputDirectoriesConsumable~internal' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlModuleOutputDirectoriesConsumable~internal`( + dependencyNotation: String, + dependencyConfiguration: Action +): ExternalModuleDependency = addDependencyTo( + this, "dokkaHtmlModuleOutputDirectoriesConsumable~internal", dependencyNotation, dependencyConfiguration +) as ExternalModuleDependency + +/** + * Adds a dependency to the 'dokkaHtmlModuleOutputDirectoriesConsumable~internal' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlModuleOutputDirectoriesConsumable~internal`( + dependencyNotation: Provider<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaHtmlModuleOutputDirectoriesConsumable~internal", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaHtmlModuleOutputDirectoriesConsumable~internal' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlModuleOutputDirectoriesConsumable~internal`( + dependencyNotation: ProviderConvertible<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaHtmlModuleOutputDirectoriesConsumable~internal", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaHtmlModuleOutputDirectoriesConsumable~internal' configuration. + * + * @param group the group of the module to be added as a dependency. + * @param name the name of the module to be added as a dependency. + * @param version the optional version of the module to be added as a dependency. + * @param configuration the optional configuration of the module to be added as a dependency. + * @param classifier the optional classifier of the module artifact to be added as a dependency. + * @param ext the optional extension of the module artifact to be added as a dependency. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.create] + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlModuleOutputDirectoriesConsumable~internal`( + group: String, + name: String, + version: String? = null, + configuration: String? = null, + classifier: String? = null, + ext: String? = null, + dependencyConfiguration: Action? = null +): ExternalModuleDependency = addExternalModuleDependencyTo( + this, "dokkaHtmlModuleOutputDirectoriesConsumable~internal", group, name, version, configuration, classifier, ext, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaHtmlModuleOutputDirectoriesConsumable~internal' configuration. + * + * @param dependency dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlModuleOutputDirectoriesConsumable~internal`( + dependency: T, + dependencyConfiguration: T.() -> Unit +): T = add("dokkaHtmlModuleOutputDirectoriesConsumable~internal", dependency, dependencyConfiguration) + +/** + * Adds a dependency constraint to the 'dokkaHtmlModuleOutputDirectoriesConsumable~internal' configuration. + * + * @param constraintNotation the dependency constraint notation + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +internal +fun DependencyConstraintHandler.`dokkaHtmlModuleOutputDirectoriesConsumable~internal`(constraintNotation: Any): DependencyConstraint = + add("dokkaHtmlModuleOutputDirectoriesConsumable~internal", constraintNotation) + +/** + * Adds a dependency constraint to the 'dokkaHtmlModuleOutputDirectoriesConsumable~internal' configuration. + * + * @param constraintNotation the dependency constraint notation + * @param block the block to use to configure the dependency constraint + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +internal +fun DependencyConstraintHandler.`dokkaHtmlModuleOutputDirectoriesConsumable~internal`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint = + add("dokkaHtmlModuleOutputDirectoriesConsumable~internal", constraintNotation, block) + +/** + * Adds an artifact to the 'dokkaHtmlModuleOutputDirectoriesConsumable~internal' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaHtmlModuleOutputDirectoriesConsumable~internal`(artifactNotation: Any): PublishArtifact = + add("dokkaHtmlModuleOutputDirectoriesConsumable~internal", artifactNotation) + +/** + * Adds an artifact to the 'dokkaHtmlModuleOutputDirectoriesConsumable~internal' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @param configureAction The action to execute to configure the artifact. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaHtmlModuleOutputDirectoriesConsumable~internal`( + artifactNotation: Any, + configureAction: ConfigurablePublishArtifact.() -> Unit +): PublishArtifact = + add("dokkaHtmlModuleOutputDirectoriesConsumable~internal", artifactNotation, configureAction) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlModuleOutputDirectoriesResolver~internalConfigurationAccessors.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlModuleOutputDirectoriesResolver~internalConfigurationAccessors.kt new file mode 100644 index 00000000..c3cc26e4 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlModuleOutputDirectoriesResolver~internalConfigurationAccessors.kt @@ -0,0 +1,223 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Adds a dependency to the 'dokkaHtmlModuleOutputDirectoriesResolver~internal' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlModuleOutputDirectoriesResolver~internal`(dependencyNotation: Any): Dependency? = + add("dokkaHtmlModuleOutputDirectoriesResolver~internal", dependencyNotation) + +/** + * Adds a dependency to the 'dokkaHtmlModuleOutputDirectoriesResolver~internal' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlModuleOutputDirectoriesResolver~internal`( + dependencyNotation: String, + dependencyConfiguration: Action +): ExternalModuleDependency = addDependencyTo( + this, "dokkaHtmlModuleOutputDirectoriesResolver~internal", dependencyNotation, dependencyConfiguration +) as ExternalModuleDependency + +/** + * Adds a dependency to the 'dokkaHtmlModuleOutputDirectoriesResolver~internal' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlModuleOutputDirectoriesResolver~internal`( + dependencyNotation: Provider<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaHtmlModuleOutputDirectoriesResolver~internal", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaHtmlModuleOutputDirectoriesResolver~internal' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlModuleOutputDirectoriesResolver~internal`( + dependencyNotation: ProviderConvertible<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaHtmlModuleOutputDirectoriesResolver~internal", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaHtmlModuleOutputDirectoriesResolver~internal' configuration. + * + * @param group the group of the module to be added as a dependency. + * @param name the name of the module to be added as a dependency. + * @param version the optional version of the module to be added as a dependency. + * @param configuration the optional configuration of the module to be added as a dependency. + * @param classifier the optional classifier of the module artifact to be added as a dependency. + * @param ext the optional extension of the module artifact to be added as a dependency. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.create] + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlModuleOutputDirectoriesResolver~internal`( + group: String, + name: String, + version: String? = null, + configuration: String? = null, + classifier: String? = null, + ext: String? = null, + dependencyConfiguration: Action? = null +): ExternalModuleDependency = addExternalModuleDependencyTo( + this, "dokkaHtmlModuleOutputDirectoriesResolver~internal", group, name, version, configuration, classifier, ext, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaHtmlModuleOutputDirectoriesResolver~internal' configuration. + * + * @param dependency dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlModuleOutputDirectoriesResolver~internal`( + dependency: T, + dependencyConfiguration: T.() -> Unit +): T = add("dokkaHtmlModuleOutputDirectoriesResolver~internal", dependency, dependencyConfiguration) + +/** + * Adds a dependency constraint to the 'dokkaHtmlModuleOutputDirectoriesResolver~internal' configuration. + * + * @param constraintNotation the dependency constraint notation + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +internal +fun DependencyConstraintHandler.`dokkaHtmlModuleOutputDirectoriesResolver~internal`(constraintNotation: Any): DependencyConstraint = + add("dokkaHtmlModuleOutputDirectoriesResolver~internal", constraintNotation) + +/** + * Adds a dependency constraint to the 'dokkaHtmlModuleOutputDirectoriesResolver~internal' configuration. + * + * @param constraintNotation the dependency constraint notation + * @param block the block to use to configure the dependency constraint + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +internal +fun DependencyConstraintHandler.`dokkaHtmlModuleOutputDirectoriesResolver~internal`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint = + add("dokkaHtmlModuleOutputDirectoriesResolver~internal", constraintNotation, block) + +/** + * Adds an artifact to the 'dokkaHtmlModuleOutputDirectoriesResolver~internal' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaHtmlModuleOutputDirectoriesResolver~internal`(artifactNotation: Any): PublishArtifact = + add("dokkaHtmlModuleOutputDirectoriesResolver~internal", artifactNotation) + +/** + * Adds an artifact to the 'dokkaHtmlModuleOutputDirectoriesResolver~internal' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @param configureAction The action to execute to configure the artifact. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaHtmlModuleOutputDirectoriesResolver~internal`( + artifactNotation: Any, + configureAction: ConfigurablePublishArtifact.() -> Unit +): PublishArtifact = + add("dokkaHtmlModuleOutputDirectoriesResolver~internal", artifactNotation, configureAction) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPluginConfigurationAccessors.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPluginConfigurationAccessors.kt new file mode 100644 index 00000000..08211c00 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPluginConfigurationAccessors.kt @@ -0,0 +1,223 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Adds a dependency to the 'dokkaHtmlPlugin' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPlugin`(dependencyNotation: Any): Dependency? = + add("dokkaHtmlPlugin", dependencyNotation) + +/** + * Adds a dependency to the 'dokkaHtmlPlugin' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPlugin`( + dependencyNotation: String, + dependencyConfiguration: Action +): ExternalModuleDependency = addDependencyTo( + this, "dokkaHtmlPlugin", dependencyNotation, dependencyConfiguration +) as ExternalModuleDependency + +/** + * Adds a dependency to the 'dokkaHtmlPlugin' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPlugin`( + dependencyNotation: Provider<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaHtmlPlugin", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaHtmlPlugin' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPlugin`( + dependencyNotation: ProviderConvertible<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaHtmlPlugin", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaHtmlPlugin' configuration. + * + * @param group the group of the module to be added as a dependency. + * @param name the name of the module to be added as a dependency. + * @param version the optional version of the module to be added as a dependency. + * @param configuration the optional configuration of the module to be added as a dependency. + * @param classifier the optional classifier of the module artifact to be added as a dependency. + * @param ext the optional extension of the module artifact to be added as a dependency. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.create] + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPlugin`( + group: String, + name: String, + version: String? = null, + configuration: String? = null, + classifier: String? = null, + ext: String? = null, + dependencyConfiguration: Action? = null +): ExternalModuleDependency = addExternalModuleDependencyTo( + this, "dokkaHtmlPlugin", group, name, version, configuration, classifier, ext, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaHtmlPlugin' configuration. + * + * @param dependency dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPlugin`( + dependency: T, + dependencyConfiguration: T.() -> Unit +): T = add("dokkaHtmlPlugin", dependency, dependencyConfiguration) + +/** + * Adds a dependency constraint to the 'dokkaHtmlPlugin' configuration. + * + * @param constraintNotation the dependency constraint notation + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +internal +fun DependencyConstraintHandler.`dokkaHtmlPlugin`(constraintNotation: Any): DependencyConstraint = + add("dokkaHtmlPlugin", constraintNotation) + +/** + * Adds a dependency constraint to the 'dokkaHtmlPlugin' configuration. + * + * @param constraintNotation the dependency constraint notation + * @param block the block to use to configure the dependency constraint + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +internal +fun DependencyConstraintHandler.`dokkaHtmlPlugin`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint = + add("dokkaHtmlPlugin", constraintNotation, block) + +/** + * Adds an artifact to the 'dokkaHtmlPlugin' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaHtmlPlugin`(artifactNotation: Any): PublishArtifact = + add("dokkaHtmlPlugin", artifactNotation) + +/** + * Adds an artifact to the 'dokkaHtmlPlugin' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @param configureAction The action to execute to configure the artifact. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaHtmlPlugin`( + artifactNotation: Any, + configureAction: ConfigurablePublishArtifact.() -> Unit +): PublishArtifact = + add("dokkaHtmlPlugin", artifactNotation, configureAction) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPluginIntransitiveResolver~internalConfigurationAccessors.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPluginIntransitiveResolver~internalConfigurationAccessors.kt new file mode 100644 index 00000000..a4dc6976 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPluginIntransitiveResolver~internalConfigurationAccessors.kt @@ -0,0 +1,223 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Adds a dependency to the 'dokkaHtmlPluginIntransitiveResolver~internal' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPluginIntransitiveResolver~internal`(dependencyNotation: Any): Dependency? = + add("dokkaHtmlPluginIntransitiveResolver~internal", dependencyNotation) + +/** + * Adds a dependency to the 'dokkaHtmlPluginIntransitiveResolver~internal' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPluginIntransitiveResolver~internal`( + dependencyNotation: String, + dependencyConfiguration: Action +): ExternalModuleDependency = addDependencyTo( + this, "dokkaHtmlPluginIntransitiveResolver~internal", dependencyNotation, dependencyConfiguration +) as ExternalModuleDependency + +/** + * Adds a dependency to the 'dokkaHtmlPluginIntransitiveResolver~internal' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPluginIntransitiveResolver~internal`( + dependencyNotation: Provider<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaHtmlPluginIntransitiveResolver~internal", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaHtmlPluginIntransitiveResolver~internal' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPluginIntransitiveResolver~internal`( + dependencyNotation: ProviderConvertible<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaHtmlPluginIntransitiveResolver~internal", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaHtmlPluginIntransitiveResolver~internal' configuration. + * + * @param group the group of the module to be added as a dependency. + * @param name the name of the module to be added as a dependency. + * @param version the optional version of the module to be added as a dependency. + * @param configuration the optional configuration of the module to be added as a dependency. + * @param classifier the optional classifier of the module artifact to be added as a dependency. + * @param ext the optional extension of the module artifact to be added as a dependency. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.create] + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPluginIntransitiveResolver~internal`( + group: String, + name: String, + version: String? = null, + configuration: String? = null, + classifier: String? = null, + ext: String? = null, + dependencyConfiguration: Action? = null +): ExternalModuleDependency = addExternalModuleDependencyTo( + this, "dokkaHtmlPluginIntransitiveResolver~internal", group, name, version, configuration, classifier, ext, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaHtmlPluginIntransitiveResolver~internal' configuration. + * + * @param dependency dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPluginIntransitiveResolver~internal`( + dependency: T, + dependencyConfiguration: T.() -> Unit +): T = add("dokkaHtmlPluginIntransitiveResolver~internal", dependency, dependencyConfiguration) + +/** + * Adds a dependency constraint to the 'dokkaHtmlPluginIntransitiveResolver~internal' configuration. + * + * @param constraintNotation the dependency constraint notation + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +internal +fun DependencyConstraintHandler.`dokkaHtmlPluginIntransitiveResolver~internal`(constraintNotation: Any): DependencyConstraint = + add("dokkaHtmlPluginIntransitiveResolver~internal", constraintNotation) + +/** + * Adds a dependency constraint to the 'dokkaHtmlPluginIntransitiveResolver~internal' configuration. + * + * @param constraintNotation the dependency constraint notation + * @param block the block to use to configure the dependency constraint + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +internal +fun DependencyConstraintHandler.`dokkaHtmlPluginIntransitiveResolver~internal`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint = + add("dokkaHtmlPluginIntransitiveResolver~internal", constraintNotation, block) + +/** + * Adds an artifact to the 'dokkaHtmlPluginIntransitiveResolver~internal' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaHtmlPluginIntransitiveResolver~internal`(artifactNotation: Any): PublishArtifact = + add("dokkaHtmlPluginIntransitiveResolver~internal", artifactNotation) + +/** + * Adds an artifact to the 'dokkaHtmlPluginIntransitiveResolver~internal' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @param configureAction The action to execute to configure the artifact. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaHtmlPluginIntransitiveResolver~internal`( + artifactNotation: Any, + configureAction: ConfigurablePublishArtifact.() -> Unit +): PublishArtifact = + add("dokkaHtmlPluginIntransitiveResolver~internal", artifactNotation, configureAction) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginApiOnlyConsumable~internalConfigurationAccessors.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginApiOnlyConsumable~internalConfigurationAccessors.kt new file mode 100644 index 00000000..8717fae1 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginApiOnlyConsumable~internalConfigurationAccessors.kt @@ -0,0 +1,223 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Adds a dependency to the 'dokkaHtmlPublicationPluginApiOnlyConsumable~internal' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPublicationPluginApiOnlyConsumable~internal`(dependencyNotation: Any): Dependency? = + add("dokkaHtmlPublicationPluginApiOnlyConsumable~internal", dependencyNotation) + +/** + * Adds a dependency to the 'dokkaHtmlPublicationPluginApiOnlyConsumable~internal' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPublicationPluginApiOnlyConsumable~internal`( + dependencyNotation: String, + dependencyConfiguration: Action +): ExternalModuleDependency = addDependencyTo( + this, "dokkaHtmlPublicationPluginApiOnlyConsumable~internal", dependencyNotation, dependencyConfiguration +) as ExternalModuleDependency + +/** + * Adds a dependency to the 'dokkaHtmlPublicationPluginApiOnlyConsumable~internal' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPublicationPluginApiOnlyConsumable~internal`( + dependencyNotation: Provider<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaHtmlPublicationPluginApiOnlyConsumable~internal", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaHtmlPublicationPluginApiOnlyConsumable~internal' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPublicationPluginApiOnlyConsumable~internal`( + dependencyNotation: ProviderConvertible<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaHtmlPublicationPluginApiOnlyConsumable~internal", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaHtmlPublicationPluginApiOnlyConsumable~internal' configuration. + * + * @param group the group of the module to be added as a dependency. + * @param name the name of the module to be added as a dependency. + * @param version the optional version of the module to be added as a dependency. + * @param configuration the optional configuration of the module to be added as a dependency. + * @param classifier the optional classifier of the module artifact to be added as a dependency. + * @param ext the optional extension of the module artifact to be added as a dependency. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.create] + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPublicationPluginApiOnlyConsumable~internal`( + group: String, + name: String, + version: String? = null, + configuration: String? = null, + classifier: String? = null, + ext: String? = null, + dependencyConfiguration: Action? = null +): ExternalModuleDependency = addExternalModuleDependencyTo( + this, "dokkaHtmlPublicationPluginApiOnlyConsumable~internal", group, name, version, configuration, classifier, ext, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaHtmlPublicationPluginApiOnlyConsumable~internal' configuration. + * + * @param dependency dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPublicationPluginApiOnlyConsumable~internal`( + dependency: T, + dependencyConfiguration: T.() -> Unit +): T = add("dokkaHtmlPublicationPluginApiOnlyConsumable~internal", dependency, dependencyConfiguration) + +/** + * Adds a dependency constraint to the 'dokkaHtmlPublicationPluginApiOnlyConsumable~internal' configuration. + * + * @param constraintNotation the dependency constraint notation + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +internal +fun DependencyConstraintHandler.`dokkaHtmlPublicationPluginApiOnlyConsumable~internal`(constraintNotation: Any): DependencyConstraint = + add("dokkaHtmlPublicationPluginApiOnlyConsumable~internal", constraintNotation) + +/** + * Adds a dependency constraint to the 'dokkaHtmlPublicationPluginApiOnlyConsumable~internal' configuration. + * + * @param constraintNotation the dependency constraint notation + * @param block the block to use to configure the dependency constraint + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +internal +fun DependencyConstraintHandler.`dokkaHtmlPublicationPluginApiOnlyConsumable~internal`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint = + add("dokkaHtmlPublicationPluginApiOnlyConsumable~internal", constraintNotation, block) + +/** + * Adds an artifact to the 'dokkaHtmlPublicationPluginApiOnlyConsumable~internal' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaHtmlPublicationPluginApiOnlyConsumable~internal`(artifactNotation: Any): PublishArtifact = + add("dokkaHtmlPublicationPluginApiOnlyConsumable~internal", artifactNotation) + +/** + * Adds an artifact to the 'dokkaHtmlPublicationPluginApiOnlyConsumable~internal' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @param configureAction The action to execute to configure the artifact. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaHtmlPublicationPluginApiOnlyConsumable~internal`( + artifactNotation: Any, + configureAction: ConfigurablePublishArtifact.() -> Unit +): PublishArtifact = + add("dokkaHtmlPublicationPluginApiOnlyConsumable~internal", artifactNotation, configureAction) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginApiOnly~internalConfigurationAccessors.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginApiOnly~internalConfigurationAccessors.kt new file mode 100644 index 00000000..a20bf34d --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginApiOnly~internalConfigurationAccessors.kt @@ -0,0 +1,223 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Adds a dependency to the 'dokkaHtmlPublicationPluginApiOnly~internal' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPublicationPluginApiOnly~internal`(dependencyNotation: Any): Dependency? = + add("dokkaHtmlPublicationPluginApiOnly~internal", dependencyNotation) + +/** + * Adds a dependency to the 'dokkaHtmlPublicationPluginApiOnly~internal' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPublicationPluginApiOnly~internal`( + dependencyNotation: String, + dependencyConfiguration: Action +): ExternalModuleDependency = addDependencyTo( + this, "dokkaHtmlPublicationPluginApiOnly~internal", dependencyNotation, dependencyConfiguration +) as ExternalModuleDependency + +/** + * Adds a dependency to the 'dokkaHtmlPublicationPluginApiOnly~internal' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPublicationPluginApiOnly~internal`( + dependencyNotation: Provider<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaHtmlPublicationPluginApiOnly~internal", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaHtmlPublicationPluginApiOnly~internal' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPublicationPluginApiOnly~internal`( + dependencyNotation: ProviderConvertible<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaHtmlPublicationPluginApiOnly~internal", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaHtmlPublicationPluginApiOnly~internal' configuration. + * + * @param group the group of the module to be added as a dependency. + * @param name the name of the module to be added as a dependency. + * @param version the optional version of the module to be added as a dependency. + * @param configuration the optional configuration of the module to be added as a dependency. + * @param classifier the optional classifier of the module artifact to be added as a dependency. + * @param ext the optional extension of the module artifact to be added as a dependency. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.create] + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPublicationPluginApiOnly~internal`( + group: String, + name: String, + version: String? = null, + configuration: String? = null, + classifier: String? = null, + ext: String? = null, + dependencyConfiguration: Action? = null +): ExternalModuleDependency = addExternalModuleDependencyTo( + this, "dokkaHtmlPublicationPluginApiOnly~internal", group, name, version, configuration, classifier, ext, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaHtmlPublicationPluginApiOnly~internal' configuration. + * + * @param dependency dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPublicationPluginApiOnly~internal`( + dependency: T, + dependencyConfiguration: T.() -> Unit +): T = add("dokkaHtmlPublicationPluginApiOnly~internal", dependency, dependencyConfiguration) + +/** + * Adds a dependency constraint to the 'dokkaHtmlPublicationPluginApiOnly~internal' configuration. + * + * @param constraintNotation the dependency constraint notation + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +internal +fun DependencyConstraintHandler.`dokkaHtmlPublicationPluginApiOnly~internal`(constraintNotation: Any): DependencyConstraint = + add("dokkaHtmlPublicationPluginApiOnly~internal", constraintNotation) + +/** + * Adds a dependency constraint to the 'dokkaHtmlPublicationPluginApiOnly~internal' configuration. + * + * @param constraintNotation the dependency constraint notation + * @param block the block to use to configure the dependency constraint + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +internal +fun DependencyConstraintHandler.`dokkaHtmlPublicationPluginApiOnly~internal`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint = + add("dokkaHtmlPublicationPluginApiOnly~internal", constraintNotation, block) + +/** + * Adds an artifact to the 'dokkaHtmlPublicationPluginApiOnly~internal' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaHtmlPublicationPluginApiOnly~internal`(artifactNotation: Any): PublishArtifact = + add("dokkaHtmlPublicationPluginApiOnly~internal", artifactNotation) + +/** + * Adds an artifact to the 'dokkaHtmlPublicationPluginApiOnly~internal' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @param configureAction The action to execute to configure the artifact. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaHtmlPublicationPluginApiOnly~internal`( + artifactNotation: Any, + configureAction: ConfigurablePublishArtifact.() -> Unit +): PublishArtifact = + add("dokkaHtmlPublicationPluginApiOnly~internal", artifactNotation, configureAction) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginConfigurationAccessors.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginConfigurationAccessors.kt new file mode 100644 index 00000000..ac9e43f0 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginConfigurationAccessors.kt @@ -0,0 +1,223 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Adds a dependency to the 'dokkaHtmlPublicationPlugin' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPublicationPlugin`(dependencyNotation: Any): Dependency? = + add("dokkaHtmlPublicationPlugin", dependencyNotation) + +/** + * Adds a dependency to the 'dokkaHtmlPublicationPlugin' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPublicationPlugin`( + dependencyNotation: String, + dependencyConfiguration: Action +): ExternalModuleDependency = addDependencyTo( + this, "dokkaHtmlPublicationPlugin", dependencyNotation, dependencyConfiguration +) as ExternalModuleDependency + +/** + * Adds a dependency to the 'dokkaHtmlPublicationPlugin' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPublicationPlugin`( + dependencyNotation: Provider<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaHtmlPublicationPlugin", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaHtmlPublicationPlugin' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPublicationPlugin`( + dependencyNotation: ProviderConvertible<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaHtmlPublicationPlugin", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaHtmlPublicationPlugin' configuration. + * + * @param group the group of the module to be added as a dependency. + * @param name the name of the module to be added as a dependency. + * @param version the optional version of the module to be added as a dependency. + * @param configuration the optional configuration of the module to be added as a dependency. + * @param classifier the optional classifier of the module artifact to be added as a dependency. + * @param ext the optional extension of the module artifact to be added as a dependency. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.create] + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPublicationPlugin`( + group: String, + name: String, + version: String? = null, + configuration: String? = null, + classifier: String? = null, + ext: String? = null, + dependencyConfiguration: Action? = null +): ExternalModuleDependency = addExternalModuleDependencyTo( + this, "dokkaHtmlPublicationPlugin", group, name, version, configuration, classifier, ext, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaHtmlPublicationPlugin' configuration. + * + * @param dependency dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPublicationPlugin`( + dependency: T, + dependencyConfiguration: T.() -> Unit +): T = add("dokkaHtmlPublicationPlugin", dependency, dependencyConfiguration) + +/** + * Adds a dependency constraint to the 'dokkaHtmlPublicationPlugin' configuration. + * + * @param constraintNotation the dependency constraint notation + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +internal +fun DependencyConstraintHandler.`dokkaHtmlPublicationPlugin`(constraintNotation: Any): DependencyConstraint = + add("dokkaHtmlPublicationPlugin", constraintNotation) + +/** + * Adds a dependency constraint to the 'dokkaHtmlPublicationPlugin' configuration. + * + * @param constraintNotation the dependency constraint notation + * @param block the block to use to configure the dependency constraint + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +internal +fun DependencyConstraintHandler.`dokkaHtmlPublicationPlugin`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint = + add("dokkaHtmlPublicationPlugin", constraintNotation, block) + +/** + * Adds an artifact to the 'dokkaHtmlPublicationPlugin' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaHtmlPublicationPlugin`(artifactNotation: Any): PublishArtifact = + add("dokkaHtmlPublicationPlugin", artifactNotation) + +/** + * Adds an artifact to the 'dokkaHtmlPublicationPlugin' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @param configureAction The action to execute to configure the artifact. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaHtmlPublicationPlugin`( + artifactNotation: Any, + configureAction: ConfigurablePublishArtifact.() -> Unit +): PublishArtifact = + add("dokkaHtmlPublicationPlugin", artifactNotation, configureAction) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginResolver~internalConfigurationAccessors.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginResolver~internalConfigurationAccessors.kt new file mode 100644 index 00000000..a51f01e8 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaHtmlPublicationPluginResolver~internalConfigurationAccessors.kt @@ -0,0 +1,223 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Adds a dependency to the 'dokkaHtmlPublicationPluginResolver~internal' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPublicationPluginResolver~internal`(dependencyNotation: Any): Dependency? = + add("dokkaHtmlPublicationPluginResolver~internal", dependencyNotation) + +/** + * Adds a dependency to the 'dokkaHtmlPublicationPluginResolver~internal' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPublicationPluginResolver~internal`( + dependencyNotation: String, + dependencyConfiguration: Action +): ExternalModuleDependency = addDependencyTo( + this, "dokkaHtmlPublicationPluginResolver~internal", dependencyNotation, dependencyConfiguration +) as ExternalModuleDependency + +/** + * Adds a dependency to the 'dokkaHtmlPublicationPluginResolver~internal' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPublicationPluginResolver~internal`( + dependencyNotation: Provider<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaHtmlPublicationPluginResolver~internal", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaHtmlPublicationPluginResolver~internal' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPublicationPluginResolver~internal`( + dependencyNotation: ProviderConvertible<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaHtmlPublicationPluginResolver~internal", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaHtmlPublicationPluginResolver~internal' configuration. + * + * @param group the group of the module to be added as a dependency. + * @param name the name of the module to be added as a dependency. + * @param version the optional version of the module to be added as a dependency. + * @param configuration the optional configuration of the module to be added as a dependency. + * @param classifier the optional classifier of the module artifact to be added as a dependency. + * @param ext the optional extension of the module artifact to be added as a dependency. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.create] + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPublicationPluginResolver~internal`( + group: String, + name: String, + version: String? = null, + configuration: String? = null, + classifier: String? = null, + ext: String? = null, + dependencyConfiguration: Action? = null +): ExternalModuleDependency = addExternalModuleDependencyTo( + this, "dokkaHtmlPublicationPluginResolver~internal", group, name, version, configuration, classifier, ext, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaHtmlPublicationPluginResolver~internal' configuration. + * + * @param dependency dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaHtmlPublicationPluginResolver~internal`( + dependency: T, + dependencyConfiguration: T.() -> Unit +): T = add("dokkaHtmlPublicationPluginResolver~internal", dependency, dependencyConfiguration) + +/** + * Adds a dependency constraint to the 'dokkaHtmlPublicationPluginResolver~internal' configuration. + * + * @param constraintNotation the dependency constraint notation + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +internal +fun DependencyConstraintHandler.`dokkaHtmlPublicationPluginResolver~internal`(constraintNotation: Any): DependencyConstraint = + add("dokkaHtmlPublicationPluginResolver~internal", constraintNotation) + +/** + * Adds a dependency constraint to the 'dokkaHtmlPublicationPluginResolver~internal' configuration. + * + * @param constraintNotation the dependency constraint notation + * @param block the block to use to configure the dependency constraint + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +internal +fun DependencyConstraintHandler.`dokkaHtmlPublicationPluginResolver~internal`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint = + add("dokkaHtmlPublicationPluginResolver~internal", constraintNotation, block) + +/** + * Adds an artifact to the 'dokkaHtmlPublicationPluginResolver~internal' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaHtmlPublicationPluginResolver~internal`(artifactNotation: Any): PublishArtifact = + add("dokkaHtmlPublicationPluginResolver~internal", artifactNotation) + +/** + * Adds an artifact to the 'dokkaHtmlPublicationPluginResolver~internal' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @param configureAction The action to execute to configure the artifact. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaHtmlPublicationPluginResolver~internal`( + artifactNotation: Any, + configureAction: ConfigurablePublishArtifact.() -> Unit +): PublishArtifact = + add("dokkaHtmlPublicationPluginResolver~internal", artifactNotation, configureAction) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaJekyllPluginConfigurationAccessors.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaJekyllPluginConfigurationAccessors.kt new file mode 100644 index 00000000..4474d243 --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaJekyllPluginConfigurationAccessors.kt @@ -0,0 +1,231 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Adds a dependency to the 'dokkaJekyllPlugin' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +@Deprecated(message = "The dokkaJekyllPlugin configuration has been deprecated for dependency declaration. Please use the 'dokkaJekyllPlugin' configuration instead.") +internal +fun DependencyHandler.`dokkaJekyllPlugin`(dependencyNotation: Any): Dependency? = + add("dokkaJekyllPlugin", dependencyNotation) + +/** + * Adds a dependency to the 'dokkaJekyllPlugin' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +@Deprecated(message = "The dokkaJekyllPlugin configuration has been deprecated for dependency declaration. Please use the 'dokkaJekyllPlugin' configuration instead.") +internal +fun DependencyHandler.`dokkaJekyllPlugin`( + dependencyNotation: String, + dependencyConfiguration: Action +): ExternalModuleDependency = addDependencyTo( + this, "dokkaJekyllPlugin", dependencyNotation, dependencyConfiguration +) as ExternalModuleDependency + +/** + * Adds a dependency to the 'dokkaJekyllPlugin' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +@Deprecated(message = "The dokkaJekyllPlugin configuration has been deprecated for dependency declaration. Please use the 'dokkaJekyllPlugin' configuration instead.") +internal +fun DependencyHandler.`dokkaJekyllPlugin`( + dependencyNotation: Provider<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaJekyllPlugin", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaJekyllPlugin' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +@Deprecated(message = "The dokkaJekyllPlugin configuration has been deprecated for dependency declaration. Please use the 'dokkaJekyllPlugin' configuration instead.") +internal +fun DependencyHandler.`dokkaJekyllPlugin`( + dependencyNotation: ProviderConvertible<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaJekyllPlugin", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaJekyllPlugin' configuration. + * + * @param group the group of the module to be added as a dependency. + * @param name the name of the module to be added as a dependency. + * @param version the optional version of the module to be added as a dependency. + * @param configuration the optional configuration of the module to be added as a dependency. + * @param classifier the optional classifier of the module artifact to be added as a dependency. + * @param ext the optional extension of the module artifact to be added as a dependency. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.create] + * @see [DependencyHandler.add] + */ +@Deprecated(message = "The dokkaJekyllPlugin configuration has been deprecated for dependency declaration. Please use the 'dokkaJekyllPlugin' configuration instead.") +internal +fun DependencyHandler.`dokkaJekyllPlugin`( + group: String, + name: String, + version: String? = null, + configuration: String? = null, + classifier: String? = null, + ext: String? = null, + dependencyConfiguration: Action? = null +): ExternalModuleDependency = addExternalModuleDependencyTo( + this, "dokkaJekyllPlugin", group, name, version, configuration, classifier, ext, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaJekyllPlugin' configuration. + * + * @param dependency dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +@Deprecated(message = "The dokkaJekyllPlugin configuration has been deprecated for dependency declaration. Please use the 'dokkaJekyllPlugin' configuration instead.") +internal +fun DependencyHandler.`dokkaJekyllPlugin`( + dependency: T, + dependencyConfiguration: T.() -> Unit +): T = add("dokkaJekyllPlugin", dependency, dependencyConfiguration) + +/** + * Adds a dependency constraint to the 'dokkaJekyllPlugin' configuration. + * + * @param constraintNotation the dependency constraint notation + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +@Deprecated(message = "The dokkaJekyllPlugin configuration has been deprecated for dependency declaration. Please use the 'dokkaJekyllPlugin' configuration instead.") +internal +fun DependencyConstraintHandler.`dokkaJekyllPlugin`(constraintNotation: Any): DependencyConstraint = + add("dokkaJekyllPlugin", constraintNotation) + +/** + * Adds a dependency constraint to the 'dokkaJekyllPlugin' configuration. + * + * @param constraintNotation the dependency constraint notation + * @param block the block to use to configure the dependency constraint + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +@Deprecated(message = "The dokkaJekyllPlugin configuration has been deprecated for dependency declaration. Please use the 'dokkaJekyllPlugin' configuration instead.") +internal +fun DependencyConstraintHandler.`dokkaJekyllPlugin`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint = + add("dokkaJekyllPlugin", constraintNotation, block) + +/** + * Adds an artifact to the 'dokkaJekyllPlugin' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaJekyllPlugin`(artifactNotation: Any): PublishArtifact = + add("dokkaJekyllPlugin", artifactNotation) + +/** + * Adds an artifact to the 'dokkaJekyllPlugin' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @param configureAction The action to execute to configure the artifact. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaJekyllPlugin`( + artifactNotation: Any, + configureAction: ConfigurablePublishArtifact.() -> Unit +): PublishArtifact = + add("dokkaJekyllPlugin", artifactNotation, configureAction) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaJekyllRuntimeConfigurationAccessors.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaJekyllRuntimeConfigurationAccessors.kt new file mode 100644 index 00000000..e1023c8d --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaJekyllRuntimeConfigurationAccessors.kt @@ -0,0 +1,231 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Adds a dependency to the 'dokkaJekyllRuntime' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +@Deprecated(message = "The dokkaJekyllRuntime configuration has been deprecated for dependency declaration. Please use the 'dokkaJekyllGeneratorRuntime' configuration instead.") +internal +fun DependencyHandler.`dokkaJekyllRuntime`(dependencyNotation: Any): Dependency? = + add("dokkaJekyllRuntime", dependencyNotation) + +/** + * Adds a dependency to the 'dokkaJekyllRuntime' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +@Deprecated(message = "The dokkaJekyllRuntime configuration has been deprecated for dependency declaration. Please use the 'dokkaJekyllGeneratorRuntime' configuration instead.") +internal +fun DependencyHandler.`dokkaJekyllRuntime`( + dependencyNotation: String, + dependencyConfiguration: Action +): ExternalModuleDependency = addDependencyTo( + this, "dokkaJekyllRuntime", dependencyNotation, dependencyConfiguration +) as ExternalModuleDependency + +/** + * Adds a dependency to the 'dokkaJekyllRuntime' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +@Deprecated(message = "The dokkaJekyllRuntime configuration has been deprecated for dependency declaration. Please use the 'dokkaJekyllGeneratorRuntime' configuration instead.") +internal +fun DependencyHandler.`dokkaJekyllRuntime`( + dependencyNotation: Provider<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaJekyllRuntime", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaJekyllRuntime' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +@Deprecated(message = "The dokkaJekyllRuntime configuration has been deprecated for dependency declaration. Please use the 'dokkaJekyllGeneratorRuntime' configuration instead.") +internal +fun DependencyHandler.`dokkaJekyllRuntime`( + dependencyNotation: ProviderConvertible<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaJekyllRuntime", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaJekyllRuntime' configuration. + * + * @param group the group of the module to be added as a dependency. + * @param name the name of the module to be added as a dependency. + * @param version the optional version of the module to be added as a dependency. + * @param configuration the optional configuration of the module to be added as a dependency. + * @param classifier the optional classifier of the module artifact to be added as a dependency. + * @param ext the optional extension of the module artifact to be added as a dependency. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.create] + * @see [DependencyHandler.add] + */ +@Deprecated(message = "The dokkaJekyllRuntime configuration has been deprecated for dependency declaration. Please use the 'dokkaJekyllGeneratorRuntime' configuration instead.") +internal +fun DependencyHandler.`dokkaJekyllRuntime`( + group: String, + name: String, + version: String? = null, + configuration: String? = null, + classifier: String? = null, + ext: String? = null, + dependencyConfiguration: Action? = null +): ExternalModuleDependency = addExternalModuleDependencyTo( + this, "dokkaJekyllRuntime", group, name, version, configuration, classifier, ext, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaJekyllRuntime' configuration. + * + * @param dependency dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +@Deprecated(message = "The dokkaJekyllRuntime configuration has been deprecated for dependency declaration. Please use the 'dokkaJekyllGeneratorRuntime' configuration instead.") +internal +fun DependencyHandler.`dokkaJekyllRuntime`( + dependency: T, + dependencyConfiguration: T.() -> Unit +): T = add("dokkaJekyllRuntime", dependency, dependencyConfiguration) + +/** + * Adds a dependency constraint to the 'dokkaJekyllRuntime' configuration. + * + * @param constraintNotation the dependency constraint notation + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +@Deprecated(message = "The dokkaJekyllRuntime configuration has been deprecated for dependency declaration. Please use the 'dokkaJekyllGeneratorRuntime' configuration instead.") +internal +fun DependencyConstraintHandler.`dokkaJekyllRuntime`(constraintNotation: Any): DependencyConstraint = + add("dokkaJekyllRuntime", constraintNotation) + +/** + * Adds a dependency constraint to the 'dokkaJekyllRuntime' configuration. + * + * @param constraintNotation the dependency constraint notation + * @param block the block to use to configure the dependency constraint + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +@Deprecated(message = "The dokkaJekyllRuntime configuration has been deprecated for dependency declaration. Please use the 'dokkaJekyllGeneratorRuntime' configuration instead.") +internal +fun DependencyConstraintHandler.`dokkaJekyllRuntime`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint = + add("dokkaJekyllRuntime", constraintNotation, block) + +/** + * Adds an artifact to the 'dokkaJekyllRuntime' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaJekyllRuntime`(artifactNotation: Any): PublishArtifact = + add("dokkaJekyllRuntime", artifactNotation) + +/** + * Adds an artifact to the 'dokkaJekyllRuntime' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @param configureAction The action to execute to configure the artifact. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaJekyllRuntime`( + artifactNotation: Any, + configureAction: ConfigurablePublishArtifact.() -> Unit +): PublishArtifact = + add("dokkaJekyllRuntime", artifactNotation, configureAction) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaPluginConfigurationAccessors.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaPluginConfigurationAccessors.kt new file mode 100644 index 00000000..7ff8e27e --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaPluginConfigurationAccessors.kt @@ -0,0 +1,223 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Adds a dependency to the 'dokkaPlugin' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaPlugin`(dependencyNotation: Any): Dependency? = + add("dokkaPlugin", dependencyNotation) + +/** + * Adds a dependency to the 'dokkaPlugin' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaPlugin`( + dependencyNotation: String, + dependencyConfiguration: Action +): ExternalModuleDependency = addDependencyTo( + this, "dokkaPlugin", dependencyNotation, dependencyConfiguration +) as ExternalModuleDependency + +/** + * Adds a dependency to the 'dokkaPlugin' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaPlugin`( + dependencyNotation: Provider<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaPlugin", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaPlugin' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaPlugin`( + dependencyNotation: ProviderConvertible<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaPlugin", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaPlugin' configuration. + * + * @param group the group of the module to be added as a dependency. + * @param name the name of the module to be added as a dependency. + * @param version the optional version of the module to be added as a dependency. + * @param configuration the optional configuration of the module to be added as a dependency. + * @param classifier the optional classifier of the module artifact to be added as a dependency. + * @param ext the optional extension of the module artifact to be added as a dependency. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.create] + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaPlugin`( + group: String, + name: String, + version: String? = null, + configuration: String? = null, + classifier: String? = null, + ext: String? = null, + dependencyConfiguration: Action? = null +): ExternalModuleDependency = addExternalModuleDependencyTo( + this, "dokkaPlugin", group, name, version, configuration, classifier, ext, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaPlugin' configuration. + * + * @param dependency dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +internal +fun DependencyHandler.`dokkaPlugin`( + dependency: T, + dependencyConfiguration: T.() -> Unit +): T = add("dokkaPlugin", dependency, dependencyConfiguration) + +/** + * Adds a dependency constraint to the 'dokkaPlugin' configuration. + * + * @param constraintNotation the dependency constraint notation + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +internal +fun DependencyConstraintHandler.`dokkaPlugin`(constraintNotation: Any): DependencyConstraint = + add("dokkaPlugin", constraintNotation) + +/** + * Adds a dependency constraint to the 'dokkaPlugin' configuration. + * + * @param constraintNotation the dependency constraint notation + * @param block the block to use to configure the dependency constraint + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +internal +fun DependencyConstraintHandler.`dokkaPlugin`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint = + add("dokkaPlugin", constraintNotation, block) + +/** + * Adds an artifact to the 'dokkaPlugin' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaPlugin`(artifactNotation: Any): PublishArtifact = + add("dokkaPlugin", artifactNotation) + +/** + * Adds an artifact to the 'dokkaPlugin' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @param configureAction The action to execute to configure the artifact. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaPlugin`( + artifactNotation: Any, + configureAction: ConfigurablePublishArtifact.() -> Unit +): PublishArtifact = + add("dokkaPlugin", artifactNotation, configureAction) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaRuntimeConfigurationAccessors.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaRuntimeConfigurationAccessors.kt new file mode 100644 index 00000000..d13aaf2b --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-accessors/kotlin/gradle/kotlin/dsl/accessors/_ae0e2e0f59d526dd61b4865f6e032691/DokkaRuntimeConfigurationAccessors.kt @@ -0,0 +1,231 @@ + +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691 + + +import org.gradle.api.Action +import org.gradle.api.Incubating +import org.gradle.api.NamedDomainObjectProvider +import org.gradle.api.Project +import org.gradle.api.Task +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ConfigurablePublishArtifact +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.DependencyConstraint +import org.gradle.api.artifacts.ExternalModuleDependency +import org.gradle.api.artifacts.ModuleDependency +import org.gradle.api.artifacts.PublishArtifact +import org.gradle.api.artifacts.dsl.ArtifactHandler +import org.gradle.api.artifacts.dsl.DependencyConstraintHandler +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.api.initialization.SharedModelDefaults +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.api.tasks.TaskContainer +import org.gradle.api.tasks.TaskProvider + +import org.gradle.kotlin.dsl.* +import org.gradle.kotlin.dsl.accessors.runtime.* + + +/** + * Adds a dependency to the 'dokkaRuntime' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +@Deprecated(message = "The dokkaRuntime configuration has been deprecated for dependency declaration. Please use the 'dokkaGeneratorRuntime' configuration instead.") +internal +fun DependencyHandler.`dokkaRuntime`(dependencyNotation: Any): Dependency? = + add("dokkaRuntime", dependencyNotation) + +/** + * Adds a dependency to the 'dokkaRuntime' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +@Deprecated(message = "The dokkaRuntime configuration has been deprecated for dependency declaration. Please use the 'dokkaGeneratorRuntime' configuration instead.") +internal +fun DependencyHandler.`dokkaRuntime`( + dependencyNotation: String, + dependencyConfiguration: Action +): ExternalModuleDependency = addDependencyTo( + this, "dokkaRuntime", dependencyNotation, dependencyConfiguration +) as ExternalModuleDependency + +/** + * Adds a dependency to the 'dokkaRuntime' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +@Deprecated(message = "The dokkaRuntime configuration has been deprecated for dependency declaration. Please use the 'dokkaGeneratorRuntime' configuration instead.") +internal +fun DependencyHandler.`dokkaRuntime`( + dependencyNotation: Provider<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaRuntime", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaRuntime' configuration. + * + * @param dependencyNotation notation for the dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +@Deprecated(message = "The dokkaRuntime configuration has been deprecated for dependency declaration. Please use the 'dokkaGeneratorRuntime' configuration instead.") +internal +fun DependencyHandler.`dokkaRuntime`( + dependencyNotation: ProviderConvertible<*>, + dependencyConfiguration: Action +): Unit = addConfiguredDependencyTo( + this, "dokkaRuntime", dependencyNotation, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaRuntime' configuration. + * + * @param group the group of the module to be added as a dependency. + * @param name the name of the module to be added as a dependency. + * @param version the optional version of the module to be added as a dependency. + * @param configuration the optional configuration of the module to be added as a dependency. + * @param classifier the optional classifier of the module artifact to be added as a dependency. + * @param ext the optional extension of the module artifact to be added as a dependency. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.create] + * @see [DependencyHandler.add] + */ +@Deprecated(message = "The dokkaRuntime configuration has been deprecated for dependency declaration. Please use the 'dokkaGeneratorRuntime' configuration instead.") +internal +fun DependencyHandler.`dokkaRuntime`( + group: String, + name: String, + version: String? = null, + configuration: String? = null, + classifier: String? = null, + ext: String? = null, + dependencyConfiguration: Action? = null +): ExternalModuleDependency = addExternalModuleDependencyTo( + this, "dokkaRuntime", group, name, version, configuration, classifier, ext, dependencyConfiguration +) + +/** + * Adds a dependency to the 'dokkaRuntime' configuration. + * + * @param dependency dependency to be added. + * @param dependencyConfiguration expression to use to configure the dependency. + * @return The dependency. + * + * @see [DependencyHandler.add] + */ +@Deprecated(message = "The dokkaRuntime configuration has been deprecated for dependency declaration. Please use the 'dokkaGeneratorRuntime' configuration instead.") +internal +fun DependencyHandler.`dokkaRuntime`( + dependency: T, + dependencyConfiguration: T.() -> Unit +): T = add("dokkaRuntime", dependency, dependencyConfiguration) + +/** + * Adds a dependency constraint to the 'dokkaRuntime' configuration. + * + * @param constraintNotation the dependency constraint notation + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +@Deprecated(message = "The dokkaRuntime configuration has been deprecated for dependency declaration. Please use the 'dokkaGeneratorRuntime' configuration instead.") +internal +fun DependencyConstraintHandler.`dokkaRuntime`(constraintNotation: Any): DependencyConstraint = + add("dokkaRuntime", constraintNotation) + +/** + * Adds a dependency constraint to the 'dokkaRuntime' configuration. + * + * @param constraintNotation the dependency constraint notation + * @param block the block to use to configure the dependency constraint + * + * @return the added dependency constraint + * + * @see [DependencyConstraintHandler.add] + */ +@Deprecated(message = "The dokkaRuntime configuration has been deprecated for dependency declaration. Please use the 'dokkaGeneratorRuntime' configuration instead.") +internal +fun DependencyConstraintHandler.`dokkaRuntime`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint = + add("dokkaRuntime", constraintNotation, block) + +/** + * Adds an artifact to the 'dokkaRuntime' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaRuntime`(artifactNotation: Any): PublishArtifact = + add("dokkaRuntime", artifactNotation) + +/** + * Adds an artifact to the 'dokkaRuntime' configuration. + * + * @param artifactNotation the group of the module to be added as a dependency. + * @param configureAction The action to execute to configure the artifact. + * @return The artifact. + * + * @see [ArtifactHandler.add] + */ +internal +fun ArtifactHandler.`dokkaRuntime`( + artifactNotation: Any, + configureAction: ConfigurablePublishArtifact.() -> Unit +): PublishArtifact = + add("dokkaRuntime", artifactNotation, configureAction) + + + diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-external-plugin-spec-builders/kotlin/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/PluginSpecBuilders.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-external-plugin-spec-builders/kotlin/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/PluginSpecBuilders.kt new file mode 100644 index 00000000..0cbb6c5e --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-external-plugin-spec-builders/kotlin/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/PluginSpecBuilders.kt @@ -0,0 +1,1338 @@ +/* + * Copyright 2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@file:Suppress( + "unused", + "nothing_to_inline", + "useless_cast", + "unchecked_cast", + "extension_shadowed_by_member", + "redundant_projection", + "RemoveRedundantBackticks", + "ObjectPropertyName", + "deprecation", + "detekt:all" +) +@file:org.gradle.api.Generated + +package gradle.kotlin.dsl.plugins._a63f88d9982dc9c8556c568013d1c3d6 + +import org.gradle.plugin.use.PluginDependenciesSpec +import org.gradle.plugin.use.PluginDependencySpec + + +/** + * The `android` plugin implemented by [com.android.build.gradle.AppPlugin]. + */ +internal +val `PluginDependenciesSpec`.`android`: PluginDependencySpec + get() = this.id("android") + + +/** + * The `android-library` plugin implemented by [com.android.build.gradle.LibraryPlugin]. + */ +internal +val `PluginDependenciesSpec`.`android-library`: PluginDependencySpec + get() = this.id("android-library") + + +/** + * The `android-reporting` plugin implemented by [com.android.build.gradle.ReportingPlugin]. + */ +internal +val `PluginDependenciesSpec`.`android-reporting`: PluginDependencySpec + get() = this.id("android-reporting") + + +/** + * The `com` plugin group. + */ +@org.gradle.api.Generated +internal +class `ComPluginGroup`(internal val plugins: PluginDependenciesSpec) + + +/** + * Plugin ids starting with `com`. + */ +internal +val `PluginDependenciesSpec`.`com`: `ComPluginGroup` + get() = `ComPluginGroup`(this) + + +/** + * The `com.android` plugin group. + */ +@org.gradle.api.Generated +internal +class `ComAndroidPluginGroup`(internal val plugins: PluginDependenciesSpec) + + +/** + * Plugin ids starting with `com.android`. + */ +internal +val `ComPluginGroup`.`android`: `ComAndroidPluginGroup` + get() = `ComAndroidPluginGroup`(plugins) + + +/** + * The `com.android.ai-pack` plugin implemented by [com.android.build.gradle.AiPackPlugin]. + */ +internal +val `ComAndroidPluginGroup`.`ai-pack`: PluginDependencySpec + get() = plugins.id("com.android.ai-pack") + + +/** + * The `com.android.application` plugin implemented by [com.android.build.gradle.AppPlugin]. + */ +internal +val `ComAndroidPluginGroup`.`application`: PluginDependencySpec + get() = plugins.id("com.android.application") + + +/** + * The `com.android.asset-pack` plugin implemented by [com.android.build.gradle.AssetPackPlugin]. + */ +internal +val `ComAndroidPluginGroup`.`asset-pack`: PluginDependencySpec + get() = plugins.id("com.android.asset-pack") + + +/** + * The `com.android.asset-pack-bundle` plugin implemented by [com.android.build.gradle.AssetPackBundlePlugin]. + */ +internal +val `ComAndroidPluginGroup`.`asset-pack-bundle`: PluginDependencySpec + get() = plugins.id("com.android.asset-pack-bundle") + + +/** + * The `com.android.base` plugin implemented by [com.android.build.gradle.api.AndroidBasePlugin]. + */ +internal +val `ComAndroidPluginGroup`.`base`: PluginDependencySpec + get() = plugins.id("com.android.base") + + +/** + * The `com.android.dynamic-feature` plugin implemented by [com.android.build.gradle.DynamicFeaturePlugin]. + */ +internal +val `ComAndroidPluginGroup`.`dynamic-feature`: PluginDependencySpec + get() = plugins.id("com.android.dynamic-feature") + + +/** + * The `com.android.fused-library` plugin implemented by [com.android.build.gradle.api.FusedLibraryPlugin]. + */ +internal +val `ComAndroidPluginGroup`.`fused-library`: PluginDependencySpec + get() = plugins.id("com.android.fused-library") + + +/** + * The `com.android.internal` plugin group. + */ +@org.gradle.api.Generated +internal +class `ComAndroidInternalPluginGroup`(internal val plugins: PluginDependenciesSpec) + + +/** + * Plugin ids starting with `com.android.internal`. + */ +internal +val `ComAndroidPluginGroup`.`internal`: `ComAndroidInternalPluginGroup` + get() = `ComAndroidInternalPluginGroup`(plugins) + + +/** + * The `com.android.internal.ai-pack` plugin implemented by [com.android.build.gradle.internal.plugins.AiPackPlugin]. + */ +internal +val `ComAndroidInternalPluginGroup`.`ai-pack`: PluginDependencySpec + get() = plugins.id("com.android.internal.ai-pack") + + +/** + * The `com.android.internal.application` plugin implemented by [com.android.build.gradle.internal.plugins.AppPlugin]. + */ +internal +val `ComAndroidInternalPluginGroup`.`application`: PluginDependencySpec + get() = plugins.id("com.android.internal.application") + + +/** + * The `com.android.internal.asset-pack` plugin implemented by [com.android.build.gradle.internal.plugins.AssetPackPlugin]. + */ +internal +val `ComAndroidInternalPluginGroup`.`asset-pack`: PluginDependencySpec + get() = plugins.id("com.android.internal.asset-pack") + + +/** + * The `com.android.internal.asset-pack-bundle` plugin implemented by [com.android.build.gradle.internal.plugins.AssetPackBundlePlugin]. + */ +internal +val `ComAndroidInternalPluginGroup`.`asset-pack-bundle`: PluginDependencySpec + get() = plugins.id("com.android.internal.asset-pack-bundle") + + +/** + * The `com.android.internal.dynamic-feature` plugin implemented by [com.android.build.gradle.internal.plugins.DynamicFeaturePlugin]. + */ +internal +val `ComAndroidInternalPluginGroup`.`dynamic-feature`: PluginDependencySpec + get() = plugins.id("com.android.internal.dynamic-feature") + + +/** + * The `com.android.internal.fused-library` plugin implemented by [com.android.build.gradle.internal.plugins.FusedLibraryPlugin]. + */ +internal +val `ComAndroidInternalPluginGroup`.`fused-library`: PluginDependencySpec + get() = plugins.id("com.android.internal.fused-library") + + +/** + * The `com.android.internal.kotlin` plugin group. + */ +@org.gradle.api.Generated +internal +class `ComAndroidInternalKotlinPluginGroup`(internal val plugins: PluginDependenciesSpec) + + +/** + * Plugin ids starting with `com.android.internal.kotlin`. + */ +internal +val `ComAndroidInternalPluginGroup`.`kotlin`: `ComAndroidInternalKotlinPluginGroup` + get() = `ComAndroidInternalKotlinPluginGroup`(plugins) + + +/** + * The `com.android.internal.kotlin.multiplatform` plugin group. + */ +@org.gradle.api.Generated +internal +class `ComAndroidInternalKotlinMultiplatformPluginGroup`(internal val plugins: PluginDependenciesSpec) + + +/** + * Plugin ids starting with `com.android.internal.kotlin.multiplatform`. + */ +internal +val `ComAndroidInternalKotlinPluginGroup`.`multiplatform`: `ComAndroidInternalKotlinMultiplatformPluginGroup` + get() = `ComAndroidInternalKotlinMultiplatformPluginGroup`(plugins) + + +/** + * The `com.android.internal.kotlin.multiplatform.library` plugin implemented by [com.android.build.gradle.internal.plugins.KotlinMultiplatformAndroidPlugin]. + */ +internal +val `ComAndroidInternalKotlinMultiplatformPluginGroup`.`library`: PluginDependencySpec + get() = plugins.id("com.android.internal.kotlin.multiplatform.library") + + +/** + * The `com.android.internal.library` plugin implemented by [com.android.build.gradle.internal.plugins.LibraryPlugin]. + */ +internal +val `ComAndroidInternalPluginGroup`.`library`: PluginDependencySpec + get() = plugins.id("com.android.internal.library") + + +/** + * The `com.android.internal.lint` plugin implemented by [com.android.build.gradle.internal.plugins.LintPlugin]. + */ +internal +val `ComAndroidInternalPluginGroup`.`lint`: PluginDependencySpec + get() = plugins.id("com.android.internal.lint") + + +/** + * The `com.android.internal.privacy-sandbox-sdk` plugin implemented by [com.android.build.gradle.internal.plugins.PrivacySandboxSdkPlugin]. + */ +internal +val `ComAndroidInternalPluginGroup`.`privacy-sandbox-sdk`: PluginDependencySpec + get() = plugins.id("com.android.internal.privacy-sandbox-sdk") + + +/** + * The `com.android.internal.reporting` plugin implemented by [com.android.build.gradle.internal.plugins.ReportingPlugin]. + */ +internal +val `ComAndroidInternalPluginGroup`.`reporting`: PluginDependencySpec + get() = plugins.id("com.android.internal.reporting") + + +/** + * The `com.android.internal.test` plugin implemented by [com.android.build.gradle.internal.plugins.TestPlugin]. + */ +internal +val `ComAndroidInternalPluginGroup`.`test`: PluginDependencySpec + get() = plugins.id("com.android.internal.test") + + +/** + * The `com.android.internal.version-check` plugin implemented by [com.android.build.gradle.internal.plugins.VersionCheckPlugin]. + */ +internal +val `ComAndroidInternalPluginGroup`.`version-check`: PluginDependencySpec + get() = plugins.id("com.android.internal.version-check") + + +/** + * The `com.android.kotlin` plugin group. + */ +@org.gradle.api.Generated +internal +class `ComAndroidKotlinPluginGroup`(internal val plugins: PluginDependenciesSpec) + + +/** + * Plugin ids starting with `com.android.kotlin`. + */ +internal +val `ComAndroidPluginGroup`.`kotlin`: `ComAndroidKotlinPluginGroup` + get() = `ComAndroidKotlinPluginGroup`(plugins) + + +/** + * The `com.android.kotlin.multiplatform` plugin group. + */ +@org.gradle.api.Generated +internal +class `ComAndroidKotlinMultiplatformPluginGroup`(internal val plugins: PluginDependenciesSpec) + + +/** + * Plugin ids starting with `com.android.kotlin.multiplatform`. + */ +internal +val `ComAndroidKotlinPluginGroup`.`multiplatform`: `ComAndroidKotlinMultiplatformPluginGroup` + get() = `ComAndroidKotlinMultiplatformPluginGroup`(plugins) + + +/** + * The `com.android.kotlin.multiplatform.library` plugin implemented by [com.android.build.gradle.api.KotlinMultiplatformAndroidPlugin]. + */ +internal +val `ComAndroidKotlinMultiplatformPluginGroup`.`library`: PluginDependencySpec + get() = plugins.id("com.android.kotlin.multiplatform.library") + + +/** + * The `com.android.library` plugin implemented by [com.android.build.gradle.LibraryPlugin]. + */ +internal +val `ComAndroidPluginGroup`.`library`: PluginDependencySpec + get() = plugins.id("com.android.library") + + +/** + * The `com.android.lint` plugin implemented by [com.android.build.gradle.LintPlugin]. + */ +internal +val `ComAndroidPluginGroup`.`lint`: PluginDependencySpec + get() = plugins.id("com.android.lint") + + +/** + * The `com.android.privacy-sandbox-sdk` plugin implemented by [com.android.build.gradle.api.PrivacySandboxSdkPlugin]. + */ +internal +val `ComAndroidPluginGroup`.`privacy-sandbox-sdk`: PluginDependencySpec + get() = plugins.id("com.android.privacy-sandbox-sdk") + + +/** + * The `com.android.reporting` plugin implemented by [com.android.build.gradle.ReportingPlugin]. + */ +internal +val `ComAndroidPluginGroup`.`reporting`: PluginDependencySpec + get() = plugins.id("com.android.reporting") + + +/** + * The `com.android.test` plugin implemented by [com.android.build.gradle.TestPlugin]. + */ +internal +val `ComAndroidPluginGroup`.`test`: PluginDependencySpec + get() = plugins.id("com.android.test") + + +/** + * The `com.vanniktech` plugin group. + */ +@org.gradle.api.Generated +internal +class `ComVanniktechPluginGroup`(internal val plugins: PluginDependenciesSpec) + + +/** + * Plugin ids starting with `com.vanniktech`. + */ +internal +val `ComPluginGroup`.`vanniktech`: `ComVanniktechPluginGroup` + get() = `ComVanniktechPluginGroup`(plugins) + + +/** + * The `com.vanniktech.maven` plugin group. + */ +@org.gradle.api.Generated +internal +class `ComVanniktechMavenPluginGroup`(internal val plugins: PluginDependenciesSpec) + + +/** + * Plugin ids starting with `com.vanniktech.maven`. + */ +internal +val `ComVanniktechPluginGroup`.`maven`: `ComVanniktechMavenPluginGroup` + get() = `ComVanniktechMavenPluginGroup`(plugins) + + +/** + * The `com.vanniktech.maven.publish` plugin implemented by [com.vanniktech.maven.publish.MavenPublishPlugin]. + */ +internal +val `ComVanniktechMavenPluginGroup`.`publish`: PluginDependencySpec + get() = plugins.id("com.vanniktech.maven.publish") + + +/** + * The `kotlin` plugin implemented by [org.jetbrains.kotlin.gradle.plugin.KotlinPluginWrapper]. + */ +internal +val `PluginDependenciesSpec`.`kotlin`: PluginDependencySpec + get() = this.id("kotlin") + + +/** + * The `kotlin-android` plugin implemented by [org.jetbrains.kotlin.gradle.plugin.KotlinAndroidPluginWrapper]. + */ +internal +val `PluginDependenciesSpec`.`kotlin-android`: PluginDependencySpec + get() = this.id("kotlin-android") + + +/** + * The `kotlin-android-extensions` plugin implemented by [org.jetbrains.kotlin.gradle.internal.AndroidExtensionsSubpluginIndicator]. + */ +internal +val `PluginDependenciesSpec`.`kotlin-android-extensions`: PluginDependencySpec + get() = this.id("kotlin-android-extensions") + + +/** + * The `kotlin-kapt` plugin implemented by [org.jetbrains.kotlin.gradle.internal.Kapt3GradleSubplugin]. + */ +internal +val `PluginDependenciesSpec`.`kotlin-kapt`: PluginDependencySpec + get() = this.id("kotlin-kapt") + + +/** + * The `kotlin-multiplatform` plugin implemented by [org.jetbrains.kotlin.gradle.plugin.KotlinMultiplatformPluginWrapper]. + */ +internal +val `PluginDependenciesSpec`.`kotlin-multiplatform`: PluginDependencySpec + get() = this.id("kotlin-multiplatform") + + +/** + * The `kotlin-native-cocoapods` plugin implemented by [org.jetbrains.kotlin.gradle.plugin.cocoapods.KotlinCocoapodsPlugin]. + */ +internal +val `PluginDependenciesSpec`.`kotlin-native-cocoapods`: PluginDependencySpec + get() = this.id("kotlin-native-cocoapods") + + +/** + * The `kotlin-parcelize` plugin implemented by [org.jetbrains.kotlin.gradle.internal.ParcelizeSubplugin]. + */ +internal +val `PluginDependenciesSpec`.`kotlin-parcelize`: PluginDependencySpec + get() = this.id("kotlin-parcelize") + + +/** + * The `kotlin-scripting` plugin implemented by [org.jetbrains.kotlin.gradle.scripting.internal.ScriptingGradleSubplugin]. + */ +internal +val `PluginDependenciesSpec`.`kotlin-scripting`: PluginDependencySpec + get() = this.id("kotlin-scripting") + + +/** + * The `org` plugin group. + */ +@org.gradle.api.Generated +internal +class `OrgPluginGroup`(internal val plugins: PluginDependenciesSpec) + + +/** + * Plugin ids starting with `org`. + */ +internal +val `PluginDependenciesSpec`.`org`: `OrgPluginGroup` + get() = `OrgPluginGroup`(this) + + +/** + * The `org.gradle` plugin group. + */ +@org.gradle.api.Generated +internal +class `OrgGradlePluginGroup`(internal val plugins: PluginDependenciesSpec) + + +/** + * Plugin ids starting with `org.gradle`. + */ +internal +val `OrgPluginGroup`.`gradle`: `OrgGradlePluginGroup` + get() = `OrgGradlePluginGroup`(plugins) + + +/** + * The `org.gradle.antlr` plugin implemented by [org.gradle.api.plugins.antlr.AntlrPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`antlr`: PluginDependencySpec + get() = plugins.id("org.gradle.antlr") + + +/** + * The `org.gradle.application` plugin implemented by [org.gradle.api.plugins.ApplicationPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`application`: PluginDependencySpec + get() = plugins.id("org.gradle.application") + + +/** + * The `org.gradle.assembler` plugin implemented by [org.gradle.language.assembler.plugins.AssemblerPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`assembler`: PluginDependencySpec + get() = plugins.id("org.gradle.assembler") + + +/** + * The `org.gradle.assembler-lang` plugin implemented by [org.gradle.language.assembler.plugins.AssemblerLangPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`assembler-lang`: PluginDependencySpec + get() = plugins.id("org.gradle.assembler-lang") + + +/** + * The `org.gradle.base` plugin implemented by [org.gradle.api.plugins.BasePlugin]. + */ +internal +val `OrgGradlePluginGroup`.`base`: PluginDependencySpec + get() = plugins.id("org.gradle.base") + + +/** + * The `org.gradle.binary-base` plugin implemented by [org.gradle.platform.base.plugins.BinaryBasePlugin]. + */ +internal +val `OrgGradlePluginGroup`.`binary-base`: PluginDependencySpec + get() = plugins.id("org.gradle.binary-base") + + +/** + * The `org.gradle.build-dashboard` plugin implemented by [org.gradle.api.reporting.plugins.BuildDashboardPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`build-dashboard`: PluginDependencySpec + get() = plugins.id("org.gradle.build-dashboard") + + +/** + * The `org.gradle.build-init` plugin implemented by [org.gradle.buildinit.plugins.BuildInitPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`build-init`: PluginDependencySpec + get() = plugins.id("org.gradle.build-init") + + +/** + * The `org.gradle.c` plugin implemented by [org.gradle.language.c.plugins.CPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`c`: PluginDependencySpec + get() = plugins.id("org.gradle.c") + + +/** + * The `org.gradle.c-lang` plugin implemented by [org.gradle.language.c.plugins.CLangPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`c-lang`: PluginDependencySpec + get() = plugins.id("org.gradle.c-lang") + + +/** + * The `org.gradle.checkstyle` plugin implemented by [org.gradle.api.plugins.quality.CheckstylePlugin]. + */ +internal +val `OrgGradlePluginGroup`.`checkstyle`: PluginDependencySpec + get() = plugins.id("org.gradle.checkstyle") + + +/** + * The `org.gradle.clang-compiler` plugin implemented by [org.gradle.nativeplatform.toolchain.plugins.ClangCompilerPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`clang-compiler`: PluginDependencySpec + get() = plugins.id("org.gradle.clang-compiler") + + +/** + * The `org.gradle.codenarc` plugin implemented by [org.gradle.api.plugins.quality.CodeNarcPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`codenarc`: PluginDependencySpec + get() = plugins.id("org.gradle.codenarc") + + +/** + * The `org.gradle.component-base` plugin implemented by [org.gradle.platform.base.plugins.ComponentBasePlugin]. + */ +internal +val `OrgGradlePluginGroup`.`component-base`: PluginDependencySpec + get() = plugins.id("org.gradle.component-base") + + +/** + * The `org.gradle.component-model-base` plugin implemented by [org.gradle.language.base.plugins.ComponentModelBasePlugin]. + */ +internal +val `OrgGradlePluginGroup`.`component-model-base`: PluginDependencySpec + get() = plugins.id("org.gradle.component-model-base") + + +/** + * The `org.gradle.component-reporting-tasks` plugin implemented by [org.gradle.api.plugins.internal.ComponentReportingTasksPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`component-reporting-tasks`: PluginDependencySpec + get() = plugins.id("org.gradle.component-reporting-tasks") + + +/** + * The `org.gradle.cpp` plugin implemented by [org.gradle.language.cpp.plugins.CppPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`cpp`: PluginDependencySpec + get() = plugins.id("org.gradle.cpp") + + +/** + * The `org.gradle.cpp-application` plugin implemented by [org.gradle.language.cpp.plugins.CppApplicationPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`cpp-application`: PluginDependencySpec + get() = plugins.id("org.gradle.cpp-application") + + +/** + * The `org.gradle.cpp-lang` plugin implemented by [org.gradle.language.cpp.plugins.CppLangPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`cpp-lang`: PluginDependencySpec + get() = plugins.id("org.gradle.cpp-lang") + + +/** + * The `org.gradle.cpp-library` plugin implemented by [org.gradle.language.cpp.plugins.CppLibraryPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`cpp-library`: PluginDependencySpec + get() = plugins.id("org.gradle.cpp-library") + + +/** + * The `org.gradle.cpp-unit-test` plugin implemented by [org.gradle.nativeplatform.test.cpp.plugins.CppUnitTestPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`cpp-unit-test`: PluginDependencySpec + get() = plugins.id("org.gradle.cpp-unit-test") + + +/** + * The `org.gradle.cunit` plugin implemented by [org.gradle.nativeplatform.test.cunit.plugins.CUnitConventionPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`cunit`: PluginDependencySpec + get() = plugins.id("org.gradle.cunit") + + +/** + * The `org.gradle.cunit-test-suite` plugin implemented by [org.gradle.nativeplatform.test.cunit.plugins.CUnitPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`cunit-test-suite`: PluginDependencySpec + get() = plugins.id("org.gradle.cunit-test-suite") + + +/** + * The `org.gradle.distribution` plugin implemented by [org.gradle.api.distribution.plugins.DistributionPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`distribution`: PluginDependencySpec + get() = plugins.id("org.gradle.distribution") + + +/** + * The `org.gradle.distribution-base` plugin implemented by [org.gradle.api.distribution.plugins.DistributionBasePlugin]. + */ +internal +val `OrgGradlePluginGroup`.`distribution-base`: PluginDependencySpec + get() = plugins.id("org.gradle.distribution-base") + + +/** + * The `org.gradle.ear` plugin implemented by [org.gradle.plugins.ear.EarPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`ear`: PluginDependencySpec + get() = plugins.id("org.gradle.ear") + + +/** + * The `org.gradle.eclipse` plugin implemented by [org.gradle.plugins.ide.eclipse.EclipsePlugin]. + */ +internal +val `OrgGradlePluginGroup`.`eclipse`: PluginDependencySpec + get() = plugins.id("org.gradle.eclipse") + + +/** + * The `org.gradle.eclipse-wtp` plugin implemented by [org.gradle.plugins.ide.eclipse.EclipseWtpPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`eclipse-wtp`: PluginDependencySpec + get() = plugins.id("org.gradle.eclipse-wtp") + + +/** + * The `org.gradle.gcc-compiler` plugin implemented by [org.gradle.nativeplatform.toolchain.plugins.GccCompilerPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`gcc-compiler`: PluginDependencySpec + get() = plugins.id("org.gradle.gcc-compiler") + + +/** + * The `org.gradle.google-test` plugin implemented by [org.gradle.nativeplatform.test.googletest.plugins.GoogleTestConventionPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`google-test`: PluginDependencySpec + get() = plugins.id("org.gradle.google-test") + + +/** + * The `org.gradle.google-test-test-suite` plugin implemented by [org.gradle.nativeplatform.test.googletest.plugins.GoogleTestPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`google-test-test-suite`: PluginDependencySpec + get() = plugins.id("org.gradle.google-test-test-suite") + + +/** + * The `org.gradle.groovy` plugin implemented by [org.gradle.api.plugins.GroovyPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`groovy`: PluginDependencySpec + get() = plugins.id("org.gradle.groovy") + + +/** + * The `org.gradle.groovy-base` plugin implemented by [org.gradle.api.plugins.GroovyBasePlugin]. + */ +internal +val `OrgGradlePluginGroup`.`groovy-base`: PluginDependencySpec + get() = plugins.id("org.gradle.groovy-base") + + +/** + * The `org.gradle.groovy-gradle-plugin` plugin implemented by [org.gradle.plugin.devel.internal.precompiled.PrecompiledGroovyPluginsPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`groovy-gradle-plugin`: PluginDependencySpec + get() = plugins.id("org.gradle.groovy-gradle-plugin") + + +/** + * The `org.gradle.help-tasks` plugin implemented by [org.gradle.api.plugins.HelpTasksPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`help-tasks`: PluginDependencySpec + get() = plugins.id("org.gradle.help-tasks") + + +/** + * The `org.gradle.idea` plugin implemented by [org.gradle.plugins.ide.idea.IdeaPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`idea`: PluginDependencySpec + get() = plugins.id("org.gradle.idea") + + +/** + * The `org.gradle.ivy-publish` plugin implemented by [org.gradle.api.publish.ivy.plugins.IvyPublishPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`ivy-publish`: PluginDependencySpec + get() = plugins.id("org.gradle.ivy-publish") + + +/** + * The `org.gradle.jacoco` plugin implemented by [org.gradle.testing.jacoco.plugins.JacocoPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`jacoco`: PluginDependencySpec + get() = plugins.id("org.gradle.jacoco") + + +/** + * The `org.gradle.jacoco-report-aggregation` plugin implemented by [org.gradle.testing.jacoco.plugins.JacocoReportAggregationPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`jacoco-report-aggregation`: PluginDependencySpec + get() = plugins.id("org.gradle.jacoco-report-aggregation") + + +/** + * The `org.gradle.java` plugin implemented by [org.gradle.api.plugins.JavaPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`java`: PluginDependencySpec + get() = plugins.id("org.gradle.java") + + +/** + * The `org.gradle.java-base` plugin implemented by [org.gradle.api.plugins.JavaBasePlugin]. + */ +internal +val `OrgGradlePluginGroup`.`java-base`: PluginDependencySpec + get() = plugins.id("org.gradle.java-base") + + +/** + * The `org.gradle.java-gradle-plugin` plugin implemented by [org.gradle.plugin.devel.plugins.JavaGradlePluginPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`java-gradle-plugin`: PluginDependencySpec + get() = plugins.id("org.gradle.java-gradle-plugin") + + +/** + * The `org.gradle.java-library` plugin implemented by [org.gradle.api.plugins.JavaLibraryPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`java-library`: PluginDependencySpec + get() = plugins.id("org.gradle.java-library") + + +/** + * The `org.gradle.java-library-distribution` plugin implemented by [org.gradle.api.plugins.JavaLibraryDistributionPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`java-library-distribution`: PluginDependencySpec + get() = plugins.id("org.gradle.java-library-distribution") + + +/** + * The `org.gradle.java-platform` plugin implemented by [org.gradle.api.plugins.JavaPlatformPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`java-platform`: PluginDependencySpec + get() = plugins.id("org.gradle.java-platform") + + +/** + * The `org.gradle.java-test-fixtures` plugin implemented by [org.gradle.api.plugins.JavaTestFixturesPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`java-test-fixtures`: PluginDependencySpec + get() = plugins.id("org.gradle.java-test-fixtures") + + +/** + * The `org.gradle.jvm-ecosystem` plugin implemented by [org.gradle.api.plugins.JvmEcosystemPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`jvm-ecosystem`: PluginDependencySpec + get() = plugins.id("org.gradle.jvm-ecosystem") + + +/** + * The `org.gradle.jvm-test-suite` plugin implemented by [org.gradle.api.plugins.JvmTestSuitePlugin]. + */ +internal +val `OrgGradlePluginGroup`.`jvm-test-suite`: PluginDependencySpec + get() = plugins.id("org.gradle.jvm-test-suite") + + +/** + * The `org.gradle.jvm-toolchain-management` plugin implemented by [org.gradle.api.plugins.JvmToolchainManagementPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`jvm-toolchain-management`: PluginDependencySpec + get() = plugins.id("org.gradle.jvm-toolchain-management") + + +/** + * The `org.gradle.jvm-toolchains` plugin implemented by [org.gradle.api.plugins.JvmToolchainsPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`jvm-toolchains`: PluginDependencySpec + get() = plugins.id("org.gradle.jvm-toolchains") + + +/** + * The `org.gradle.language-base` plugin implemented by [org.gradle.language.base.plugins.LanguageBasePlugin]. + */ +internal +val `OrgGradlePluginGroup`.`language-base`: PluginDependencySpec + get() = plugins.id("org.gradle.language-base") + + +/** + * The `org.gradle.lifecycle-base` plugin implemented by [org.gradle.language.base.plugins.LifecycleBasePlugin]. + */ +internal +val `OrgGradlePluginGroup`.`lifecycle-base`: PluginDependencySpec + get() = plugins.id("org.gradle.lifecycle-base") + + +/** + * The `org.gradle.maven-publish` plugin implemented by [org.gradle.api.publish.maven.plugins.MavenPublishPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`maven-publish`: PluginDependencySpec + get() = plugins.id("org.gradle.maven-publish") + + +/** + * The `org.gradle.microsoft-visual-cpp-compiler` plugin implemented by [org.gradle.nativeplatform.toolchain.plugins.MicrosoftVisualCppCompilerPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`microsoft-visual-cpp-compiler`: PluginDependencySpec + get() = plugins.id("org.gradle.microsoft-visual-cpp-compiler") + + +/** + * The `org.gradle.model-reporting-tasks` plugin implemented by [org.gradle.api.plugins.internal.ModelReportingTasksPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`model-reporting-tasks`: PluginDependencySpec + get() = plugins.id("org.gradle.model-reporting-tasks") + + +/** + * The `org.gradle.native-component` plugin implemented by [org.gradle.nativeplatform.plugins.NativeComponentPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`native-component`: PluginDependencySpec + get() = plugins.id("org.gradle.native-component") + + +/** + * The `org.gradle.native-component-model` plugin implemented by [org.gradle.nativeplatform.plugins.NativeComponentModelPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`native-component-model`: PluginDependencySpec + get() = plugins.id("org.gradle.native-component-model") + + +/** + * The `org.gradle.objective-c` plugin implemented by [org.gradle.language.objectivec.plugins.ObjectiveCPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`objective-c`: PluginDependencySpec + get() = plugins.id("org.gradle.objective-c") + + +/** + * The `org.gradle.objective-c-lang` plugin implemented by [org.gradle.language.objectivec.plugins.ObjectiveCLangPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`objective-c-lang`: PluginDependencySpec + get() = plugins.id("org.gradle.objective-c-lang") + + +/** + * The `org.gradle.objective-cpp` plugin implemented by [org.gradle.language.objectivecpp.plugins.ObjectiveCppPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`objective-cpp`: PluginDependencySpec + get() = plugins.id("org.gradle.objective-cpp") + + +/** + * The `org.gradle.objective-cpp-lang` plugin implemented by [org.gradle.language.objectivecpp.plugins.ObjectiveCppLangPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`objective-cpp-lang`: PluginDependencySpec + get() = plugins.id("org.gradle.objective-cpp-lang") + + +/** + * The `org.gradle.pmd` plugin implemented by [org.gradle.api.plugins.quality.PmdPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`pmd`: PluginDependencySpec + get() = plugins.id("org.gradle.pmd") + + +/** + * The `org.gradle.project-report` plugin implemented by [org.gradle.api.plugins.ProjectReportsPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`project-report`: PluginDependencySpec + get() = plugins.id("org.gradle.project-report") + + +/** + * The `org.gradle.project-reports` plugin implemented by [org.gradle.api.plugins.ProjectReportsPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`project-reports`: PluginDependencySpec + get() = plugins.id("org.gradle.project-reports") + + +/** + * The `org.gradle.publishing` plugin implemented by [org.gradle.api.publish.plugins.PublishingPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`publishing`: PluginDependencySpec + get() = plugins.id("org.gradle.publishing") + + +/** + * The `org.gradle.reporting-base` plugin implemented by [org.gradle.api.plugins.ReportingBasePlugin]. + */ +internal +val `OrgGradlePluginGroup`.`reporting-base`: PluginDependencySpec + get() = plugins.id("org.gradle.reporting-base") + + +/** + * The `org.gradle.scala` plugin implemented by [org.gradle.api.plugins.scala.ScalaPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`scala`: PluginDependencySpec + get() = plugins.id("org.gradle.scala") + + +/** + * The `org.gradle.scala-base` plugin implemented by [org.gradle.api.plugins.scala.ScalaBasePlugin]. + */ +internal +val `OrgGradlePluginGroup`.`scala-base`: PluginDependencySpec + get() = plugins.id("org.gradle.scala-base") + + +/** + * The `org.gradle.signing` plugin implemented by [org.gradle.plugins.signing.SigningPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`signing`: PluginDependencySpec + get() = plugins.id("org.gradle.signing") + + +/** + * The `org.gradle.software-reporting-tasks` plugin implemented by [org.gradle.api.plugins.SoftwareReportingTasksPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`software-reporting-tasks`: PluginDependencySpec + get() = plugins.id("org.gradle.software-reporting-tasks") + + +/** + * The `org.gradle.standard-tool-chains` plugin implemented by [org.gradle.nativeplatform.toolchain.internal.plugins.StandardToolChainsPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`standard-tool-chains`: PluginDependencySpec + get() = plugins.id("org.gradle.standard-tool-chains") + + +/** + * The `org.gradle.swift-application` plugin implemented by [org.gradle.language.swift.plugins.SwiftApplicationPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`swift-application`: PluginDependencySpec + get() = plugins.id("org.gradle.swift-application") + + +/** + * The `org.gradle.swift-library` plugin implemented by [org.gradle.language.swift.plugins.SwiftLibraryPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`swift-library`: PluginDependencySpec + get() = plugins.id("org.gradle.swift-library") + + +/** + * The `org.gradle.swiftpm-export` plugin implemented by [org.gradle.swiftpm.plugins.SwiftPackageManagerExportPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`swiftpm-export`: PluginDependencySpec + get() = plugins.id("org.gradle.swiftpm-export") + + +/** + * The `org.gradle.test-report-aggregation` plugin implemented by [org.gradle.api.plugins.TestReportAggregationPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`test-report-aggregation`: PluginDependencySpec + get() = plugins.id("org.gradle.test-report-aggregation") + + +/** + * The `org.gradle.test-suite-base` plugin implemented by [org.gradle.testing.base.plugins.TestSuiteBasePlugin]. + */ +internal +val `OrgGradlePluginGroup`.`test-suite-base`: PluginDependencySpec + get() = plugins.id("org.gradle.test-suite-base") + + +/** + * The `org.gradle.version-catalog` plugin implemented by [org.gradle.api.plugins.catalog.VersionCatalogPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`version-catalog`: PluginDependencySpec + get() = plugins.id("org.gradle.version-catalog") + + +/** + * The `org.gradle.visual-studio` plugin implemented by [org.gradle.ide.visualstudio.plugins.VisualStudioPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`visual-studio`: PluginDependencySpec + get() = plugins.id("org.gradle.visual-studio") + + +/** + * The `org.gradle.war` plugin implemented by [org.gradle.api.plugins.WarPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`war`: PluginDependencySpec + get() = plugins.id("org.gradle.war") + + +/** + * The `org.gradle.windows-resource-script` plugin implemented by [org.gradle.language.rc.plugins.WindowsResourceScriptPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`windows-resource-script`: PluginDependencySpec + get() = plugins.id("org.gradle.windows-resource-script") + + +/** + * The `org.gradle.windows-resources` plugin implemented by [org.gradle.language.rc.plugins.WindowsResourcesPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`windows-resources`: PluginDependencySpec + get() = plugins.id("org.gradle.windows-resources") + + +/** + * The `org.gradle.wrapper` plugin implemented by [org.gradle.buildinit.plugins.WrapperPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`wrapper`: PluginDependencySpec + get() = plugins.id("org.gradle.wrapper") + + +/** + * The `org.gradle.xcode` plugin implemented by [org.gradle.ide.xcode.plugins.XcodePlugin]. + */ +internal +val `OrgGradlePluginGroup`.`xcode`: PluginDependencySpec + get() = plugins.id("org.gradle.xcode") + + +/** + * The `org.gradle.xctest` plugin implemented by [org.gradle.nativeplatform.test.xctest.plugins.XCTestConventionPlugin]. + */ +internal +val `OrgGradlePluginGroup`.`xctest`: PluginDependencySpec + get() = plugins.id("org.gradle.xctest") + + +/** + * The `org.jetbrains` plugin group. + */ +@org.gradle.api.Generated +internal +class `OrgJetbrainsPluginGroup`(internal val plugins: PluginDependenciesSpec) + + +/** + * Plugin ids starting with `org.jetbrains`. + */ +internal +val `OrgPluginGroup`.`jetbrains`: `OrgJetbrainsPluginGroup` + get() = `OrgJetbrainsPluginGroup`(plugins) + + +/** + * The `org.jetbrains.dokka` plugin implemented by [org.jetbrains.dokka.gradle.DokkaPlugin]. + */ +internal +val `OrgJetbrainsPluginGroup`.`dokka`: PluginDependencySpec + get() = plugins.id("org.jetbrains.dokka") + + +/** + * The `org.jetbrains.dokka-javadoc` plugin implemented by [org.jetbrains.dokka.gradle.formats.DokkaJavadocPlugin]. + */ +internal +val `OrgJetbrainsPluginGroup`.`dokka-javadoc`: PluginDependencySpec + get() = plugins.id("org.jetbrains.dokka-javadoc") + + +/** + * The `org.jetbrains.kotlin` plugin group. + */ +@org.gradle.api.Generated +internal +class `OrgJetbrainsKotlinPluginGroup`(internal val plugins: PluginDependenciesSpec) + + +/** + * Plugin ids starting with `org.jetbrains.kotlin`. + */ +internal +val `OrgJetbrainsPluginGroup`.`kotlin`: `OrgJetbrainsKotlinPluginGroup` + get() = `OrgJetbrainsKotlinPluginGroup`(plugins) + + +/** + * The `org.jetbrains.kotlin.android` plugin implemented by [org.jetbrains.kotlin.gradle.plugin.KotlinAndroidPluginWrapper]. + */ +internal +val `OrgJetbrainsKotlinPluginGroup`.`android`: PluginDependencySpec + get() = plugins.id("org.jetbrains.kotlin.android") + + +/** + * The `org.jetbrains.kotlin.fus-statistics-gradle-plugin` plugin implemented by [org.jetbrains.kotlin.gradle.fus.FusStatisticsPlugin]. + */ +internal +val `OrgJetbrainsKotlinPluginGroup`.`fus-statistics-gradle-plugin`: PluginDependencySpec + get() = plugins.id("org.jetbrains.kotlin.fus-statistics-gradle-plugin") + + +/** + * The `org.jetbrains.kotlin.js` plugin implemented by [org.jetbrains.kotlin.gradle.plugin.KotlinJsPluginWrapper]. + */ +internal +val `OrgJetbrainsKotlinPluginGroup`.`js`: PluginDependencySpec + get() = plugins.id("org.jetbrains.kotlin.js") + + +/** + * The `org.jetbrains.kotlin.jvm` plugin implemented by [org.jetbrains.kotlin.gradle.plugin.KotlinPluginWrapper]. + */ +internal +val `OrgJetbrainsKotlinPluginGroup`.`jvm`: PluginDependencySpec + get() = plugins.id("org.jetbrains.kotlin.jvm") + + +/** + * The `org.jetbrains.kotlin.kapt` plugin implemented by [org.jetbrains.kotlin.gradle.internal.Kapt3GradleSubplugin]. + */ +internal +val `OrgJetbrainsKotlinPluginGroup`.`kapt`: PluginDependencySpec + get() = plugins.id("org.jetbrains.kotlin.kapt") + + +/** + * The `org.jetbrains.kotlin.multiplatform` plugin implemented by [org.jetbrains.kotlin.gradle.plugin.KotlinMultiplatformPluginWrapper]. + */ +internal +val `OrgJetbrainsKotlinPluginGroup`.`multiplatform`: PluginDependencySpec + get() = plugins.id("org.jetbrains.kotlin.multiplatform") + + +/** + * The `org.jetbrains.kotlin.native` plugin group. + */ +@org.gradle.api.Generated +internal +class `OrgJetbrainsKotlinNativePluginGroup`(internal val plugins: PluginDependenciesSpec) + + +/** + * Plugin ids starting with `org.jetbrains.kotlin.native`. + */ +internal +val `OrgJetbrainsKotlinPluginGroup`.`native`: `OrgJetbrainsKotlinNativePluginGroup` + get() = `OrgJetbrainsKotlinNativePluginGroup`(plugins) + + +/** + * The `org.jetbrains.kotlin.native.cocoapods` plugin implemented by [org.jetbrains.kotlin.gradle.plugin.cocoapods.KotlinCocoapodsPlugin]. + */ +internal +val `OrgJetbrainsKotlinNativePluginGroup`.`cocoapods`: PluginDependencySpec + get() = plugins.id("org.jetbrains.kotlin.native.cocoapods") + + +/** + * The `org.jetbrains.kotlin.plugin` plugin group. + */ +@org.gradle.api.Generated +internal +class `OrgJetbrainsKotlinPluginPluginGroup`(internal val plugins: PluginDependenciesSpec) + + +/** + * Plugin ids starting with `org.jetbrains.kotlin.plugin`. + */ +internal +val `OrgJetbrainsKotlinPluginGroup`.`plugin`: `OrgJetbrainsKotlinPluginPluginGroup` + get() = `OrgJetbrainsKotlinPluginPluginGroup`(plugins) + + +/** + * The `org.jetbrains.kotlin.plugin.parcelize` plugin implemented by [org.jetbrains.kotlin.gradle.internal.ParcelizeSubplugin]. + */ +internal +val `OrgJetbrainsKotlinPluginPluginGroup`.`parcelize`: PluginDependencySpec + get() = plugins.id("org.jetbrains.kotlin.plugin.parcelize") + + +/** + * The `org.jetbrains.kotlin.plugin.scripting` plugin implemented by [org.jetbrains.kotlin.gradle.scripting.internal.ScriptingGradleSubplugin]. + */ +internal +val `OrgJetbrainsKotlinPluginPluginGroup`.`scripting`: PluginDependencySpec + get() = plugins.id("org.jetbrains.kotlin.plugin.scripting") diff --git a/build-logic/convention/build/generated-sources/kotlin-dsl-plugins/kotlin/DokkaConventionPlugin.kt b/build-logic/convention/build/generated-sources/kotlin-dsl-plugins/kotlin/DokkaConventionPlugin.kt new file mode 100644 index 00000000..14135b8b --- /dev/null +++ b/build-logic/convention/build/generated-sources/kotlin-dsl-plugins/kotlin/DokkaConventionPlugin.kt @@ -0,0 +1,18 @@ +/** + * Precompiled [dokka-convention.gradle.kts][Dokka_convention_gradle] script plugin. + * + * @see Dokka_convention_gradle + */ +public +class DokkaConventionPlugin : org.gradle.api.Plugin { + override fun apply(target: org.gradle.api.Project) { + try { + Class + .forName("Dokka_convention_gradle") + .getDeclaredConstructor(org.gradle.api.Project::class.java, org.gradle.api.Project::class.java) + .newInstance(target, target) + } catch (e: java.lang.reflect.InvocationTargetException) { + throw e.targetException + } + } +} diff --git a/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/Dokka_convention_gradle.class b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/Dokka_convention_gradle.class new file mode 100644 index 00000000..f88de533 Binary files /dev/null and b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/Dokka_convention_gradle.class differ diff --git a/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/META-INF/gradle-kotlin-dsl-plugins-blocks.kotlin_module b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/META-INF/gradle-kotlin-dsl-plugins-blocks.kotlin_module new file mode 100644 index 00000000..a497f781 Binary files /dev/null and b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/META-INF/gradle-kotlin-dsl-plugins-blocks.kotlin_module differ diff --git a/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidInternalKotlinMultiplatformPluginGroup.class b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidInternalKotlinMultiplatformPluginGroup.class new file mode 100644 index 00000000..46ec2b09 Binary files /dev/null and b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidInternalKotlinMultiplatformPluginGroup.class differ diff --git a/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidInternalKotlinPluginGroup.class b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidInternalKotlinPluginGroup.class new file mode 100644 index 00000000..68171ad2 Binary files /dev/null and b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidInternalKotlinPluginGroup.class differ diff --git a/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidInternalPluginGroup.class b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidInternalPluginGroup.class new file mode 100644 index 00000000..cd5f14f6 Binary files /dev/null and b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidInternalPluginGroup.class differ diff --git a/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidKotlinMultiplatformPluginGroup.class b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidKotlinMultiplatformPluginGroup.class new file mode 100644 index 00000000..5869e8e4 Binary files /dev/null and b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidKotlinMultiplatformPluginGroup.class differ diff --git a/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidKotlinPluginGroup.class b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidKotlinPluginGroup.class new file mode 100644 index 00000000..59bb3d92 Binary files /dev/null and b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidKotlinPluginGroup.class differ diff --git a/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidPluginGroup.class b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidPluginGroup.class new file mode 100644 index 00000000..4b067ffa Binary files /dev/null and b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComAndroidPluginGroup.class differ diff --git a/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComPluginGroup.class b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComPluginGroup.class new file mode 100644 index 00000000..6aa48435 Binary files /dev/null and b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComPluginGroup.class differ diff --git a/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComVanniktechMavenPluginGroup.class b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComVanniktechMavenPluginGroup.class new file mode 100644 index 00000000..d39bfd98 Binary files /dev/null and b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComVanniktechMavenPluginGroup.class differ diff --git a/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComVanniktechPluginGroup.class b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComVanniktechPluginGroup.class new file mode 100644 index 00000000..d0be448e Binary files /dev/null and b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/ComVanniktechPluginGroup.class differ diff --git a/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgGradlePluginGroup.class b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgGradlePluginGroup.class new file mode 100644 index 00000000..9468c2bc Binary files /dev/null and b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgGradlePluginGroup.class differ diff --git a/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgJetbrainsKotlinNativePluginGroup.class b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgJetbrainsKotlinNativePluginGroup.class new file mode 100644 index 00000000..394fae93 Binary files /dev/null and b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgJetbrainsKotlinNativePluginGroup.class differ diff --git a/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgJetbrainsKotlinPluginGroup.class b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgJetbrainsKotlinPluginGroup.class new file mode 100644 index 00000000..f502d230 Binary files /dev/null and b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgJetbrainsKotlinPluginGroup.class differ diff --git a/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgJetbrainsKotlinPluginPluginGroup.class b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgJetbrainsKotlinPluginPluginGroup.class new file mode 100644 index 00000000..e4710fd7 Binary files /dev/null and b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgJetbrainsKotlinPluginPluginGroup.class differ diff --git a/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgJetbrainsPluginGroup.class b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgJetbrainsPluginGroup.class new file mode 100644 index 00000000..f5873c12 Binary files /dev/null and b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgJetbrainsPluginGroup.class differ diff --git a/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgPluginGroup.class b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgPluginGroup.class new file mode 100644 index 00000000..43fc0566 Binary files /dev/null and b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/OrgPluginGroup.class differ diff --git a/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/PluginSpecBuildersKt.class b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/PluginSpecBuildersKt.class new file mode 100644 index 00000000..562c4f37 Binary files /dev/null and b/build-logic/convention/build/kotlin-dsl/plugins-blocks/compiled/gradle/kotlin/dsl/plugins/_a63f88d9982dc9c8556c568013d1c3d6/PluginSpecBuildersKt.class differ diff --git a/build-logic/convention/build/kotlin-dsl/plugins-blocks/extracted/dokka-convention.gradle.kts b/build-logic/convention/build/kotlin-dsl/plugins-blocks/extracted/dokka-convention.gradle.kts new file mode 100644 index 00000000..1ef7bc8e --- /dev/null +++ b/build-logic/convention/build/kotlin-dsl/plugins-blocks/extracted/dokka-convention.gradle.kts @@ -0,0 +1,7 @@ + + + + +plugins { + id("org.jetbrains.dokka") +} \ No newline at end of file diff --git a/build-logic/convention/build/kotlin-dsl/precompiled-script-plugins-metadata/accessors/f2b189c3948e125b9f3862904e0624c1 b/build-logic/convention/build/kotlin-dsl/precompiled-script-plugins-metadata/accessors/f2b189c3948e125b9f3862904e0624c1 new file mode 100644 index 00000000..5d6b198c --- /dev/null +++ b/build-logic/convention/build/kotlin-dsl/precompiled-script-plugins-metadata/accessors/f2b189c3948e125b9f3862904e0624c1 @@ -0,0 +1 @@ +gradle.kotlin.dsl.accessors._ae0e2e0f59d526dd61b4865f6e032691.* \ No newline at end of file diff --git a/build-logic/convention/build/kotlin-dsl/precompiled-script-plugins-metadata/plugin-spec-builders/kotlinDslPluginSpecBuildersImplicitImports b/build-logic/convention/build/kotlin-dsl/precompiled-script-plugins-metadata/plugin-spec-builders/kotlinDslPluginSpecBuildersImplicitImports new file mode 100644 index 00000000..a1036a6f --- /dev/null +++ b/build-logic/convention/build/kotlin-dsl/precompiled-script-plugins-metadata/plugin-spec-builders/kotlinDslPluginSpecBuildersImplicitImports @@ -0,0 +1 @@ +gradle.kotlin.dsl.plugins._a63f88d9982dc9c8556c568013d1c3d6.* \ No newline at end of file diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/inputs/source-to-output.tab b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/inputs/source-to-output.tab new file mode 100644 index 00000000..bdf584a8 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/inputs/source-to-output.tab differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream new file mode 100644 index 00000000..01c48391 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len new file mode 100644 index 00000000..00880ddc Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len new file mode 100644 index 00000000..2a17e6e5 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values new file mode 100644 index 00000000..1789d403 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at new file mode 100644 index 00000000..8f19a714 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.s b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.s new file mode 100644 index 00000000..e5211ff1 --- /dev/null +++ b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.s @@ -0,0 +1 @@ +ì4 \ No newline at end of file diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i new file mode 100644 index 00000000..7aeabb5a Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len new file mode 100644 index 00000000..131e2657 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab new file mode 100644 index 00000000..bdf584a8 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream new file mode 100644 index 00000000..d17bbd10 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len new file mode 100644 index 00000000..38069dbf Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len new file mode 100644 index 00000000..2a17e6e5 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at new file mode 100644 index 00000000..53b2d29f Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i new file mode 100644 index 00000000..9979cb41 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len new file mode 100644 index 00000000..131e2657 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab new file mode 100644 index 00000000..bdf584a8 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream new file mode 100644 index 00000000..d17bbd10 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len new file mode 100644 index 00000000..38069dbf Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len new file mode 100644 index 00000000..2a17e6e5 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at new file mode 100644 index 00000000..652a7950 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i new file mode 100644 index 00000000..9979cb41 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len new file mode 100644 index 00000000..131e2657 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab new file mode 100644 index 00000000..851b6e69 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream new file mode 100644 index 00000000..8e4a4c8f Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len new file mode 100644 index 00000000..4c604513 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len new file mode 100644 index 00000000..3085af4d Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values new file mode 100644 index 00000000..72623ebc Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at new file mode 100644 index 00000000..8d7ff449 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.s b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.s new file mode 100644 index 00000000..6ae800fb --- /dev/null +++ b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.s @@ -0,0 +1 @@ +ÿ/ \ No newline at end of file diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i new file mode 100644 index 00000000..7ad1b875 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len new file mode 100644 index 00000000..131e2657 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab new file mode 100644 index 00000000..860fba8b Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream new file mode 100644 index 00000000..2b9d0854 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len new file mode 100644 index 00000000..48d03661 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len new file mode 100644 index 00000000..96571e78 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at new file mode 100644 index 00000000..b8130ad8 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i new file mode 100644 index 00000000..f8842b76 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len new file mode 100644 index 00000000..131e2657 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab new file mode 100644 index 00000000..5d52691c Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream new file mode 100644 index 00000000..b2240c4b Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len new file mode 100644 index 00000000..541378f2 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len new file mode 100644 index 00000000..01bdaa1d Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values new file mode 100644 index 00000000..5da67911 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at new file mode 100644 index 00000000..00ee043e Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s new file mode 100644 index 00000000..645dfe16 --- /dev/null +++ b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s @@ -0,0 +1 @@ +Á8Ân \ No newline at end of file diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i new file mode 100644 index 00000000..52a7e79b Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len new file mode 100644 index 00000000..131e2657 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab new file mode 100644 index 00000000..bdf584a8 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream new file mode 100644 index 00000000..01c48391 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len new file mode 100644 index 00000000..00880ddc Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len new file mode 100644 index 00000000..2a17e6e5 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at new file mode 100644 index 00000000..b5ee93c2 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i new file mode 100644 index 00000000..7aeabb5a Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len new file mode 100644 index 00000000..131e2657 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab new file mode 100644 index 00000000..bdf584a8 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream new file mode 100644 index 00000000..2f0b1735 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len new file mode 100644 index 00000000..2647ad19 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len new file mode 100644 index 00000000..2a17e6e5 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at new file mode 100644 index 00000000..a948a77c Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i new file mode 100644 index 00000000..a685cceb Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len new file mode 100644 index 00000000..131e2657 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab new file mode 100644 index 00000000..bdf584a8 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream new file mode 100644 index 00000000..d17bbd10 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len new file mode 100644 index 00000000..38069dbf Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len new file mode 100644 index 00000000..2a17e6e5 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at new file mode 100644 index 00000000..a5365bba Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i new file mode 100644 index 00000000..9979cb41 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len new file mode 100644 index 00000000..131e2657 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/counters.tab b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/counters.tab new file mode 100644 index 00000000..166c0578 --- /dev/null +++ b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/counters.tab @@ -0,0 +1,2 @@ +1 +0 \ No newline at end of file diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/file-to-id.tab b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/file-to-id.tab new file mode 100644 index 00000000..bdf584a8 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/file-to-id.tab differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream new file mode 100644 index 00000000..01c48391 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len new file mode 100644 index 00000000..00880ddc Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len new file mode 100644 index 00000000..2a17e6e5 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at new file mode 100644 index 00000000..58753723 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i new file mode 100644 index 00000000..7aeabb5a Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len new file mode 100644 index 00000000..131e2657 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/id-to-file.tab b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/id-to-file.tab new file mode 100644 index 00000000..8aad32b3 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/id-to-file.tab differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream new file mode 100644 index 00000000..08e7df17 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len new file mode 100644 index 00000000..b7da01d9 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len new file mode 100644 index 00000000..2a17e6e5 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at new file mode 100644 index 00000000..652a7950 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i new file mode 100644 index 00000000..1cc6235f Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len new file mode 100644 index 00000000..1b1cb4d4 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/lookups.tab b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/lookups.tab new file mode 100644 index 00000000..fd2d3426 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/lookups.tab differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream new file mode 100644 index 00000000..7249799f Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len new file mode 100644 index 00000000..96e83651 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/lookups.tab.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/lookups.tab.len new file mode 100644 index 00000000..bf3e15f8 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/lookups.tab.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at new file mode 100644 index 00000000..6d09fa56 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/lookups.tab_i b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/lookups.tab_i new file mode 100644 index 00000000..5cb0376a Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/lookups.tab_i differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len new file mode 100644 index 00000000..131e2657 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/cacheable/last-build.bin b/build-logic/convention/build/kotlin/compileKotlin/cacheable/last-build.bin new file mode 100644 index 00000000..fdcbefae Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/cacheable/last-build.bin differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin b/build-logic/convention/build/kotlin/compileKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin new file mode 100644 index 00000000..6c6a1bc1 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin differ diff --git a/build-logic/convention/build/kotlin/compileKotlin/local-state/build-history.bin b/build-logic/convention/build/kotlin/compileKotlin/local-state/build-history.bin new file mode 100644 index 00000000..ffc76f53 Binary files /dev/null and b/build-logic/convention/build/kotlin/compileKotlin/local-state/build-history.bin differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/inputs/source-to-output.tab b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/inputs/source-to-output.tab new file mode 100644 index 00000000..5a8b47db Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/inputs/source-to-output.tab differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/inputs/source-to-output.tab.keystream b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/inputs/source-to-output.tab.keystream new file mode 100644 index 00000000..5afe6440 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/inputs/source-to-output.tab.keystream differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len new file mode 100644 index 00000000..b94f48dd Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/inputs/source-to-output.tab.len b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/inputs/source-to-output.tab.len new file mode 100644 index 00000000..01bdaa1d Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/inputs/source-to-output.tab.len differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/inputs/source-to-output.tab.values.at b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/inputs/source-to-output.tab.values.at new file mode 100644 index 00000000..dfbbb9f2 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/inputs/source-to-output.tab.values.at differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/inputs/source-to-output.tab_i b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/inputs/source-to-output.tab_i new file mode 100644 index 00000000..50a56389 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/inputs/source-to-output.tab_i differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/inputs/source-to-output.tab_i.len b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/inputs/source-to-output.tab_i.len new file mode 100644 index 00000000..131e2657 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/inputs/source-to-output.tab_i.len differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab new file mode 100644 index 00000000..e277f53f Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream new file mode 100644 index 00000000..64b0265a Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len new file mode 100644 index 00000000..3a5fbc34 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len new file mode 100644 index 00000000..9911af50 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at new file mode 100644 index 00000000..ecd6c704 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i new file mode 100644 index 00000000..884efb7f Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len new file mode 100644 index 00000000..131e2657 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab new file mode 100644 index 00000000..33de9cc3 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream new file mode 100644 index 00000000..64b0265a Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len new file mode 100644 index 00000000..3a5fbc34 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len new file mode 100644 index 00000000..9911af50 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at new file mode 100644 index 00000000..59440c6b Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i new file mode 100644 index 00000000..884efb7f Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len new file mode 100644 index 00000000..131e2657 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab new file mode 100644 index 00000000..8ceda308 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream new file mode 100644 index 00000000..6dc87a99 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len new file mode 100644 index 00000000..f42d3a88 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len new file mode 100644 index 00000000..385642d9 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at new file mode 100644 index 00000000..9a64237d Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i new file mode 100644 index 00000000..678e5e46 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len new file mode 100644 index 00000000..131e2657 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/package-parts.tab b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/package-parts.tab new file mode 100644 index 00000000..bdf584a8 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/package-parts.tab differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream new file mode 100644 index 00000000..d37ebd86 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len new file mode 100644 index 00000000..10d6e6e6 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len new file mode 100644 index 00000000..2a17e6e5 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at new file mode 100644 index 00000000..46d67449 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i new file mode 100644 index 00000000..046cb20a Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len new file mode 100644 index 00000000..131e2657 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/proto.tab b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/proto.tab new file mode 100644 index 00000000..71ede410 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/proto.tab differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream new file mode 100644 index 00000000..7d75465c Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len new file mode 100644 index 00000000..986df874 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/proto.tab.len b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/proto.tab.len new file mode 100644 index 00000000..09407efa Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/proto.tab.len differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at new file mode 100644 index 00000000..00e9f4f1 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/proto.tab_i b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/proto.tab_i new file mode 100644 index 00000000..a20393c0 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/proto.tab_i differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len new file mode 100644 index 00000000..131e2657 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab new file mode 100644 index 00000000..cb312a1b Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream new file mode 100644 index 00000000..5afe6440 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len new file mode 100644 index 00000000..b94f48dd Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len new file mode 100644 index 00000000..01bdaa1d Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at new file mode 100644 index 00000000..c940ebe9 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i new file mode 100644 index 00000000..50a56389 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len new file mode 100644 index 00000000..131e2657 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/counters.tab b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/counters.tab new file mode 100644 index 00000000..2ceb12b8 --- /dev/null +++ b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/counters.tab @@ -0,0 +1,2 @@ +2 +0 \ No newline at end of file diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/file-to-id.tab b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/file-to-id.tab new file mode 100644 index 00000000..6526cd2f Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/file-to-id.tab differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/file-to-id.tab.keystream b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/file-to-id.tab.keystream new file mode 100644 index 00000000..43c1b018 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/file-to-id.tab.keystream differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len new file mode 100644 index 00000000..b94f48dd Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/file-to-id.tab.len b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/file-to-id.tab.len new file mode 100644 index 00000000..01bdaa1d Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/file-to-id.tab.len differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/file-to-id.tab.values.at b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/file-to-id.tab.values.at new file mode 100644 index 00000000..7d30a43b Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/file-to-id.tab.values.at differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/file-to-id.tab_i b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/file-to-id.tab_i new file mode 100644 index 00000000..41ca46d7 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/file-to-id.tab_i differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/file-to-id.tab_i.len b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/file-to-id.tab_i.len new file mode 100644 index 00000000..131e2657 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/file-to-id.tab_i.len differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/id-to-file.tab b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/id-to-file.tab new file mode 100644 index 00000000..227c1de8 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/id-to-file.tab differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/id-to-file.tab.keystream b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/id-to-file.tab.keystream new file mode 100644 index 00000000..100d2055 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/id-to-file.tab.keystream differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len new file mode 100644 index 00000000..ccfcbf41 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/id-to-file.tab.len b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/id-to-file.tab.len new file mode 100644 index 00000000..01bdaa1d Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/id-to-file.tab.len differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/id-to-file.tab.values.at b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/id-to-file.tab.values.at new file mode 100644 index 00000000..f5a7f909 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/id-to-file.tab.values.at differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/id-to-file.tab_i b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/id-to-file.tab_i new file mode 100644 index 00000000..f768a77f Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/id-to-file.tab_i differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/id-to-file.tab_i.len b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/id-to-file.tab_i.len new file mode 100644 index 00000000..131e2657 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/id-to-file.tab_i.len differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/lookups.tab b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/lookups.tab new file mode 100644 index 00000000..fb721d1f Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/lookups.tab differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/lookups.tab.keystream b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/lookups.tab.keystream new file mode 100644 index 00000000..01392747 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/lookups.tab.keystream differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/lookups.tab.keystream.len b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/lookups.tab.keystream.len new file mode 100644 index 00000000..edffc6ef Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/lookups.tab.keystream.len differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/lookups.tab.len b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/lookups.tab.len new file mode 100644 index 00000000..47add148 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/lookups.tab.len differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/lookups.tab.values.at b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/lookups.tab.values.at new file mode 100644 index 00000000..277bce38 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/lookups.tab.values.at differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/lookups.tab_i b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/lookups.tab_i new file mode 100644 index 00000000..26990c56 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/lookups.tab_i differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/lookups.tab_i.len b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/lookups.tab_i.len new file mode 100644 index 00000000..131e2657 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/caches-jvm/lookups/lookups.tab_i.len differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/last-build.bin b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/last-build.bin new file mode 100644 index 00000000..fd76ce25 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/cacheable/last-build.bin differ diff --git a/build-logic/convention/build/kotlin/compilePluginsBlocks/classpath-snapshot/shrunk-classpath-snapshot.bin b/build-logic/convention/build/kotlin/compilePluginsBlocks/classpath-snapshot/shrunk-classpath-snapshot.bin new file mode 100644 index 00000000..0094beb6 Binary files /dev/null and b/build-logic/convention/build/kotlin/compilePluginsBlocks/classpath-snapshot/shrunk-classpath-snapshot.bin differ diff --git a/build-logic/convention/build/libs/convention.jar b/build-logic/convention/build/libs/convention.jar new file mode 100644 index 00000000..549e4144 Binary files /dev/null and b/build-logic/convention/build/libs/convention.jar differ diff --git a/build-logic/convention/build/pluginDescriptors/android.maps.compose.PublishingConventionPlugin.properties b/build-logic/convention/build/pluginDescriptors/android.maps.compose.PublishingConventionPlugin.properties new file mode 100644 index 00000000..4364991f --- /dev/null +++ b/build-logic/convention/build/pluginDescriptors/android.maps.compose.PublishingConventionPlugin.properties @@ -0,0 +1 @@ +implementation-class=PublishingConventionPlugin diff --git a/build-logic/convention/build/pluginDescriptors/dokka-convention.properties b/build-logic/convention/build/pluginDescriptors/dokka-convention.properties new file mode 100644 index 00000000..a48017a7 --- /dev/null +++ b/build-logic/convention/build/pluginDescriptors/dokka-convention.properties @@ -0,0 +1 @@ +implementation-class=DokkaConventionPlugin diff --git a/build-logic/convention/build/resources/main/META-INF/gradle-plugins/android.maps.compose.PublishingConventionPlugin.properties b/build-logic/convention/build/resources/main/META-INF/gradle-plugins/android.maps.compose.PublishingConventionPlugin.properties new file mode 100644 index 00000000..4364991f --- /dev/null +++ b/build-logic/convention/build/resources/main/META-INF/gradle-plugins/android.maps.compose.PublishingConventionPlugin.properties @@ -0,0 +1 @@ +implementation-class=PublishingConventionPlugin diff --git a/build-logic/convention/build/resources/main/META-INF/gradle-plugins/dokka-convention.properties b/build-logic/convention/build/resources/main/META-INF/gradle-plugins/dokka-convention.properties new file mode 100644 index 00000000..a48017a7 --- /dev/null +++ b/build-logic/convention/build/resources/main/META-INF/gradle-plugins/dokka-convention.properties @@ -0,0 +1 @@ +implementation-class=DokkaConventionPlugin diff --git a/build-logic/convention/build/tmp/jar/MANIFEST.MF b/build-logic/convention/build/tmp/jar/MANIFEST.MF new file mode 100644 index 00000000..58630c02 --- /dev/null +++ b/build-logic/convention/build/tmp/jar/MANIFEST.MF @@ -0,0 +1,2 @@ +Manifest-Version: 1.0 + diff --git a/build.gradle b/build.gradle deleted file mode 100644 index 3d00c1b0..00000000 --- a/build.gradle +++ /dev/null @@ -1,131 +0,0 @@ -// Top-level build file where you can add configuration options common to all sub-projects/modules. -buildscript { - ext.kotlin_version = '1.6.0' - repositories { - google() - mavenCentral() - } - dependencies { - classpath "com.android.tools.build:gradle:7.0.4" - classpath "com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:2.0.0" - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" - classpath 'org.jetbrains.dokka:dokka-gradle-plugin:1.5.0' - } -} - -plugins { - id 'org.jetbrains.dokka' version '1.5.0' -} - -ext.projectArtifactId = { project -> - if (project.name == 'maps-compose') { - return project.name - } else { - return null - } -} - -allprojects { - group = 'com.google.maps.android' - version = '1.0.0' - project.ext.artifactId = rootProject.ext.projectArtifactId(project) -} - -/** - * Publishing and signing info - */ -subprojects { project -> - if (project.ext.artifactId == null) return - - apply plugin: 'com.android.library' - apply plugin: 'maven-publish' - apply plugin: 'org.jetbrains.dokka' - apply plugin: 'signing' - - task sourcesJar(type: Jar) { - from android.sourceSets.main.java.source - archiveClassifier.set("sources") - } - - task javadocJar(type: Jar) { - dependsOn(tasks.named("dokkaHtml")) - dependsOn(tasks.named("dokkaJavadoc")) - archiveClassifier.set("javadoc") - from new File(buildDir, "dokka/javadoc") - } - - publishing { - publications { - aar(MavenPublication) { - groupId project.group - artifactId project.ext.artifactId - version project.version - - pom { - name = project.name - description = "Jetpack Compose components for the Maps SDK for Android" - url = "https://github.com/googlemaps/android-maps-compose" - scm { - connection = 'scm:git@github.com:googlemaps/android-maps-compose.git' - developerConnection = 'scm:git@github.com:googlemaps/android-maps-compose.git' - url = 'https://github.com/googlemaps/android-maps-compose' - } - - licenses { - license { - name = 'The Apache Software License, Version 2.0' - url = 'http://www.apache.org/licenses/LICENSE-2.0.txt' - distribution = 'repo' - } - } - - organization { - name = 'Google Inc' - url = 'http://developers.google.com/maps' - } - - developers { - developer { - name = 'Google Inc.' - } - } - } - - pom.withXml { - def dependenciesNode = asNode().appendNode('dependencies') - project.configurations.api.allDependencies.each { dependency -> - def dependencyNode = dependenciesNode.appendNode('dependency') - dependencyNode.appendNode('groupId', dependency.group) - dependencyNode.appendNode('artifactId', dependency.name) - dependencyNode.appendNode('version', dependency.version) - } - } - - afterEvaluate { - artifact "$buildDir/outputs/aar/$project.name-release.aar" - artifact javadocJar - artifact sourcesJar - } - } - } - - repositories { - maven { - name = "mavencentral" - url = "https://oss.sonatype.org/service/local/staging/deploy/maven2/" - credentials { - username sonatypeUsername - password sonatypePassword - } - } - } - } - - signing { - sign publishing.publications.aar - } -} - -task clean(type: Delete) { - delete rootProject.buildDir -} diff --git a/docs/build/dokka/html/images/abstract-class-kotlin.svg b/docs/build/dokka/html/images/abstract-class-kotlin.svg new file mode 100644 index 00000000..97b7723a --- /dev/null +++ b/docs/build/dokka/html/images/abstract-class-kotlin.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/build/dokka/html/images/abstract-class.svg b/docs/build/dokka/html/images/abstract-class.svg new file mode 100644 index 00000000..ead94b8b --- /dev/null +++ b/docs/build/dokka/html/images/abstract-class.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/docs/build/dokka/html/images/anchor-copy-icon.svg b/docs/build/dokka/html/images/anchor-copy-icon.svg new file mode 100644 index 00000000..dd43e769 --- /dev/null +++ b/docs/build/dokka/html/images/anchor-copy-icon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/docs/build/dokka/html/images/annotation-kotlin.svg b/docs/build/dokka/html/images/annotation-kotlin.svg new file mode 100644 index 00000000..b7482420 --- /dev/null +++ b/docs/build/dokka/html/images/annotation-kotlin.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + diff --git a/docs/build/dokka/html/images/annotation.svg b/docs/build/dokka/html/images/annotation.svg new file mode 100644 index 00000000..76c2f4bb --- /dev/null +++ b/docs/build/dokka/html/images/annotation.svg @@ -0,0 +1,9 @@ + + + + + + + diff --git a/docs/build/dokka/html/images/arrow-down.svg b/docs/build/dokka/html/images/arrow-down.svg new file mode 100644 index 00000000..ca54658d --- /dev/null +++ b/docs/build/dokka/html/images/arrow-down.svg @@ -0,0 +1,3 @@ + + + diff --git a/docs/build/dokka/html/images/burger.svg b/docs/build/dokka/html/images/burger.svg new file mode 100644 index 00000000..a26f194d --- /dev/null +++ b/docs/build/dokka/html/images/burger.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/docs/build/dokka/html/images/check.svg b/docs/build/dokka/html/images/check.svg new file mode 100644 index 00000000..291e5eed --- /dev/null +++ b/docs/build/dokka/html/images/check.svg @@ -0,0 +1,3 @@ + + + diff --git a/docs/build/dokka/html/images/checkbox-off.svg b/docs/build/dokka/html/images/checkbox-off.svg new file mode 100644 index 00000000..a5117e8d --- /dev/null +++ b/docs/build/dokka/html/images/checkbox-off.svg @@ -0,0 +1,3 @@ + + + diff --git a/docs/build/dokka/html/images/checkbox-on.svg b/docs/build/dokka/html/images/checkbox-on.svg new file mode 100644 index 00000000..71891d57 --- /dev/null +++ b/docs/build/dokka/html/images/checkbox-on.svg @@ -0,0 +1,3 @@ + + + diff --git a/docs/build/dokka/html/images/class-kotlin.svg b/docs/build/dokka/html/images/class-kotlin.svg new file mode 100644 index 00000000..dc23120a --- /dev/null +++ b/docs/build/dokka/html/images/class-kotlin.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + diff --git a/docs/build/dokka/html/images/class.svg b/docs/build/dokka/html/images/class.svg new file mode 100644 index 00000000..2447cf78 --- /dev/null +++ b/docs/build/dokka/html/images/class.svg @@ -0,0 +1,9 @@ + + + + + + + diff --git a/docs/build/dokka/html/images/copy-icon.svg b/docs/build/dokka/html/images/copy-icon.svg new file mode 100644 index 00000000..abeb27e5 --- /dev/null +++ b/docs/build/dokka/html/images/copy-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/docs/build/dokka/html/images/cross.svg b/docs/build/dokka/html/images/cross.svg new file mode 100644 index 00000000..232069f8 --- /dev/null +++ b/docs/build/dokka/html/images/cross.svg @@ -0,0 +1,3 @@ + + + diff --git a/docs/build/dokka/html/images/enum-kotlin.svg b/docs/build/dokka/html/images/enum-kotlin.svg new file mode 100644 index 00000000..207a0ef3 --- /dev/null +++ b/docs/build/dokka/html/images/enum-kotlin.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + diff --git a/docs/build/dokka/html/images/enum.svg b/docs/build/dokka/html/images/enum.svg new file mode 100644 index 00000000..2deba5f1 --- /dev/null +++ b/docs/build/dokka/html/images/enum.svg @@ -0,0 +1,9 @@ + + + + + + + diff --git a/docs/build/dokka/html/images/exception-class.svg b/docs/build/dokka/html/images/exception-class.svg new file mode 100644 index 00000000..1bb4f88e --- /dev/null +++ b/docs/build/dokka/html/images/exception-class.svg @@ -0,0 +1,9 @@ + + + + + + + diff --git a/docs/build/dokka/html/images/field-value.svg b/docs/build/dokka/html/images/field-value.svg new file mode 100644 index 00000000..3aa75be3 --- /dev/null +++ b/docs/build/dokka/html/images/field-value.svg @@ -0,0 +1,10 @@ + + + + + + + + diff --git a/docs/build/dokka/html/images/field-variable.svg b/docs/build/dokka/html/images/field-variable.svg new file mode 100644 index 00000000..7a8af509 --- /dev/null +++ b/docs/build/dokka/html/images/field-variable.svg @@ -0,0 +1,10 @@ + + + + + + + + diff --git a/docs/build/dokka/html/images/filter.svg b/docs/build/dokka/html/images/filter.svg new file mode 100644 index 00000000..be62ea5b --- /dev/null +++ b/docs/build/dokka/html/images/filter.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/docs/build/dokka/html/images/function.svg b/docs/build/dokka/html/images/function.svg new file mode 100644 index 00000000..e56a4175 --- /dev/null +++ b/docs/build/dokka/html/images/function.svg @@ -0,0 +1,9 @@ + + + + + + + diff --git a/docs/build/dokka/html/images/go-to-top-icon.svg b/docs/build/dokka/html/images/go-to-top-icon.svg new file mode 100644 index 00000000..62df4c7d --- /dev/null +++ b/docs/build/dokka/html/images/go-to-top-icon.svg @@ -0,0 +1,4 @@ + + + + diff --git a/docs/build/dokka/html/images/homepage.svg b/docs/build/dokka/html/images/homepage.svg new file mode 100644 index 00000000..9a8927a4 --- /dev/null +++ b/docs/build/dokka/html/images/homepage.svg @@ -0,0 +1,3 @@ + + + diff --git a/docs/build/dokka/html/images/interface-kotlin.svg b/docs/build/dokka/html/images/interface-kotlin.svg new file mode 100644 index 00000000..e5273f05 --- /dev/null +++ b/docs/build/dokka/html/images/interface-kotlin.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + diff --git a/docs/build/dokka/html/images/interface.svg b/docs/build/dokka/html/images/interface.svg new file mode 100644 index 00000000..06370287 --- /dev/null +++ b/docs/build/dokka/html/images/interface.svg @@ -0,0 +1,9 @@ + + + + + + + diff --git a/docs/build/dokka/html/images/logo-icon.svg b/docs/build/dokka/html/images/logo-icon.svg new file mode 100644 index 00000000..ea6f37ed --- /dev/null +++ b/docs/build/dokka/html/images/logo-icon.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + diff --git a/docs/build/dokka/html/images/object.svg b/docs/build/dokka/html/images/object.svg new file mode 100644 index 00000000..5f960b74 --- /dev/null +++ b/docs/build/dokka/html/images/object.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + diff --git a/docs/build/dokka/html/images/placeholder.svg b/docs/build/dokka/html/images/placeholder.svg new file mode 100644 index 00000000..e8129621 --- /dev/null +++ b/docs/build/dokka/html/images/placeholder.svg @@ -0,0 +1,3 @@ + + + diff --git a/docs/build/dokka/html/images/success-icon.svg b/docs/build/dokka/html/images/success-icon.svg new file mode 100644 index 00000000..76945ebe --- /dev/null +++ b/docs/build/dokka/html/images/success-icon.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/docs/build/dokka/html/images/theme-toggle.svg b/docs/build/dokka/html/images/theme-toggle.svg new file mode 100644 index 00000000..490263f3 --- /dev/null +++ b/docs/build/dokka/html/images/theme-toggle.svg @@ -0,0 +1,3 @@ + + + diff --git a/docs/build/dokka/html/images/typealias-kotlin.svg b/docs/build/dokka/html/images/typealias-kotlin.svg new file mode 100644 index 00000000..73a08851 --- /dev/null +++ b/docs/build/dokka/html/images/typealias-kotlin.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + diff --git a/docs/build/dokka/html/index.html b/docs/build/dokka/html/index.html new file mode 100644 index 00000000..6d43af3a --- /dev/null +++ b/docs/build/dokka/html/index.html @@ -0,0 +1,135 @@ + + + + + All modules + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

All modules:

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose-utils/com.google.maps.android.compose.clustering/-clustering.html b/docs/build/dokka/html/maps-compose-utils/com.google.maps.android.compose.clustering/-clustering.html new file mode 100644 index 00000000..80dcaa8f --- /dev/null +++ b/docs/build/dokka/html/maps-compose-utils/com.google.maps.android.compose.clustering/-clustering.html @@ -0,0 +1,137 @@ + + + + + Clustering + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

Clustering

+
+
fun <T : ClusterItem> Clustering(items: Collection<T>, onClusterClick: (Cluster<T>) -> Boolean = { false }, onClusterItemClick: (T) -> Boolean = { false }, onClusterItemInfoWindowClick: (T) -> Unit = { }, onClusterItemInfoWindowLongClick: (T) -> Unit = { }, clusterContent: @Composable (Cluster<T>) -> Unit? = null, clusterItemContent: @Composable (T) -> Unit? = null)

Groups many items on a map based on zoom level.

Parameters

items

all items to show

onClusterClick

a lambda invoked when the user clicks a cluster of items

onClusterItemClick

a lambda invoked when the user clicks a non-clustered item

onClusterItemInfoWindowClick

a lambda invoked when the user clicks the info window of a non-clustered item

onClusterItemInfoWindowLongClick

a lambda invoked when the user long-clicks the info window of a non-clustered item

clusterContent

an optional Composable that is rendered for each Cluster.

clusterItemContent

an optional Composable that is rendered for each non-clustered item.


fun <T : ClusterItem> Clustering(items: Collection<T>, onClusterClick: (Cluster<T>) -> Boolean = { false }, onClusterItemClick: (T) -> Boolean = { false }, onClusterItemInfoWindowClick: (T) -> Unit = { }, onClusterItemInfoWindowLongClick: (T) -> Unit = { }, clusterContent: @Composable (Cluster<T>) -> Unit? = null, clusterItemContent: @Composable (T) -> Unit? = null, onClusterManager: (ClusterManager<T>) -> Unit? = null)

Groups many items on a map based on zoom level.

Parameters

items

all items to show

onClusterClick

a lambda invoked when the user clicks a cluster of items

onClusterItemClick

a lambda invoked when the user clicks a non-clustered item

onClusterItemInfoWindowClick

a lambda invoked when the user clicks the info window of a non-clustered item

onClusterItemInfoWindowLongClick

a lambda invoked when the user long-clicks the info window of a non-clustered item

clusterContent

an optional Composable that is rendered for each Cluster.

clusterItemContent

an optional Composable that is rendered for each non-clustered item.

onClusterManager

an optional lambda invoked with the clusterManager as a param when both the clusterManager and renderer are set up, allowing callers a customization hook.


fun <T : ClusterItem> Clustering(items: Collection<T>, clusterManager: ClusterManager<T>)

Groups many items on a map based on clusterManager.

Parameters

items

all items to show

clusterManager

a ClusterManager that can be used to specify the algorithm used by the rendering.


fun <T : ClusterItem> Clustering(items: Collection<T>, onClusterClick: (Cluster<T>) -> Boolean = { false }, onClusterItemClick: (T) -> Boolean = { false }, onClusterItemInfoWindowClick: (T) -> Unit = { }, onClusterItemInfoWindowLongClick: (T) -> Unit = { }, clusterContent: @Composable (Cluster<T>) -> Unit? = null, clusterItemContent: @Composable (T) -> Unit? = null, clusterRenderer: ClusterRenderer<T>? = null)

Deprecated

If clusterRenderer is specified, clusterContent and clusterItemContent are not used; use a function that takes ClusterManager as an argument instead.

Replace with

import com.google.maps.android.compose.clustering.Clustering
import androidx.compose.runtime.SideEffect
import com.google.maps.android.clustering.ClusterManager

+            val clusterManager = rememberClusterManager<T>()
+            LaunchedEffect(clusterManager, clusterRenderer) {
+                clusterManager?.renderer = clusterRenderer
+            }
+            SideEffect {
+                clusterManager ?: return@SideEffect
+                clusterManager.setOnClusterClickListener(onClusterClick)
+                clusterManager.setOnClusterItemClickListener(onClusterItemClick)
+                clusterManager.setOnClusterItemInfoWindowClickListener(onClusterItemInfoWindowClick)
+                clusterManager.setOnClusterItemInfoWindowLongClickListener(onClusterItemInfoWindowLongClick)
+            }
+            // Wait for renderer to apply before clustering
+            if (clusterManager != null && clusterManager.renderer == clusterRenderer) {
+                Clustering(
+                    items = items,
+                    clusterManager = clusterManager,
+                )
+            }
+        

Groups many items on a map based on zoom level.

Parameters

items

all items to show

onClusterClick

a lambda invoked when the user clicks a cluster of items

onClusterItemClick

a lambda invoked when the user clicks a non-clustered item

onClusterItemInfoWindowClick

a lambda invoked when the user clicks the info window of a non-clustered item

onClusterItemInfoWindowLongClick

a lambda invoked when the user long-clicks the info window of a non-clustered item

clusterContent

an optional Composable that is rendered for each Cluster.

clusterItemContent

an optional Composable that is rendered for each non-clustered item.

clusterRenderer

an optional ClusterRenderer that can be used to specify the algorithm used by the rendering.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose-utils/com.google.maps.android.compose.clustering/index.html b/docs/build/dokka/html/maps-compose-utils/com.google.maps.android.compose.clustering/index.html new file mode 100644 index 00000000..62c9209f --- /dev/null +++ b/docs/build/dokka/html/maps-compose-utils/com.google.maps.android.compose.clustering/index.html @@ -0,0 +1,171 @@ + + + + + com.google.maps.android.compose.clustering + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

Package-level declarations

+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun <T : ClusterItem> Clustering(items: Collection<T>, clusterManager: ClusterManager<T>)

Groups many items on a map based on clusterManager.

fun <T : ClusterItem> Clustering(items: Collection<T>, onClusterClick: (Cluster<T>) -> Boolean = { false }, onClusterItemClick: (T) -> Boolean = { false }, onClusterItemInfoWindowClick: (T) -> Unit = { }, onClusterItemInfoWindowLongClick: (T) -> Unit = { }, clusterContent: @Composable (Cluster<T>) -> Unit? = null, clusterItemContent: @Composable (T) -> Unit? = null)
fun <T : ClusterItem> Clustering(items: Collection<T>, onClusterClick: (Cluster<T>) -> Boolean = { false }, onClusterItemClick: (T) -> Boolean = { false }, onClusterItemInfoWindowClick: (T) -> Unit = { }, onClusterItemInfoWindowLongClick: (T) -> Unit = { }, clusterContent: @Composable (Cluster<T>) -> Unit? = null, clusterItemContent: @Composable (T) -> Unit? = null, clusterRenderer: ClusterRenderer<T>? = null)
fun <T : ClusterItem> Clustering(items: Collection<T>, onClusterClick: (Cluster<T>) -> Boolean = { false }, onClusterItemClick: (T) -> Boolean = { false }, onClusterItemInfoWindowClick: (T) -> Unit = { }, onClusterItemInfoWindowLongClick: (T) -> Unit = { }, clusterContent: @Composable (Cluster<T>) -> Unit? = null, clusterItemContent: @Composable (T) -> Unit? = null, onClusterManager: (ClusterManager<T>) -> Unit? = null)

Groups many items on a map based on zoom level.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun <T : ClusterItem> rememberClusterManager(): ClusterManager<T>?
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun <T : ClusterItem> rememberClusterRenderer(clusterManager: ClusterManager<T>?): ClusterRenderer<T>?

fun <T : ClusterItem> rememberClusterRenderer(clusterContent: @Composable (Cluster<T>) -> Unit?, clusterItemContent: @Composable (T) -> Unit?, clusterManager: ClusterManager<T>?): ClusterRenderer<T>?

Default Renderer for drawing Composable.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose-utils/com.google.maps.android.compose.clustering/remember-cluster-manager.html b/docs/build/dokka/html/maps-compose-utils/com.google.maps.android.compose.clustering/remember-cluster-manager.html new file mode 100644 index 00000000..700d5436 --- /dev/null +++ b/docs/build/dokka/html/maps-compose-utils/com.google.maps.android.compose.clustering/remember-cluster-manager.html @@ -0,0 +1,118 @@ + + + + + rememberClusterManager + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

rememberClusterManager

+
+
fun <T : ClusterItem> rememberClusterManager(): ClusterManager<T>?
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose-utils/com.google.maps.android.compose.clustering/remember-cluster-renderer.html b/docs/build/dokka/html/maps-compose-utils/com.google.maps.android.compose.clustering/remember-cluster-renderer.html new file mode 100644 index 00000000..00f8a18a --- /dev/null +++ b/docs/build/dokka/html/maps-compose-utils/com.google.maps.android.compose.clustering/remember-cluster-renderer.html @@ -0,0 +1,118 @@ + + + + + rememberClusterRenderer + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

rememberClusterRenderer

+
+
fun <T : ClusterItem> rememberClusterRenderer(clusterManager: ClusterManager<T>?): ClusterRenderer<T>?


fun <T : ClusterItem> rememberClusterRenderer(clusterContent: @Composable (Cluster<T>) -> Unit?, clusterItemContent: @Composable (T) -> Unit?, clusterManager: ClusterManager<T>?): ClusterRenderer<T>?

Default Renderer for drawing Composable.

Parameters

clusterContent

an optional Composable that is rendered for each Cluster.

clusterItemContent

an optional Composable that is rendered for each non-clustered item.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose-utils/index.html b/docs/build/dokka/html/maps-compose-utils/index.html new file mode 100644 index 00000000..fabd5214 --- /dev/null +++ b/docs/build/dokka/html/maps-compose-utils/index.html @@ -0,0 +1,137 @@ + + + + + maps-compose-utils + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

maps-compose-utils

+
+

Packages

+
+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose-utils/navigation.html b/docs/build/dokka/html/maps-compose-utils/navigation.html new file mode 100644 index 00000000..38ff7687 --- /dev/null +++ b/docs/build/dokka/html/maps-compose-utils/navigation.html @@ -0,0 +1,447 @@ +
+
+ +
+ + +
+ +
+
+ Companion +
+
+
+
+ UNKNOWN +
+
+
+ +
+
+
+ GESTURE +
+
+
+ +
+ +
+ +
+
+ Circle() +
+
+
+ +
+
+ LIGHT +
+
+
+
+ DARK +
+
+
+ +
+
+ + + + + + +
+ +
+
+ START +
+
+
+
+ DRAG +
+
+
+
+ END +
+
+
+
+ +
+ + + +
+ +
+ + +
+ +
+
+ +
+
+ +
+ +
+ +
+
+ NONE +
+
+
+
+ NORMAL +
+
+
+
+ SATELLITE +
+
+
+
+ TERRAIN +
+
+
+
+ HYBRID +
+
+
+
+ +
+
+
+ Marker() +
+
+ + + + + +
+
+ Polygon() +
+
+
+ +
+ + + + + + +
+ +
+ +
+ + +
+ + +
diff --git a/docs/build/dokka/html/maps-compose-widgets/com.google.maps.android.compose.widgets/-dark-gray.html b/docs/build/dokka/html/maps-compose-widgets/com.google.maps.android.compose.widgets/-dark-gray.html new file mode 100644 index 00000000..afa1bc85 --- /dev/null +++ b/docs/build/dokka/html/maps-compose-widgets/com.google.maps.android.compose.widgets/-dark-gray.html @@ -0,0 +1,118 @@ + + + + + DarkGray + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

DarkGray

+
+ +
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose-widgets/com.google.maps.android.compose.widgets/-disappearing-scale-bar.html b/docs/build/dokka/html/maps-compose-widgets/com.google.maps.android.compose.widgets/-disappearing-scale-bar.html new file mode 100644 index 00000000..5790178a --- /dev/null +++ b/docs/build/dokka/html/maps-compose-widgets/com.google.maps.android.compose.widgets/-disappearing-scale-bar.html @@ -0,0 +1,118 @@ + + + + + DisappearingScaleBar + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

DisappearingScaleBar

+
+
fun DisappearingScaleBar(modifier: Modifier = Modifier, width: Dp = defaultWidth, height: Dp = defaultHeight, cameraPositionState: CameraPositionState, textColor: Color = DarkGray, lineColor: Color = DarkGray, shadowColor: Color = Color.White, visibilityDurationMillis: Int, enterTransition: EnterTransition = fadeIn(), exitTransition: ExitTransition = fadeOut())

An animated scale bar that appears when the zoom level of the map changes, and then disappears after visibilityDurationMillis. This composable wraps ScaleBar with visibility animations.

Parameters

modifier

Modifier to be applied to the composable.

width

The width of the composable.

height

The height of the composable.

cameraPositionState

The state of the camera position, used to calculate the scale.

textColor

The color of the text on the scale bar.

lineColor

The color of the lines on the scale bar.

shadowColor

The color of the shadow behind the text and lines.

visibilityDurationMillis

The duration in milliseconds that the scale bar will be visible.

enterTransition

The animation to use when the scale bar appears.

exitTransition

The animation to use when the scale bar disappears.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose-widgets/com.google.maps.android.compose.widgets/-scale-bar.html b/docs/build/dokka/html/maps-compose-widgets/com.google.maps.android.compose.widgets/-scale-bar.html new file mode 100644 index 00000000..96e65423 --- /dev/null +++ b/docs/build/dokka/html/maps-compose-widgets/com.google.maps.android.compose.widgets/-scale-bar.html @@ -0,0 +1,118 @@ + + + + + ScaleBar + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

ScaleBar

+
+
fun ScaleBar(modifier: Modifier = Modifier, width: Dp = defaultWidth, height: Dp = defaultHeight, cameraPositionState: CameraPositionState, textColor: Color = DarkGray, lineColor: Color = DarkGray, shadowColor: Color = Color.White)

A scale bar composable that shows the current scale of the map in feet and meters when zoomed in to the map, changing to miles and kilometers, respectively, when zooming out.

Parameters

modifier

Modifier to be applied to the composable.

width

The width of the composable.

height

The height of the composable.

cameraPositionState

The state of the camera position, used to calculate the scale.

textColor

The color of the text on the scale bar.

lineColor

The color of the lines on the scale bar.

shadowColor

The color of the shadow behind the text and lines.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose-widgets/com.google.maps.android.compose.widgets/index.html b/docs/build/dokka/html/maps-compose-widgets/com.google.maps.android.compose.widgets/index.html new file mode 100644 index 00000000..93b40916 --- /dev/null +++ b/docs/build/dokka/html/maps-compose-widgets/com.google.maps.android.compose.widgets/index.html @@ -0,0 +1,175 @@ + + + + + com.google.maps.android.compose.widgets + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

Package-level declarations

+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun DisappearingScaleBar(modifier: Modifier = Modifier, width: Dp = defaultWidth, height: Dp = defaultHeight, cameraPositionState: CameraPositionState, textColor: Color = DarkGray, lineColor: Color = DarkGray, shadowColor: Color = Color.White, visibilityDurationMillis: Int, enterTransition: EnterTransition = fadeIn(), exitTransition: ExitTransition = fadeOut())

An animated scale bar that appears when the zoom level of the map changes, and then disappears after visibilityDurationMillis. This composable wraps ScaleBar with visibility animations.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun ScaleBar(modifier: Modifier = Modifier, width: Dp = defaultWidth, height: Dp = defaultHeight, cameraPositionState: CameraPositionState, textColor: Color = DarkGray, lineColor: Color = DarkGray, shadowColor: Color = Color.White)

A scale bar composable that shows the current scale of the map in feet and meters when zoomed in to the map, changing to miles and kilometers, respectively, when zooming out.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose-widgets/index.html b/docs/build/dokka/html/maps-compose-widgets/index.html new file mode 100644 index 00000000..5399eb70 --- /dev/null +++ b/docs/build/dokka/html/maps-compose-widgets/index.html @@ -0,0 +1,137 @@ + + + + + maps-compose-widgets + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

maps-compose-widgets

+
+

Packages

+
+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose-widgets/navigation.html b/docs/build/dokka/html/maps-compose-widgets/navigation.html new file mode 100644 index 00000000..38ff7687 --- /dev/null +++ b/docs/build/dokka/html/maps-compose-widgets/navigation.html @@ -0,0 +1,447 @@ +
+
+ +
+ + +
+ +
+
+ Companion +
+
+
+
+ UNKNOWN +
+
+
+ +
+
+
+ GESTURE +
+
+
+ +
+ +
+ +
+
+ Circle() +
+
+
+ +
+
+ LIGHT +
+
+
+
+ DARK +
+
+
+ +
+
+ + + + + + +
+ +
+
+ START +
+
+
+
+ DRAG +
+
+
+
+ END +
+
+
+
+ +
+ + + +
+ +
+ + +
+ +
+
+ +
+
+ +
+ +
+ +
+
+ NONE +
+
+
+
+ NORMAL +
+
+
+
+ SATELLITE +
+
+
+
+ TERRAIN +
+
+
+
+ HYBRID +
+
+
+
+ +
+
+
+ Marker() +
+
+ + + + + +
+
+ Polygon() +
+
+
+ +
+ + + + + + +
+ +
+ +
+ + +
+ + +
diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-default-google-maps-initializer/-default-google-maps-initializer.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-default-google-maps-initializer/-default-google-maps-initializer.html new file mode 100644 index 00000000..10ecbb8a --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-default-google-maps-initializer/-default-google-maps-initializer.html @@ -0,0 +1,118 @@ + + + + + DefaultGoogleMapsInitializer + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

DefaultGoogleMapsInitializer

+
+
constructor(ioDispatcher: CoroutineDispatcher = Dispatchers.IO, mainDispatcher: CoroutineDispatcher = Dispatchers.Main)

Parameters

ioDispatcher

The dispatcher to use for IO operations.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-default-google-maps-initializer/attribution-id.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-default-google-maps-initializer/attribution-id.html new file mode 100644 index 00000000..6eb6ccd8 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-default-google-maps-initializer/attribution-id.html @@ -0,0 +1,118 @@ + + + + + attributionId + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

attributionId

+
+
open override var attributionId: String

The value of the attribution ID. Set this to the empty string to opt out of attribution.

This must be set before calling the initialize function.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-default-google-maps-initializer/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-default-google-maps-initializer/index.html new file mode 100644 index 00000000..68f41baf --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-default-google-maps-initializer/index.html @@ -0,0 +1,210 @@ + + + + + DefaultGoogleMapsInitializer + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

DefaultGoogleMapsInitializer

+
class DefaultGoogleMapsInitializer(ioDispatcher: CoroutineDispatcher = Dispatchers.IO, mainDispatcher: CoroutineDispatcher = Dispatchers.Main) : GoogleMapsInitializer

The default implementation of GoogleMapsInitializer.

Parameters

ioDispatcher

The dispatcher to use for IO operations.

+
+
+
+
+
+

Constructors

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
constructor(ioDispatcher: CoroutineDispatcher = Dispatchers.IO, mainDispatcher: CoroutineDispatcher = Dispatchers.Main)
+
+
+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
open override var attributionId: String

The value of the attribution ID. Set this to the empty string to opt out of attribution.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
open override val state: State<InitializationState>
+
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
open suspend override fun initialize(context: Context, forceInitialization: Boolean)

Initializes Google Maps. This function must be called before using any other functions in this library.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
open suspend override fun reset()

Resets the initialization state.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-default-google-maps-initializer/initialize.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-default-google-maps-initializer/initialize.html new file mode 100644 index 00000000..501c1b83 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-default-google-maps-initializer/initialize.html @@ -0,0 +1,118 @@ + + + + + initialize + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

initialize

+
+
open suspend override fun initialize(context: Context, forceInitialization: Boolean)

Initializes Google Maps. This function must be called before using any other functions in this library.

If initialization fails with a recoverable error (e.g., a network issue), the state will be reset to InitializationState.UNINITIALIZED, allowing for a subsequent retry. In the case of an unrecoverable error (e.g., a missing manifest value), the state will be set to InitializationState.FAILURE and the original exception will be re-thrown.

Parameters

context

The context to use for initialization.

forceInitialization

When true, initialization will be attempted even if it has already succeeded or is in progress. This is useful for retrying a previously failed initialization.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-default-google-maps-initializer/reset.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-default-google-maps-initializer/reset.html new file mode 100644 index 00000000..9595345d --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-default-google-maps-initializer/reset.html @@ -0,0 +1,118 @@ + + + + + reset + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

reset

+
+
open suspend override fun reset()

Resets the initialization state.

This function cancels any ongoing initialization and resets the state to UNINITIALIZED. This is primarily useful in test environments where the SDK might need to be re-initialized multiple times.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-default-google-maps-initializer/state.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-default-google-maps-initializer/state.html new file mode 100644 index 00000000..78fc5a9d --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-default-google-maps-initializer/state.html @@ -0,0 +1,118 @@ + + + + + state + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

state

+
+
open override val state: State<InitializationState>
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-google-maps-initializer/attribution-id.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-google-maps-initializer/attribution-id.html new file mode 100644 index 00000000..127f060c --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-google-maps-initializer/attribution-id.html @@ -0,0 +1,118 @@ + + + + + attributionId + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

attributionId

+
+
abstract var attributionId: String

The value of the attribution ID. Set this to the empty string to opt out of attribution.

This must be set before calling the initialize function.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-google-maps-initializer/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-google-maps-initializer/index.html new file mode 100644 index 00000000..0857bfdc --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-google-maps-initializer/index.html @@ -0,0 +1,191 @@ + + + + + GoogleMapsInitializer + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

GoogleMapsInitializer

+

A singleton object to manage the initialization of the Google Maps SDK.

This object provides a state machine to track the initialization process and ensures that the initialization is performed only once. It also provides a mechanism to reset the initialization state, which can be useful in test environments.

The initialization process consists of two main steps:

  1. Calling MapsInitializer.initialize(context) to initialize the Google Maps SDK.

  2. Calling MapsApiSettings.addInternalUsageAttributionId(context, attributionId) to add the library's attribution ID to the Maps API settings.

The state of the initialization is exposed via the state property, which is a State object that can be observed for changes.

Inheritors

+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
abstract var attributionId: String

The value of the attribution ID. Set this to the empty string to opt out of attribution.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
abstract suspend fun initialize(context: Context, forceInitialization: Boolean = false)

Initializes Google Maps. This function must be called before using any other functions in this library.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
abstract suspend fun reset()

Resets the initialization state.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-google-maps-initializer/initialize.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-google-maps-initializer/initialize.html new file mode 100644 index 00000000..bea135c6 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-google-maps-initializer/initialize.html @@ -0,0 +1,118 @@ + + + + + initialize + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

initialize

+
+
abstract suspend fun initialize(context: Context, forceInitialization: Boolean = false)

Initializes Google Maps. This function must be called before using any other functions in this library.

If initialization fails with a recoverable error (e.g., a network issue), the state will be reset to InitializationState.UNINITIALIZED, allowing for a subsequent retry. In the case of an unrecoverable error (e.g., a missing manifest value), the state will be set to InitializationState.FAILURE and the original exception will be re-thrown.

Parameters

context

The context to use for initialization.

forceInitialization

When true, initialization will be attempted even if it has already succeeded or is in progress. This is useful for retrying a previously failed initialization.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-google-maps-initializer/reset.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-google-maps-initializer/reset.html new file mode 100644 index 00000000..289a5b28 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-google-maps-initializer/reset.html @@ -0,0 +1,118 @@ + + + + + reset + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

reset

+
+
abstract suspend fun reset()

Resets the initialization state.

This function cancels any ongoing initialization and resets the state to UNINITIALIZED. This is primarily useful in test environments where the SDK might need to be re-initialized multiple times.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-google-maps-initializer/state.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-google-maps-initializer/state.html new file mode 100644 index 00000000..02e27442 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-google-maps-initializer/state.html @@ -0,0 +1,118 @@ + + + + + state + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

state

+
+ +
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-initialization-state/-f-a-i-l-u-r-e/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-initialization-state/-f-a-i-l-u-r-e/index.html new file mode 100644 index 00000000..58d9880b --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-initialization-state/-f-a-i-l-u-r-e/index.html @@ -0,0 +1,157 @@ + + + + + FAILURE + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

FAILURE

+

The SDK initialization failed.

+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-initialization-state/-i-n-i-t-i-a-l-i-z-i-n-g/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-initialization-state/-i-n-i-t-i-a-l-i-z-i-n-g/index.html new file mode 100644 index 00000000..3790fa75 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-initialization-state/-i-n-i-t-i-a-l-i-z-i-n-g/index.html @@ -0,0 +1,157 @@ + + + + + INITIALIZING + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

INITIALIZING

+

The SDK is currently being initialized.

+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-initialization-state/-s-u-c-c-e-s-s/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-initialization-state/-s-u-c-c-e-s-s/index.html new file mode 100644 index 00000000..3a0bff39 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-initialization-state/-s-u-c-c-e-s-s/index.html @@ -0,0 +1,157 @@ + + + + + SUCCESS + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

SUCCESS

+

The SDK has been successfully initialized.

+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-initialization-state/-u-n-i-n-i-t-i-a-l-i-z-e-d/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-initialization-state/-u-n-i-n-i-t-i-a-l-i-z-e-d/index.html new file mode 100644 index 00000000..68d3f4a7 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-initialization-state/-u-n-i-n-i-t-i-a-l-i-z-e-d/index.html @@ -0,0 +1,157 @@ + + + + + UNINITIALIZED + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

UNINITIALIZED

+

The SDK has not been initialized.

+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-initialization-state/entries.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-initialization-state/entries.html new file mode 100644 index 00000000..a3e3cedb --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-initialization-state/entries.html @@ -0,0 +1,118 @@ + + + + + entries + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

entries

+
+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-initialization-state/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-initialization-state/index.html new file mode 100644 index 00000000..5da53038 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-initialization-state/index.html @@ -0,0 +1,270 @@ + + + + + InitializationState + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

InitializationState

+

Enum representing the initialization state of the Google Maps SDK.

+
+
+
+
+
+

Entries

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

The SDK has not been initialized.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

The SDK is currently being initialized.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

The SDK has been successfully initialized.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

The SDK initialization failed.

+
+
+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns an array containing the constants of this enum type, in the order they're declared.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-initialization-state/value-of.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-initialization-state/value-of.html new file mode 100644 index 00000000..bdf327cb --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-initialization-state/value-of.html @@ -0,0 +1,118 @@ + + + + + valueOf + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

valueOf

+
+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-initialization-state/values.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-initialization-state/values.html new file mode 100644 index 00000000..aaf20167 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-initialization-state/values.html @@ -0,0 +1,118 @@ + + + + + values + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

values

+
+

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-local-google-maps-initializer.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-local-google-maps-initializer.html new file mode 100644 index 00000000..ebd736de --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/-local-google-maps-initializer.html @@ -0,0 +1,118 @@ + + + + + LocalGoogleMapsInitializer + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

LocalGoogleMapsInitializer

+
+ +
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/index.html new file mode 100644 index 00000000..04a7a3cd --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.internal/index.html @@ -0,0 +1,190 @@ + + + + + com.google.maps.android.compose.internal + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

Package-level declarations

+
+
+
+
+
+

Types

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
class DefaultGoogleMapsInitializer(ioDispatcher: CoroutineDispatcher = Dispatchers.IO, mainDispatcher: CoroutineDispatcher = Dispatchers.Main) : GoogleMapsInitializer

The default implementation of GoogleMapsInitializer.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

A singleton object to manage the initialization of the Google Maps SDK.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Enum representing the initialization state of the Google Maps SDK.

+
+
+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+ +
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.streetview/-street-view-camera-position-state/-companion/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.streetview/-street-view-camera-position-state/-companion/index.html new file mode 100644 index 00000000..a5f581c0 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.streetview/-street-view-camera-position-state/-companion/index.html @@ -0,0 +1,142 @@ + + + + + Companion + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

Companion

+
object Companion
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+ +
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.streetview/-street-view-camera-position-state/-companion/invoke.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.streetview/-street-view-camera-position-state/-companion/invoke.html new file mode 100644 index 00000000..77a32a8b --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.streetview/-street-view-camera-position-state/-companion/invoke.html @@ -0,0 +1,118 @@ + + + + + invoke + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

invoke

+
+ +
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.streetview/-street-view-camera-position-state/animate-to.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.streetview/-street-view-camera-position-state/animate-to.html new file mode 100644 index 00000000..7915b38f --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.streetview/-street-view-camera-position-state/animate-to.html @@ -0,0 +1,118 @@ + + + + + animateTo + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

animateTo

+
+
fun animateTo(camera: StreetViewPanoramaCamera, durationMs: Int)

Animates the camera to be at camera in durationMs milliseconds.

Parameters

camera

the camera to update to

durationMs

the duration of the animation in milliseconds

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.streetview/-street-view-camera-position-state/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.streetview/-street-view-camera-position-state/index.html new file mode 100644 index 00000000..8d39a691 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.streetview/-street-view-camera-position-state/index.html @@ -0,0 +1,210 @@ + + + + + StreetViewCameraPositionState + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

StreetViewCameraPositionState

+ +
+
+
+
+
+

Types

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
object Companion
+
+
+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
val location: StreetViewPanoramaLocation

The location of the panorama.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
val panoramaCamera: StreetViewPanoramaCamera

The camera of the panorama.

+
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun animateTo(camera: StreetViewPanoramaCamera, durationMs: Int)

Animates the camera to be at camera in durationMs milliseconds.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun setPosition(panoId: String)

Sets the StreetViewPanorama to the given panorama ID.

fun setPosition(position: LatLng, radius: Int? = null, source: StreetViewSource? = null)

Sets the position of the panorama.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.streetview/-street-view-camera-position-state/location.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.streetview/-street-view-camera-position-state/location.html new file mode 100644 index 00000000..b77f5e51 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.streetview/-street-view-camera-position-state/location.html @@ -0,0 +1,118 @@ + + + + + location + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

location

+
+
val location: StreetViewPanoramaLocation

The location of the panorama.

This is read-only - to update the camera's position use setPosition.

Note that this property is observable and if you use it in a composable function it will be recomposed on every change. Use snapshotFlow to observe it instead.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.streetview/-street-view-camera-position-state/panorama-camera.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.streetview/-street-view-camera-position-state/panorama-camera.html new file mode 100644 index 00000000..daad2166 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.streetview/-street-view-camera-position-state/panorama-camera.html @@ -0,0 +1,118 @@ + + + + + panoramaCamera + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

panoramaCamera

+
+
val panoramaCamera: StreetViewPanoramaCamera

The camera of the panorama.

Note that this property is observable and if you use it in a composable function it will be recomposed on every change. Use snapshotFlow to observe it instead.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.streetview/-street-view-camera-position-state/set-position.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.streetview/-street-view-camera-position-state/set-position.html new file mode 100644 index 00000000..e3642866 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.streetview/-street-view-camera-position-state/set-position.html @@ -0,0 +1,118 @@ + + + + + setPosition + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

setPosition

+
+
fun setPosition(position: LatLng, radius: Int? = null, source: StreetViewSource? = null)

Sets the position of the panorama.

Parameters

position

the LatLng of the panorama

radius

the area in which to search for a panorama in meters

source

the source of the panoramas


fun setPosition(panoId: String)

Sets the StreetViewPanorama to the given panorama ID.

Parameters

panoId

the ID of the panorama to set to

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.streetview/-street-view.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.streetview/-street-view.html new file mode 100644 index 00000000..c8d349d6 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.streetview/-street-view.html @@ -0,0 +1,120 @@ + + + + + StreetView + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

StreetView

+
+
fun StreetView(modifier: Modifier = Modifier, cameraPositionState: StreetViewCameraPositionState = rememberStreetViewCameraPositionState(), streetViewPanoramaOptionsFactory: () -> StreetViewPanoramaOptions = { + StreetViewPanoramaOptions() + }, isPanningGesturesEnabled: Boolean = true, isStreetNamesEnabled: Boolean = true, isUserNavigationEnabled: Boolean = true, isZoomGesturesEnabled: Boolean = true, onClick: (StreetViewPanoramaOrientation) -> Unit = {}, onLongClick: (StreetViewPanoramaOrientation) -> Unit = {})

A composable for displaying a Street View for a given location. A location might not be available for a given set of coordinates. We recommend you to check our sample on StreetViewActivity using our utility function in StreetViewUtils to manage non-existing locations.

Parameters

modifier

Modifier to be applied to the StreetView

cameraPositionState

the StreetViewCameraPositionState to be used to control or observe the Street View's camera

streetViewPanoramaOptionsFactory

a factory lambda for providing a StreetViewPanoramaOptions object which is used when the underlying StreetViewPanoramaView is constructed

isPanningGesturesEnabled

whether panning gestures are enabled or not

isStreetNamesEnabled

whether street names are enabled or not

isUserNavigationEnabled

whether user navigation is enabled or not

isZoomGesturesEnabled

whether zoom gestures are enabled or not

onClick

lambda to receive events when the Street View is clicked

onLongClick

lambda to receive events when the Street View is long clicked

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.streetview/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.streetview/index.html new file mode 100644 index 00000000..54bcc69f --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.streetview/index.html @@ -0,0 +1,177 @@ + + + + + com.google.maps.android.compose.streetview + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

Package-level declarations

+
+
+
+
+
+

Types

+
+
+
+
+ + +
Link copied to clipboard
+
+ +
+
+
+
+
+

Functions

+
+
+ +
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun StreetView(modifier: Modifier = Modifier, cameraPositionState: StreetViewCameraPositionState = rememberStreetViewCameraPositionState(), streetViewPanoramaOptionsFactory: () -> StreetViewPanoramaOptions = { + StreetViewPanoramaOptions() + }, isPanningGesturesEnabled: Boolean = true, isStreetNamesEnabled: Boolean = true, isUserNavigationEnabled: Boolean = true, isZoomGesturesEnabled: Boolean = true, onClick: (StreetViewPanoramaOrientation) -> Unit = {}, onLongClick: (StreetViewPanoramaOrientation) -> Unit = {})

A composable for displaying a Street View for a given location. A location might not be available for a given set of coordinates. We recommend you to check our sample on StreetViewActivity using our utility function in StreetViewUtils to manage non-existing locations.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.streetview/remember-street-view-camera-position-state.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.streetview/remember-street-view-camera-position-state.html new file mode 100644 index 00000000..cc29ec06 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose.streetview/remember-street-view-camera-position-state.html @@ -0,0 +1,118 @@ + + + + + rememberStreetViewCameraPositionState + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

rememberStreetViewCameraPositionState

+
+ +
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-advanced-marker.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-advanced-marker.html new file mode 100644 index 00000000..8975f7ed --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-advanced-marker.html @@ -0,0 +1,118 @@ + + + + + AdvancedMarker + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

AdvancedMarker

+
+
fun AdvancedMarker(state: MarkerState = rememberUpdatedMarkerState(), contentDescription: String? = "", alpha: Float = 1.0f, anchor: Offset = Offset(0.5f, 1.0f), draggable: Boolean = false, flat: Boolean = false, infoWindowAnchor: Offset = Offset(0.5f, 0.0f), rotation: Float = 0.0f, snippet: String? = null, tag: Any? = null, title: String? = null, visible: Boolean = true, zIndex: Float = 0.0f, onClick: (Marker) -> Boolean = { false }, onInfoWindowClick: (Marker) -> Unit = {}, onInfoWindowClose: (Marker) -> Unit = {}, onInfoWindowLongClick: (Marker) -> Unit = {}, icon: BitmapDescriptor? = null, pinConfig: PinConfig? = null, iconView: View? = null, collisionBehavior: Int = AdvancedMarkerOptions.CollisionBehavior.REQUIRED)

A composable for an advanced marker on the map.

Parameters

state

the MarkerState to be used to control or observe the marker state such as its position and info window

contentDescription

the content description for accessibility purposes

alpha

the alpha (opacity) of the marker

anchor

the anchor for the marker image

draggable

sets the draggability for the marker

flat

sets if the marker should be flat against the map

infoWindowAnchor

the anchor point of the info window on the marker image

rotation

the rotation of the marker in degrees clockwise about the marker's anchor point

snippet

the snippet for the marker

tag

optional tag to associate with the marker

title

the title for the marker

visible

the visibility of the marker

zIndex

the z-index of the marker

onClick

a lambda invoked when the marker is clicked

onInfoWindowClick

a lambda invoked when the marker's info window is clicked

onInfoWindowClose

a lambda invoked when the marker's info window is closed

onInfoWindowLongClick

a lambda invoked when the marker's info window is long clicked

icon

sets the icon for the marker

pinConfig

the PinConfig object that will be used for the advanced marker

iconView

the custom view to be used on the advanced marker

collisionBehavior

the expected collision behavior

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/-a-p-i_-a-n-i-m-a-t-i-o-n/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/-a-p-i_-a-n-i-m-a-t-i-o-n/index.html new file mode 100644 index 00000000..808254b0 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/-a-p-i_-a-n-i-m-a-t-i-o-n/index.html @@ -0,0 +1,172 @@ + + + + + API_ANIMATION + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

API_ANIMATION

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
val value: Int
+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/-companion/from-int.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/-companion/from-int.html new file mode 100644 index 00000000..c5c412b4 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/-companion/from-int.html @@ -0,0 +1,118 @@ + + + + + fromInt + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

fromInt

+
+

Converts from the Maps SDK com.google.android.gms.maps.GoogleMap.OnCameraMoveStartedListener constants to CameraMoveStartedReason, or returns UNKNOWN if there is no such CameraMoveStartedReason for the given value.

See https://developers.google.com/android/reference/com/google/android/gms/maps/GoogleMap.OnCameraMoveStartedListener#constants.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/-companion/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/-companion/index.html new file mode 100644 index 00000000..3f9a5927 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/-companion/index.html @@ -0,0 +1,142 @@ + + + + + Companion + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

Companion

+
object Companion
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

Converts from the Maps SDK com.google.android.gms.maps.GoogleMap.OnCameraMoveStartedListener constants to CameraMoveStartedReason, or returns UNKNOWN if there is no such CameraMoveStartedReason for the given value.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/-d-e-v-e-l-o-p-e-r_-a-n-i-m-a-t-i-o-n/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/-d-e-v-e-l-o-p-e-r_-a-n-i-m-a-t-i-o-n/index.html new file mode 100644 index 00000000..a10642eb --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/-d-e-v-e-l-o-p-e-r_-a-n-i-m-a-t-i-o-n/index.html @@ -0,0 +1,172 @@ + + + + + DEVELOPER_ANIMATION + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

DEVELOPER_ANIMATION

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
val value: Int
+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/-g-e-s-t-u-r-e/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/-g-e-s-t-u-r-e/index.html new file mode 100644 index 00000000..d98f9812 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/-g-e-s-t-u-r-e/index.html @@ -0,0 +1,172 @@ + + + + + GESTURE + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

GESTURE

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
val value: Int
+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/-n-o_-m-o-v-e-m-e-n-t_-y-e-t/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/-n-o_-m-o-v-e-m-e-n-t_-y-e-t/index.html new file mode 100644 index 00000000..d94408ae --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/-n-o_-m-o-v-e-m-e-n-t_-y-e-t/index.html @@ -0,0 +1,172 @@ + + + + + NO_MOVEMENT_YET + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

NO_MOVEMENT_YET

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
val value: Int
+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/-u-n-k-n-o-w-n/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/-u-n-k-n-o-w-n/index.html new file mode 100644 index 00000000..28bb697e --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/-u-n-k-n-o-w-n/index.html @@ -0,0 +1,172 @@ + + + + + UNKNOWN + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

UNKNOWN

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
val value: Int
+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/entries.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/entries.html new file mode 100644 index 00000000..1d0bfd17 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/entries.html @@ -0,0 +1,118 @@ + + + + + entries + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

entries

+
+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/index.html new file mode 100644 index 00000000..04e3c72a --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/index.html @@ -0,0 +1,319 @@ + + + + + CameraMoveStartedReason + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

CameraMoveStartedReason

+

Enumerates the different reasons why the map camera started to move.

Based on enum values from https://developers.google.com/android/reference/com/google/android/gms/maps/GoogleMap.OnCameraMoveStartedListener#constants.

NO_MOVEMENT_YET is used as the initial state before any map movement has been observed.

UNKNOWN is used to represent when an unsupported integer value is provided to fromInt - this may be a new constant value from the Maps SDK that isn't supported by maps-compose yet, in which case this library should be updated to include a new enum value for that constant.

+
+
+
+
+
+

Entries

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+ +
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+ +
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+ +
+
+
+
+
+

Types

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
object Companion
+
+
+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
val value: Int
+
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns an array containing the constants of this enum type, in the order they're declared.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/value-of.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/value-of.html new file mode 100644 index 00000000..28de3524 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/value-of.html @@ -0,0 +1,118 @@ + + + + + valueOf + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

valueOf

+
+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/value.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/value.html new file mode 100644 index 00000000..0af0c8f0 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/value.html @@ -0,0 +1,118 @@ + + + + + value + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

value

+
+
val value: Int
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/values.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/values.html new file mode 100644 index 00000000..f44fa66b --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-move-started-reason/values.html @@ -0,0 +1,118 @@ + + + + + values + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

values

+
+

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-position-state/-companion/-saver.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-position-state/-companion/-saver.html new file mode 100644 index 00000000..274b3e30 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-position-state/-companion/-saver.html @@ -0,0 +1,118 @@ + + + + + Saver + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

Saver

+
+
val Saver: Saver<CameraPositionState, CameraPosition>

The default saver implementation for CameraPositionState

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-position-state/-companion/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-position-state/-companion/index.html new file mode 100644 index 00000000..3b569999 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-position-state/-companion/index.html @@ -0,0 +1,161 @@ + + + + + Companion + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

Companion

+
object Companion
+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
val Saver: Saver<CameraPositionState, CameraPosition>

The default saver implementation for CameraPositionState

+
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
operator fun invoke(position: CameraPosition = CameraPosition(LatLng(0.0, 0.0), 0f, 0f, 0f)): CameraPositionState

Creates a new CameraPositionState object

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-position-state/-companion/invoke.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-position-state/-companion/invoke.html new file mode 100644 index 00000000..590a75d0 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-position-state/-companion/invoke.html @@ -0,0 +1,118 @@ + + + + + invoke + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

invoke

+
+
operator fun invoke(position: CameraPosition = CameraPosition(LatLng(0.0, 0.0), 0f, 0f, 0f)): CameraPositionState

Creates a new CameraPositionState object

Parameters

position

the initial camera position

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-position-state/animate.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-position-state/animate.html new file mode 100644 index 00000000..f7e827de --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-position-state/animate.html @@ -0,0 +1,118 @@ + + + + + animate + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

animate

+
+
suspend fun animate(update: CameraUpdate, durationMs: Int = MAX_VALUE)

Animate the camera position as specified by update, returning once the animation has completed. position will reflect the position of the camera as the animation proceeds.

animate will throw CancellationException if the animation does not fully complete. This can happen if:

  • The user manipulates the map directly

  • position is set explicitly, e.g. state.position = CameraPosition(...)

  • animate is called again before an earlier call to animate returns

  • move is called

  • The calling job is cancelled externally

If this CameraPositionState is not currently bound to a GoogleMap this call will suspend until a map is bound and animation will begin.

This method should only be called from a dispatcher bound to the map's UI thread.

Parameters

update

the change that should be applied to the camera

durationMs

The duration of the animation in milliseconds. If Int.MAX_VALUE is provided, the default animation duration will be used. Otherwise, the value provided must be strictly positive, otherwise an IllegalArgumentException will be thrown.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-position-state/camera-move-started-reason.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-position-state/camera-move-started-reason.html new file mode 100644 index 00000000..45e7d564 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-position-state/camera-move-started-reason.html @@ -0,0 +1,118 @@ + + + + + cameraMoveStartedReason + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

cameraMoveStartedReason

+
+

The reason for the start of the most recent camera moment, or CameraMoveStartedReason.NO_MOVEMENT_YET if the camera hasn't moved yet or CameraMoveStartedReason.UNKNOWN if an unknown constant is received from the Maps SDK.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-position-state/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-position-state/index.html new file mode 100644 index 00000000..2f416a19 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-position-state/index.html @@ -0,0 +1,240 @@ + + + + + CameraPositionState + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

CameraPositionState

+

A state object that can be hoisted to control and observe the map's camera state. A CameraPositionState may only be used by a single GoogleMap composable at a time as it reflects instance state for a single view of a map.

Parameters

position

the initial camera position

+
+
+
+
+
+

Types

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
object Companion
+
+
+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

The reason for the start of the most recent camera moment, or CameraMoveStartedReason.NO_MOVEMENT_YET if the camera hasn't moved yet or CameraMoveStartedReason.UNKNOWN if an unknown constant is received from the Maps SDK.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Whether the camera is currently moving or not. This includes any kind of movement: panning, zooming, or rotation.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
var position: CameraPosition

Current position of the camera on the map.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
val projection: Projection?

Returns the current Projection to be used for converting between screen coordinates and lat/lng.

+
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
suspend fun animate(update: CameraUpdate, durationMs: Int = MAX_VALUE)

Animate the camera position as specified by update, returning once the animation has completed. position will reflect the position of the camera as the animation proceeds.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun move(update: CameraUpdate)

Move the camera instantaneously as specified by update. Any calls to animate in progress will be cancelled. position will be updated when the bound map's position has been updated, or if the map is currently unbound, update will be applied when a map is next bound. Other calls to move, animate, or setting position will override an earlier pending call to move.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-position-state/is-moving.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-position-state/is-moving.html new file mode 100644 index 00000000..e7e29eb4 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-position-state/is-moving.html @@ -0,0 +1,118 @@ + + + + + isMoving + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

isMoving

+
+

Whether the camera is currently moving or not. This includes any kind of movement: panning, zooming, or rotation.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-position-state/move.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-position-state/move.html new file mode 100644 index 00000000..78d751a9 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-position-state/move.html @@ -0,0 +1,118 @@ + + + + + move + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

move

+
+
fun move(update: CameraUpdate)

Move the camera instantaneously as specified by update. Any calls to animate in progress will be cancelled. position will be updated when the bound map's position has been updated, or if the map is currently unbound, update will be applied when a map is next bound. Other calls to move, animate, or setting position will override an earlier pending call to move.

This method must be called from the map's UI thread.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-position-state/position.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-position-state/position.html new file mode 100644 index 00000000..0f979c2b --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-position-state/position.html @@ -0,0 +1,118 @@ + + + + + position + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

position

+
+
var position: CameraPosition

Current position of the camera on the map.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-position-state/projection.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-position-state/projection.html new file mode 100644 index 00000000..6c537f1e --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-camera-position-state/projection.html @@ -0,0 +1,118 @@ + + + + + projection + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

projection

+
+
val projection: Projection?

Returns the current Projection to be used for converting between screen coordinates and lat/lng.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-circle.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-circle.html new file mode 100644 index 00000000..27830b5c --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-circle.html @@ -0,0 +1,118 @@ + + + + + Circle + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

Circle

+
+
fun Circle(center: LatLng, clickable: Boolean = false, fillColor: Color = Color.Black, radius: Double = 10.0, strokeColor: Color = Color.Black, strokePattern: List<PatternItem>? = null, strokeWidth: Float = 10.0f, tag: Any? = null, visible: Boolean = true, zIndex: Float = 0.0f, onClick: (Circle) -> Unit = {})

A composable for a circle on the map.

Parameters

center

the LatLng to use for the center of this circle

clickable

boolean indicating if the circle is clickable or not

fillColor

the fill color of the circle

radius

the radius of the circle in meters.

strokeColor

the stroke color of the circle

strokePattern

a sequence of PatternItem to be repeated along the circle's outline (null represents a solid line)

tag

optional tag to be associated with the circle

strokeWidth

the width of the circle's outline in screen pixels

visible

the visibility of the circle

zIndex

the z-index of the circle

onClick

a lambda invoked when the circle is clicked

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-map-color-scheme/-d-a-r-k/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-map-color-scheme/-d-a-r-k/index.html new file mode 100644 index 00000000..ad7e34f4 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-map-color-scheme/-d-a-r-k/index.html @@ -0,0 +1,172 @@ + + + + + DARK + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

DARK

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
val value: Int
+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-map-color-scheme/-f-o-l-l-o-w_-s-y-s-t-e-m/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-map-color-scheme/-f-o-l-l-o-w_-s-y-s-t-e-m/index.html new file mode 100644 index 00000000..95328d1c --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-map-color-scheme/-f-o-l-l-o-w_-s-y-s-t-e-m/index.html @@ -0,0 +1,172 @@ + + + + + FOLLOW_SYSTEM + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

FOLLOW_SYSTEM

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
val value: Int
+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-map-color-scheme/-l-i-g-h-t/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-map-color-scheme/-l-i-g-h-t/index.html new file mode 100644 index 00000000..37744bf0 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-map-color-scheme/-l-i-g-h-t/index.html @@ -0,0 +1,172 @@ + + + + + LIGHT + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

LIGHT

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
val value: Int
+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-map-color-scheme/entries.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-map-color-scheme/entries.html new file mode 100644 index 00000000..d3d06ed8 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-map-color-scheme/entries.html @@ -0,0 +1,118 @@ + + + + + entries + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

entries

+
+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-map-color-scheme/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-map-color-scheme/index.html new file mode 100644 index 00000000..270ce045 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-map-color-scheme/index.html @@ -0,0 +1,270 @@ + + + + + ComposeMapColorScheme + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

ComposeMapColorScheme

+

Enum representing a 1-1 mapping to com.google.android.gms.maps.model.MapColorScheme.

This enum provides equivalent values to facilitate usage with com.google.maps.android.compose.GoogleMap.

Parameters

value

The integer value corresponding to each map color scheme.

+
+
+
+
+
+

Entries

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+ +
+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
val value: Int
+
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns an array containing the constants of this enum type, in the order they're declared.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-map-color-scheme/value-of.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-map-color-scheme/value-of.html new file mode 100644 index 00000000..de70233f --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-map-color-scheme/value-of.html @@ -0,0 +1,118 @@ + + + + + valueOf + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

valueOf

+
+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-map-color-scheme/value.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-map-color-scheme/value.html new file mode 100644 index 00000000..5011dde2 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-map-color-scheme/value.html @@ -0,0 +1,118 @@ + + + + + value + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

value

+
+
val value: Int

Parameters

value

The integer value corresponding to each map color scheme.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-map-color-scheme/values.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-map-color-scheme/values.html new file mode 100644 index 00000000..38600c99 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-map-color-scheme/values.html @@ -0,0 +1,118 @@ + + + + + values + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

values

+
+

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-ui-view-renderer/-render-handle/close.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-ui-view-renderer/-render-handle/close.html new file mode 100644 index 00000000..facfd49b --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-ui-view-renderer/-render-handle/close.html @@ -0,0 +1,118 @@ + + + + + close + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

close

+
+
open override fun close()
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-ui-view-renderer/-render-handle/dispose.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-ui-view-renderer/-render-handle/dispose.html new file mode 100644 index 00000000..e5cf0f10 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-ui-view-renderer/-render-handle/dispose.html @@ -0,0 +1,118 @@ + + + + + dispose + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

dispose

+
+
abstract fun dispose()
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-ui-view-renderer/-render-handle/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-ui-view-renderer/-render-handle/index.html new file mode 100644 index 00000000..a5110a66 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-ui-view-renderer/-render-handle/index.html @@ -0,0 +1,157 @@ + + + + + RenderHandle + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

RenderHandle

+ +
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
open override fun close()
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
abstract fun dispose()
+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-ui-view-renderer/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-ui-view-renderer/index.html new file mode 100644 index 00000000..c94eac84 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-ui-view-renderer/index.html @@ -0,0 +1,176 @@ + + + + + ComposeUiViewRenderer + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

ComposeUiViewRenderer

+ +
+
+
+
+
+

Types

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
abstract fun renderViewOnce(view: AbstractComposeView, onAddedToWindow: () -> Unit?)

Prepares view for a single render by temporarily attaching it as a child of the MapView. Its composition will start. onAddedToWindow is called in place, and then view is removed from the window before returning.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+ +
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-ui-view-renderer/render-view-once.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-ui-view-renderer/render-view-once.html new file mode 100644 index 00000000..d3f60254 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-ui-view-renderer/render-view-once.html @@ -0,0 +1,118 @@ + + + + + renderViewOnce + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

renderViewOnce

+
+
abstract fun renderViewOnce(view: AbstractComposeView, onAddedToWindow: () -> Unit?)

Prepares view for a single render by temporarily attaching it as a child of the MapView. Its composition will start. onAddedToWindow is called in place, and then view is removed from the window before returning.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-ui-view-renderer/start-rendering-view.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-ui-view-renderer/start-rendering-view.html new file mode 100644 index 00000000..615f7d19 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-compose-ui-view-renderer/start-rendering-view.html @@ -0,0 +1,118 @@ + + + + + startRenderingView + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

startRenderingView

+
+ +
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-default-indoor-state-change-listener/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-default-indoor-state-change-listener/index.html new file mode 100644 index 00000000..aeb13168 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-default-indoor-state-change-listener/index.html @@ -0,0 +1,157 @@ + + + + + DefaultIndoorStateChangeListener + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

DefaultIndoorStateChangeListener

+

Default implementation of IndoorStateChangeListener with no-op implementations.

+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

Callback invoked when an indoor building comes to focus.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
open fun onIndoorLevelActivated(building: IndoorBuilding)

Callback invoked when a level for a building is activated.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-default-map-content-padding.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-default-map-content-padding.html new file mode 100644 index 00000000..8b94f0e5 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-default-map-content-padding.html @@ -0,0 +1,118 @@ + + + + + DefaultMapContentPadding + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

DefaultMapContentPadding

+
+

Default map content padding does not pad.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-default-map-properties.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-default-map-properties.html new file mode 100644 index 00000000..3b6b021c --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-default-map-properties.html @@ -0,0 +1,118 @@ + + + + + DefaultMapProperties + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

DefaultMapProperties

+
+

Equivalent to MapProperties with default values.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-default-map-ui-settings.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-default-map-ui-settings.html new file mode 100644 index 00000000..639fe8a2 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-default-map-ui-settings.html @@ -0,0 +1,118 @@ + + + + + DefaultMapUiSettings + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

DefaultMapUiSettings

+
+

Default settings are all enabled.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-drag-state/-d-r-a-g/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-drag-state/-d-r-a-g/index.html new file mode 100644 index 00000000..f939a2cd --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-drag-state/-d-r-a-g/index.html @@ -0,0 +1,157 @@ + + + + + DRAG + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

DRAG

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-drag-state/-e-n-d/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-drag-state/-e-n-d/index.html new file mode 100644 index 00000000..84270fca --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-drag-state/-e-n-d/index.html @@ -0,0 +1,157 @@ + + + + + END + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

END

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-drag-state/-s-t-a-r-t/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-drag-state/-s-t-a-r-t/index.html new file mode 100644 index 00000000..b0e149d1 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-drag-state/-s-t-a-r-t/index.html @@ -0,0 +1,157 @@ + + + + + START + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

START

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-drag-state/entries.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-drag-state/entries.html new file mode 100644 index 00000000..10b13ba8 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-drag-state/entries.html @@ -0,0 +1,118 @@ + + + + + entries + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

entries

+
+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-drag-state/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-drag-state/index.html new file mode 100644 index 00000000..a74d9aca --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-drag-state/index.html @@ -0,0 +1,255 @@ + + + + + DragState + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

DragState

+

Deprecated

START, DRAG, END are events, not states. Avoid usage.

+
+
+
+
+
+

Entries

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun valueOf(value: String): DragState

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns an array containing the constants of this enum type, in the order they're declared.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-drag-state/value-of.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-drag-state/value-of.html new file mode 100644 index 00000000..2e9104c4 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-drag-state/value-of.html @@ -0,0 +1,118 @@ + + + + + valueOf + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

valueOf

+
+
fun valueOf(value: String): DragState

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-drag-state/values.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-drag-state/values.html new file mode 100644 index 00000000..3415b561 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-drag-state/values.html @@ -0,0 +1,118 @@ + + + + + values + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

values

+
+

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-google-map-composable/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-google-map-composable/index.html new file mode 100644 index 00000000..44892f6b --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-google-map-composable/index.html @@ -0,0 +1,122 @@ + + + + + GoogleMapComposable + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

GoogleMapComposable

+

An annotation that can be used to mark a composable function as being expected to be use in a composable function that is also marked or inferred to be marked as a GoogleMapComposable.

This will produce build warnings when GoogleMapComposable composable functions are used outside of a GoogleMapComposable content lambda, and vice versa.

+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-google-map-factory/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-google-map-factory/index.html new file mode 100644 index 00000000..155980eb --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-google-map-factory/index.html @@ -0,0 +1,122 @@ + + + + + GoogleMapFactory + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

GoogleMapFactory

+
typealias GoogleMapFactory = @Composable () -> Unit
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-google-map.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-google-map.html new file mode 100644 index 00000000..265b198a --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-google-map.html @@ -0,0 +1,118 @@ + + + + + GoogleMap + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

GoogleMap

+
+
fun GoogleMap(modifier: Modifier = Modifier, mergeDescendants: Boolean = false, cameraPositionState: CameraPositionState = rememberCameraPositionState(), contentDescription: String? = null, googleMapOptionsFactory: () -> GoogleMapOptions = { GoogleMapOptions() }, properties: MapProperties = DefaultMapProperties, locationSource: LocationSource? = null, uiSettings: MapUiSettings = DefaultMapUiSettings, indoorStateChangeListener: IndoorStateChangeListener = DefaultIndoorStateChangeListener, onMapClick: (LatLng) -> Unit? = null, onMapLongClick: (LatLng) -> Unit? = null, onMapLoaded: () -> Unit? = null, onMyLocationButtonClick: () -> Boolean? = null, onMyLocationClick: (Location) -> Unit? = null, onPOIClick: (PointOfInterest) -> Unit? = null, contentPadding: PaddingValues = DefaultMapContentPadding, mapColorScheme: ComposeMapColorScheme? = null, mapViewFactory: (Context, GoogleMapOptions) -> MapView = ::MapView, content: @Composable () -> Unit = {})

A compose container for a MapView.

Parameters

modifier

Modifier to be applied to the GoogleMap

mergeDescendants

deactivates the map for accessibility purposes

cameraPositionState

the CameraPositionState to be used to control or observe the map's camera state

contentDescription

the content description for the map used by accessibility services to describe the map. If none is specified, the default is "Google Map".

googleMapOptionsFactory

the block for creating the GoogleMapOptions provided when the map is created

properties

the properties for the map

locationSource

the LocationSource to be used to provide location data

uiSettings

the MapUiSettings to be used for UI-specific settings on the map

indoorStateChangeListener

listener for indoor building state changes

onMapClick

lambda invoked when the map is clicked

onMapLoaded

lambda invoked when the map is finished loading

onMyLocationButtonClick

lambda invoked when the my location button is clicked

onMyLocationClick

lambda invoked when the my location dot is clicked

onPOIClick

lambda invoked when a POI is clicked

contentPadding

the padding values used to signal that portions of the map around the edges may be obscured. The map will move the Google logo, etc. to avoid overlapping the padding.

mapColorScheme

Defines the color scheme for the Map.

content

the content of the map

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-ground-overlay-position/-companion/create.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-ground-overlay-position/-companion/create.html new file mode 100644 index 00000000..baca3016 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-ground-overlay-position/-companion/create.html @@ -0,0 +1,118 @@ + + + + + create + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

create

+
+
fun create(latLngBounds: LatLngBounds): GroundOverlayPosition
fun create(location: LatLng, width: Float, height: Float? = null): GroundOverlayPosition
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-ground-overlay-position/-companion/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-ground-overlay-position/-companion/index.html new file mode 100644 index 00000000..a6d7ca84 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-ground-overlay-position/-companion/index.html @@ -0,0 +1,142 @@ + + + + + Companion + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

Companion

+
object Companion
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun create(latLngBounds: LatLngBounds): GroundOverlayPosition
fun create(location: LatLng, width: Float, height: Float? = null): GroundOverlayPosition
+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-ground-overlay-position/height.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-ground-overlay-position/height.html new file mode 100644 index 00000000..edd30bf5 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-ground-overlay-position/height.html @@ -0,0 +1,118 @@ + + + + + height + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

height

+
+ +
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-ground-overlay-position/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-ground-overlay-position/index.html new file mode 100644 index 00000000..dd35104f --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-ground-overlay-position/index.html @@ -0,0 +1,206 @@ + + + + + GroundOverlayPosition + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

GroundOverlayPosition

+

The position of a GroundOverlay.

Use one of the create methods to construct an instance of this class.

+
+
+
+
+
+

Types

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
object Companion
+
+
+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
val latLngBounds: LatLngBounds?
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
val location: LatLng?
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
val width: Float?
+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-ground-overlay-position/lat-lng-bounds.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-ground-overlay-position/lat-lng-bounds.html new file mode 100644 index 00000000..b03c4924 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-ground-overlay-position/lat-lng-bounds.html @@ -0,0 +1,118 @@ + + + + + latLngBounds + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

latLngBounds

+
+
val latLngBounds: LatLngBounds?
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-ground-overlay-position/location.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-ground-overlay-position/location.html new file mode 100644 index 00000000..b974264b --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-ground-overlay-position/location.html @@ -0,0 +1,118 @@ + + + + + location + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

location

+
+
val location: LatLng?
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-ground-overlay-position/width.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-ground-overlay-position/width.html new file mode 100644 index 00000000..8ef9cfaf --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-ground-overlay-position/width.html @@ -0,0 +1,118 @@ + + + + + width + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

width

+
+
val width: Float?
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-ground-overlay.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-ground-overlay.html new file mode 100644 index 00000000..23df7616 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-ground-overlay.html @@ -0,0 +1,118 @@ + + + + + GroundOverlay + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

GroundOverlay

+
+
fun GroundOverlay(position: GroundOverlayPosition, image: BitmapDescriptor, anchor: Offset = Offset(0.5f, 0.5f), bearing: Float = 0.0f, clickable: Boolean = false, tag: Any? = null, transparency: Float = 0.0f, visible: Boolean = true, zIndex: Float = 0.0f, onClick: (GroundOverlay) -> Unit = {})

A composable for a ground overlay on the map.

Parameters

position

the position of the ground overlay

image

the image of the ground overlay

anchor

the anchor of the ground overlay

bearing

the bearing of the ground overlay in degrees clockwise from north

clickable

boolean indicating if the ground overlay is clickable or not

tag

optional tag to associate with the ground overlay

transparency

the transparency of the ground overlay

visible

the visibility of the ground overlay

zIndex

the z-index of the ground overlay

onClick

a lambda invoked when the ground overlay is clicked

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-indoor-state-change-listener/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-indoor-state-change-listener/index.html new file mode 100644 index 00000000..183bde63 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-indoor-state-change-listener/index.html @@ -0,0 +1,157 @@ + + + + + IndoorStateChangeListener + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

IndoorStateChangeListener

+

Interface definition for building indoor level state changes.

Inheritors

+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

Callback invoked when an indoor building comes to focus.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
open fun onIndoorLevelActivated(building: IndoorBuilding)

Callback invoked when a level for a building is activated.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-indoor-state-change-listener/on-indoor-building-focused.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-indoor-state-change-listener/on-indoor-building-focused.html new file mode 100644 index 00000000..316bb6c1 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-indoor-state-change-listener/on-indoor-building-focused.html @@ -0,0 +1,118 @@ + + + + + onIndoorBuildingFocused + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

onIndoorBuildingFocused

+
+

Callback invoked when an indoor building comes to focus.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-indoor-state-change-listener/on-indoor-level-activated.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-indoor-state-change-listener/on-indoor-level-activated.html new file mode 100644 index 00000000..36261655 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-indoor-state-change-listener/on-indoor-level-activated.html @@ -0,0 +1,118 @@ + + + + + onIndoorLevelActivated + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

onIndoorLevelActivated

+
+
open fun onIndoorLevelActivated(building: IndoorBuilding)

Callback invoked when a level for a building is activated.

Parameters

building

the activated building

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-input-handler.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-input-handler.html new file mode 100644 index 00000000..df48bed3 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-input-handler.html @@ -0,0 +1,118 @@ + + + + + InputHandler + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

InputHandler

+
+
fun InputHandler(onCircleClick: (Circle) -> Unit? = null, onGroundOverlayClick: (GroundOverlay) -> Unit? = null, onPolygonClick: (Polygon) -> Unit? = null, onPolylineClick: (Polyline) -> Unit? = null, onMarkerClick: (Marker) -> Boolean? = null, onInfoWindowClick: (Marker) -> Unit? = null, onInfoWindowClose: (Marker) -> Unit? = null, onInfoWindowLongClick: (Marker) -> Unit? = null, onMarkerDrag: (Marker) -> Unit? = null, onMarkerDragEnd: (Marker) -> Unit? = null, onMarkerDragStart: (Marker) -> Unit? = null)

A generic handler for map input. Non-null lambdas will be invoked if no other node was able to handle that input. For example, if OnMarkerClickListener.onMarkerClick was invoked and no matching MarkerNode was found, this onMarkerClick will be invoked.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-effect.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-effect.html new file mode 100644 index 00000000..67d33ea5 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-effect.html @@ -0,0 +1,118 @@ + + + + + MapEffect + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

MapEffect

+
+
fun MapEffect(key1: Any?, block: suspend CoroutineScope.(GoogleMap) -> Unit)

A side-effect backed by a LaunchedEffect which will launch block and provide the underlying managed GoogleMap object into the composition's CoroutineContext. This effect will be re-launched when a different key1 is provided.

Note: This effect should be used with caution as the GoogleMap's properties is managed by the _root_ide_package_.com.google.maps.android.compose.GoogleMap() composable function. However, there are use cases when obtaining a raw reference to the map is desirable for extensibility (e.g. using the utility library for clustering).


fun MapEffect(vararg keys: Any?, block: suspend CoroutineScope.(GoogleMap) -> Unit)

A side-effect backed by a LaunchedEffect which will launch block and provide the underlying managed GoogleMap object into the composition's CoroutineContext. This effect will be re-launched with any different keys.

Note: This effect should be used with caution as the GoogleMap's properties is managed by the _root_ide_package_.com.google.maps.android.compose.GoogleMap() composable function. However, there are use cases when obtaining a raw reference to the map is desirable for extensibility (e.g. using the utility library for clustering).


fun MapEffect(key1: Any?, key2: Any?, block: suspend CoroutineScope.(GoogleMap) -> Unit)

A side-effect backed by a LaunchedEffect which will launch block and provide the underlying managed GoogleMap object into the composition's CoroutineContext. This effect will be re-launched when a different key1 or key2 is provided.

Note: This effect should be used with caution as the GoogleMap's properties is managed by the _root_ide_package_.com.google.maps.android.compose.GoogleMap() composable function. However, there are use cases when obtaining a raw reference to the map is desirable for extensibility (e.g. using the utility library for clustering).


fun MapEffect(key1: Any?, key2: Any?, key3: Any?, block: suspend CoroutineScope.(GoogleMap) -> Unit)

A side-effect backed by a LaunchedEffect which will launch block and provide the underlying managed GoogleMap object into the composition's CoroutineContext. This effect will be re-launched when a different key1, key2, or key3 is provided.

Note: This effect should be used with caution as the GoogleMap's properties is managed by the _root_ide_package_.com.google.maps.android.compose.GoogleMap() composable function. However, there are use cases when obtaining a raw reference to the map is desirable for extensibility (e.g. using the utility library for clustering).

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/-map-properties.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/-map-properties.html new file mode 100644 index 00000000..59670e40 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/-map-properties.html @@ -0,0 +1,118 @@ + + + + + MapProperties + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

MapProperties

+
+
constructor(isBuildingEnabled: Boolean = false, isIndoorEnabled: Boolean = false, isMyLocationEnabled: Boolean = false, isTrafficEnabled: Boolean = false, latLngBoundsForCameraTarget: LatLngBounds? = null, mapStyleOptions: MapStyleOptions? = null, mapType: MapType = MapType.NORMAL, maxZoomPreference: Float = 21.0f, minZoomPreference: Float = 3.0f)
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/copy.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/copy.html new file mode 100644 index 00000000..f45c3594 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/copy.html @@ -0,0 +1,118 @@ + + + + + copy + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

copy

+
+
fun copy(isBuildingEnabled: Boolean = this.isBuildingEnabled, isIndoorEnabled: Boolean = this.isIndoorEnabled, isMyLocationEnabled: Boolean = this.isMyLocationEnabled, isTrafficEnabled: Boolean = this.isTrafficEnabled, latLngBoundsForCameraTarget: LatLngBounds? = this.latLngBoundsForCameraTarget, mapStyleOptions: MapStyleOptions? = this.mapStyleOptions, mapType: MapType = this.mapType, maxZoomPreference: Float = this.maxZoomPreference, minZoomPreference: Float = this.minZoomPreference): MapProperties
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/equals.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/equals.html new file mode 100644 index 00000000..6ab94092 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/equals.html @@ -0,0 +1,118 @@ + + + + + equals + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

equals

+
+
open operator override fun equals(other: Any?): Boolean
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/hash-code.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/hash-code.html new file mode 100644 index 00000000..f8eda242 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/hash-code.html @@ -0,0 +1,118 @@ + + + + + hashCode + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

hashCode

+
+
open override fun hashCode(): Int
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/index.html new file mode 100644 index 00000000..cff350e0 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/index.html @@ -0,0 +1,345 @@ + + + + + MapProperties + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

MapProperties

+
class MapProperties(val isBuildingEnabled: Boolean = false, val isIndoorEnabled: Boolean = false, val isMyLocationEnabled: Boolean = false, val isTrafficEnabled: Boolean = false, val latLngBoundsForCameraTarget: LatLngBounds? = null, val mapStyleOptions: MapStyleOptions? = null, val mapType: MapType = MapType.NORMAL, val maxZoomPreference: Float = 21.0f, val minZoomPreference: Float = 3.0f)

Data class for properties that can be modified on the map.

Note: This is intentionally a class and not a data class for binary compatibility on future changes. See: https://jakewharton.com/public-api-challenges-in-kotlin/

+
+
+
+
+
+

Constructors

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
constructor(isBuildingEnabled: Boolean = false, isIndoorEnabled: Boolean = false, isMyLocationEnabled: Boolean = false, isTrafficEnabled: Boolean = false, latLngBoundsForCameraTarget: LatLngBounds? = null, mapStyleOptions: MapStyleOptions? = null, mapType: MapType = MapType.NORMAL, maxZoomPreference: Float = 21.0f, minZoomPreference: Float = 3.0f)
+
+
+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+ +
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+ +
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+ +
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+ +
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
val latLngBoundsForCameraTarget: LatLngBounds?
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
val mapStyleOptions: MapStyleOptions?
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+ +
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+ +
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun copy(isBuildingEnabled: Boolean = this.isBuildingEnabled, isIndoorEnabled: Boolean = this.isIndoorEnabled, isMyLocationEnabled: Boolean = this.isMyLocationEnabled, isTrafficEnabled: Boolean = this.isTrafficEnabled, latLngBoundsForCameraTarget: LatLngBounds? = this.latLngBoundsForCameraTarget, mapStyleOptions: MapStyleOptions? = this.mapStyleOptions, mapType: MapType = this.mapType, maxZoomPreference: Float = this.maxZoomPreference, minZoomPreference: Float = this.minZoomPreference): MapProperties
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
open operator override fun equals(other: Any?): Boolean
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
open override fun hashCode(): Int
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
open override fun toString(): String
+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/is-building-enabled.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/is-building-enabled.html new file mode 100644 index 00000000..a2528c3a --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/is-building-enabled.html @@ -0,0 +1,118 @@ + + + + + isBuildingEnabled + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

isBuildingEnabled

+
+ +
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/is-indoor-enabled.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/is-indoor-enabled.html new file mode 100644 index 00000000..fda7c924 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/is-indoor-enabled.html @@ -0,0 +1,118 @@ + + + + + isIndoorEnabled + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

isIndoorEnabled

+
+ +
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/is-my-location-enabled.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/is-my-location-enabled.html new file mode 100644 index 00000000..3098e5a0 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/is-my-location-enabled.html @@ -0,0 +1,118 @@ + + + + + isMyLocationEnabled + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

isMyLocationEnabled

+
+ +
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/is-traffic-enabled.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/is-traffic-enabled.html new file mode 100644 index 00000000..f160b445 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/is-traffic-enabled.html @@ -0,0 +1,118 @@ + + + + + isTrafficEnabled + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

isTrafficEnabled

+
+ +
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/lat-lng-bounds-for-camera-target.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/lat-lng-bounds-for-camera-target.html new file mode 100644 index 00000000..6baa9b6f --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/lat-lng-bounds-for-camera-target.html @@ -0,0 +1,118 @@ + + + + + latLngBoundsForCameraTarget + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

latLngBoundsForCameraTarget

+
+
val latLngBoundsForCameraTarget: LatLngBounds?
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/map-style-options.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/map-style-options.html new file mode 100644 index 00000000..eed7ad0d --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/map-style-options.html @@ -0,0 +1,118 @@ + + + + + mapStyleOptions + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

mapStyleOptions

+
+
val mapStyleOptions: MapStyleOptions?
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/map-type.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/map-type.html new file mode 100644 index 00000000..cafa0d96 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/map-type.html @@ -0,0 +1,118 @@ + + + + + mapType + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

mapType

+
+ +
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/max-zoom-preference.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/max-zoom-preference.html new file mode 100644 index 00000000..65612cd2 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/max-zoom-preference.html @@ -0,0 +1,118 @@ + + + + + maxZoomPreference + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

maxZoomPreference

+
+ +
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/min-zoom-preference.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/min-zoom-preference.html new file mode 100644 index 00000000..2da77474 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/min-zoom-preference.html @@ -0,0 +1,118 @@ + + + + + minZoomPreference + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

minZoomPreference

+
+ +
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/to-string.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/to-string.html new file mode 100644 index 00000000..2178f53a --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-properties/to-string.html @@ -0,0 +1,118 @@ + + + + + toString + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

toString

+
+
open override fun toString(): String
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-type/-h-y-b-r-i-d/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-type/-h-y-b-r-i-d/index.html new file mode 100644 index 00000000..efced438 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-type/-h-y-b-r-i-d/index.html @@ -0,0 +1,172 @@ + + + + + HYBRID + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

HYBRID

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
val value: Int
+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-type/-n-o-n-e/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-type/-n-o-n-e/index.html new file mode 100644 index 00000000..a800c16b --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-type/-n-o-n-e/index.html @@ -0,0 +1,172 @@ + + + + + NONE + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

NONE

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
val value: Int
+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-type/-n-o-r-m-a-l/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-type/-n-o-r-m-a-l/index.html new file mode 100644 index 00000000..fac08ea7 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-type/-n-o-r-m-a-l/index.html @@ -0,0 +1,172 @@ + + + + + NORMAL + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

NORMAL

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
val value: Int
+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-type/-s-a-t-e-l-l-i-t-e/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-type/-s-a-t-e-l-l-i-t-e/index.html new file mode 100644 index 00000000..c6d284a7 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-type/-s-a-t-e-l-l-i-t-e/index.html @@ -0,0 +1,172 @@ + + + + + SATELLITE + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

SATELLITE

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
val value: Int
+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-type/-t-e-r-r-a-i-n/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-type/-t-e-r-r-a-i-n/index.html new file mode 100644 index 00000000..320dab40 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-type/-t-e-r-r-a-i-n/index.html @@ -0,0 +1,172 @@ + + + + + TERRAIN + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

TERRAIN

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
val value: Int
+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-type/entries.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-type/entries.html new file mode 100644 index 00000000..1fde8b63 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-type/entries.html @@ -0,0 +1,118 @@ + + + + + entries + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

entries

+
+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-type/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-type/index.html new file mode 100644 index 00000000..968437cd --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-type/index.html @@ -0,0 +1,300 @@ + + + + + MapType + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

MapType

+

Enumerates the different types of map tiles.

+
+
+
+
+
+

Entries

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
val value: Int
+
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun valueOf(value: String): MapType

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns an array containing the constants of this enum type, in the order they're declared.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-type/value-of.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-type/value-of.html new file mode 100644 index 00000000..3494406a --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-type/value-of.html @@ -0,0 +1,118 @@ + + + + + valueOf + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

valueOf

+
+
fun valueOf(value: String): MapType

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-type/value.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-type/value.html new file mode 100644 index 00000000..752af1d4 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-type/value.html @@ -0,0 +1,118 @@ + + + + + value + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

value

+
+
val value: Int
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-type/values.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-type/values.html new file mode 100644 index 00000000..f80c6ee9 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-type/values.html @@ -0,0 +1,118 @@ + + + + + values + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

values

+
+

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/-map-ui-settings.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/-map-ui-settings.html new file mode 100644 index 00000000..dc5e8fda --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/-map-ui-settings.html @@ -0,0 +1,118 @@ + + + + + MapUiSettings + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

MapUiSettings

+
+
constructor(compassEnabled: Boolean = true, indoorLevelPickerEnabled: Boolean = true, mapToolbarEnabled: Boolean = true, myLocationButtonEnabled: Boolean = true, rotationGesturesEnabled: Boolean = true, scrollGesturesEnabled: Boolean = true, scrollGesturesEnabledDuringRotateOrZoom: Boolean = true, tiltGesturesEnabled: Boolean = true, zoomControlsEnabled: Boolean = true, zoomGesturesEnabled: Boolean = true)
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/compass-enabled.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/compass-enabled.html new file mode 100644 index 00000000..c9224496 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/compass-enabled.html @@ -0,0 +1,118 @@ + + + + + compassEnabled + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

compassEnabled

+
+ +
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/copy.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/copy.html new file mode 100644 index 00000000..beee44c0 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/copy.html @@ -0,0 +1,118 @@ + + + + + copy + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

copy

+
+
fun copy(compassEnabled: Boolean = this.compassEnabled, indoorLevelPickerEnabled: Boolean = this.indoorLevelPickerEnabled, mapToolbarEnabled: Boolean = this.mapToolbarEnabled, myLocationButtonEnabled: Boolean = this.myLocationButtonEnabled, rotationGesturesEnabled: Boolean = this.rotationGesturesEnabled, scrollGesturesEnabled: Boolean = this.scrollGesturesEnabled, scrollGesturesEnabledDuringRotateOrZoom: Boolean = this.scrollGesturesEnabledDuringRotateOrZoom, tiltGesturesEnabled: Boolean = this.tiltGesturesEnabled, zoomControlsEnabled: Boolean = this.zoomControlsEnabled, zoomGesturesEnabled: Boolean = this.zoomGesturesEnabled): MapUiSettings
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/equals.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/equals.html new file mode 100644 index 00000000..a266c86a --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/equals.html @@ -0,0 +1,118 @@ + + + + + equals + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

equals

+
+
open operator override fun equals(other: Any?): Boolean
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/hash-code.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/hash-code.html new file mode 100644 index 00000000..1d084580 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/hash-code.html @@ -0,0 +1,118 @@ + + + + + hashCode + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

hashCode

+
+
open override fun hashCode(): Int
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/index.html new file mode 100644 index 00000000..c53f8fc6 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/index.html @@ -0,0 +1,360 @@ + + + + + MapUiSettings + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

MapUiSettings

+
class MapUiSettings(val compassEnabled: Boolean = true, val indoorLevelPickerEnabled: Boolean = true, val mapToolbarEnabled: Boolean = true, val myLocationButtonEnabled: Boolean = true, val rotationGesturesEnabled: Boolean = true, val scrollGesturesEnabled: Boolean = true, val scrollGesturesEnabledDuringRotateOrZoom: Boolean = true, val tiltGesturesEnabled: Boolean = true, val zoomControlsEnabled: Boolean = true, val zoomGesturesEnabled: Boolean = true)

Data class for UI-related settings on the map.

Note: This is intentionally a class and not a data class for binary compatibility on future changes. See: https://jakewharton.com/public-api-challenges-in-kotlin/

+
+
+
+
+
+

Constructors

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
constructor(compassEnabled: Boolean = true, indoorLevelPickerEnabled: Boolean = true, mapToolbarEnabled: Boolean = true, myLocationButtonEnabled: Boolean = true, rotationGesturesEnabled: Boolean = true, scrollGesturesEnabled: Boolean = true, scrollGesturesEnabledDuringRotateOrZoom: Boolean = true, tiltGesturesEnabled: Boolean = true, zoomControlsEnabled: Boolean = true, zoomGesturesEnabled: Boolean = true)
+
+
+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+ +
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+ +
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+ +
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+ +
+
+ +
+
+
+ + +
Link copied to clipboard
+
+ +
+
+ +
+
+
+ + +
Link copied to clipboard
+
+ +
+
+ +
+ +
+ +
+
+
+ + +
Link copied to clipboard
+
+ +
+
+ +
+
+
+ + +
Link copied to clipboard
+
+ +
+
+ +
+
+
+ + +
Link copied to clipboard
+
+ +
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun copy(compassEnabled: Boolean = this.compassEnabled, indoorLevelPickerEnabled: Boolean = this.indoorLevelPickerEnabled, mapToolbarEnabled: Boolean = this.mapToolbarEnabled, myLocationButtonEnabled: Boolean = this.myLocationButtonEnabled, rotationGesturesEnabled: Boolean = this.rotationGesturesEnabled, scrollGesturesEnabled: Boolean = this.scrollGesturesEnabled, scrollGesturesEnabledDuringRotateOrZoom: Boolean = this.scrollGesturesEnabledDuringRotateOrZoom, tiltGesturesEnabled: Boolean = this.tiltGesturesEnabled, zoomControlsEnabled: Boolean = this.zoomControlsEnabled, zoomGesturesEnabled: Boolean = this.zoomGesturesEnabled): MapUiSettings
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
open operator override fun equals(other: Any?): Boolean
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
open override fun hashCode(): Int
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
open override fun toString(): String
+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/indoor-level-picker-enabled.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/indoor-level-picker-enabled.html new file mode 100644 index 00000000..485d6e76 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/indoor-level-picker-enabled.html @@ -0,0 +1,118 @@ + + + + + indoorLevelPickerEnabled + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

indoorLevelPickerEnabled

+
+ +
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/map-toolbar-enabled.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/map-toolbar-enabled.html new file mode 100644 index 00000000..24345a09 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/map-toolbar-enabled.html @@ -0,0 +1,118 @@ + + + + + mapToolbarEnabled + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

mapToolbarEnabled

+
+ +
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/my-location-button-enabled.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/my-location-button-enabled.html new file mode 100644 index 00000000..68c3f4e1 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/my-location-button-enabled.html @@ -0,0 +1,118 @@ + + + + + myLocationButtonEnabled + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

myLocationButtonEnabled

+
+ +
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/rotation-gestures-enabled.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/rotation-gestures-enabled.html new file mode 100644 index 00000000..b185ecc7 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/rotation-gestures-enabled.html @@ -0,0 +1,118 @@ + + + + + rotationGesturesEnabled + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

rotationGesturesEnabled

+
+ +
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/scroll-gestures-enabled-during-rotate-or-zoom.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/scroll-gestures-enabled-during-rotate-or-zoom.html new file mode 100644 index 00000000..8748f472 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/scroll-gestures-enabled-during-rotate-or-zoom.html @@ -0,0 +1,118 @@ + + + + + scrollGesturesEnabledDuringRotateOrZoom + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

scrollGesturesEnabledDuringRotateOrZoom

+
+ +
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/scroll-gestures-enabled.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/scroll-gestures-enabled.html new file mode 100644 index 00000000..2a37612b --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/scroll-gestures-enabled.html @@ -0,0 +1,118 @@ + + + + + scrollGesturesEnabled + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

scrollGesturesEnabled

+
+ +
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/tilt-gestures-enabled.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/tilt-gestures-enabled.html new file mode 100644 index 00000000..5a11d6db --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/tilt-gestures-enabled.html @@ -0,0 +1,118 @@ + + + + + tiltGesturesEnabled + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

tiltGesturesEnabled

+
+ +
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/to-string.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/to-string.html new file mode 100644 index 00000000..35632532 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/to-string.html @@ -0,0 +1,118 @@ + + + + + toString + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

toString

+
+
open override fun toString(): String
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/zoom-controls-enabled.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/zoom-controls-enabled.html new file mode 100644 index 00000000..b781d9ce --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/zoom-controls-enabled.html @@ -0,0 +1,118 @@ + + + + + zoomControlsEnabled + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

zoomControlsEnabled

+
+ +
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/zoom-gestures-enabled.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/zoom-gestures-enabled.html new file mode 100644 index 00000000..92b19be4 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-map-ui-settings/zoom-gestures-enabled.html @@ -0,0 +1,118 @@ + + + + + zoomGesturesEnabled + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

zoomGesturesEnabled

+
+ +
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-maps-compose-experimental-api/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-maps-compose-experimental-api/index.html new file mode 100644 index 00000000..00ccf278 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-maps-compose-experimental-api/index.html @@ -0,0 +1,122 @@ + + + + + MapsComposeExperimentalApi + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

MapsComposeExperimentalApi

+

Marks declarations that are still experimental.

+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-composable.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-composable.html new file mode 100644 index 00000000..71700dbb --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-composable.html @@ -0,0 +1,118 @@ + + + + + MarkerComposable + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

MarkerComposable

+
+
fun MarkerComposable(vararg keys: Any, state: MarkerState = rememberUpdatedMarkerState(), contentDescription: String? = "", alpha: Float = 1.0f, anchor: Offset = Offset(0.5f, 1.0f), draggable: Boolean = false, flat: Boolean = false, infoWindowAnchor: Offset = Offset(0.5f, 0.0f), rotation: Float = 0.0f, snippet: String? = null, tag: Any? = null, title: String? = null, visible: Boolean = true, zIndex: Float = 0.0f, onClick: (Marker) -> Boolean = { false }, onInfoWindowClick: (Marker) -> Unit = {}, onInfoWindowClose: (Marker) -> Unit = {}, onInfoWindowLongClick: (Marker) -> Unit = {}, content: @Composable () -> Unit)

Composable rendering the content passed as a marker.

This composable must have a non-zero size in both dimensions

Parameters

keys

unique keys representing the state of this Marker. Any changes to one of the key will trigger a rendering of the content composable and thus the rendering of an updated marker.

state

the MarkerState to be used to control or observe the marker state such as its position and info window

contentDescription

the content description for accessibility purposes

alpha

the alpha (opacity) of the marker

anchor

the anchor for the marker image

draggable

sets the draggability for the marker

flat

sets if the marker should be flat against the map

infoWindowAnchor

the anchor point of the info window on the marker image

rotation

the rotation of the marker in degrees clockwise about the marker's anchor point

snippet

the snippet for the marker

tag

optional tag to associate with the marker

title

the title for the marker

visible

the visibility of the marker

zIndex

the z-index of the marker

onClick

a lambda invoked when the marker is clicked

onInfoWindowClick

a lambda invoked when the marker's info window is clicked

onInfoWindowClose

a lambda invoked when the marker's info window is closed

onInfoWindowLongClick

a lambda invoked when the marker's info window is long clicked

content

composable lambda expression used to customize the marker's content

Throws

if the composable is measured to have a size of zero in either dimension

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-info-window-composable.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-info-window-composable.html new file mode 100644 index 00000000..a1d6bf94 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-info-window-composable.html @@ -0,0 +1,118 @@ + + + + + MarkerInfoWindowComposable + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

MarkerInfoWindowComposable

+
+
fun MarkerInfoWindowComposable(vararg keys: Any, state: MarkerState = rememberUpdatedMarkerState(), alpha: Float = 1.0f, anchor: Offset = Offset(0.5f, 1.0f), draggable: Boolean = false, flat: Boolean = false, infoWindowAnchor: Offset = Offset(0.5f, 0.0f), rotation: Float = 0.0f, snippet: String? = null, tag: Any? = null, title: String? = null, visible: Boolean = true, zIndex: Float = 0.0f, onClick: (Marker) -> Boolean = { false }, onInfoWindowClick: (Marker) -> Unit = {}, onInfoWindowClose: (Marker) -> Unit = {}, onInfoWindowLongClick: (Marker) -> Unit = {}, infoContent: @Composable (Marker) -> Unit? = null, content: @Composable () -> Unit)

A composable for a marker on the map wherein its entire info window and the marker itself can be customized. If this customization is not required, use com.google.maps.android.compose.Marker.

Parameters

keys

unique keys representing the state of this Marker. Any changes to one of the key will trigger a rendering of the content composable and thus the rendering of an updated marker.

state

the MarkerState to be used to control or observe the marker state such as its position and info window

alpha

the alpha (opacity) of the marker

anchor

the anchor for the marker image

draggable

sets the draggability for the marker

flat

sets if the marker should be flat against the map

infoWindowAnchor

the anchor point of the info window on the marker image

rotation

the rotation of the marker in degrees clockwise about the marker's anchor point

snippet

the snippet for the marker

tag

optional tag to associate with the marker

title

the title for the marker

visible

the visibility of the marker

zIndex

the z-index of the marker

onClick

a lambda invoked when the marker is clicked

onInfoWindowClick

a lambda invoked when the marker's info window is clicked

onInfoWindowClose

a lambda invoked when the marker's info window is closed

onInfoWindowLongClick

a lambda invoked when the marker's info window is long clicked

infoContent

optional composable lambda expression for customizing the info window's content

content

composable lambda expression used to customize the marker's content

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-info-window-content.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-info-window-content.html new file mode 100644 index 00000000..99c51f06 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-info-window-content.html @@ -0,0 +1,118 @@ + + + + + MarkerInfoWindowContent + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

MarkerInfoWindowContent

+
+
fun MarkerInfoWindowContent(state: MarkerState = rememberUpdatedMarkerState(), alpha: Float = 1.0f, anchor: Offset = Offset(0.5f, 1.0f), draggable: Boolean = false, flat: Boolean = false, icon: BitmapDescriptor? = null, infoWindowAnchor: Offset = Offset(0.5f, 0.0f), rotation: Float = 0.0f, snippet: String? = null, tag: Any? = null, title: String? = null, visible: Boolean = true, zIndex: Float = 0.0f, onClick: (Marker) -> Boolean = { false }, onInfoWindowClick: (Marker) -> Unit = {}, onInfoWindowClose: (Marker) -> Unit = {}, onInfoWindowLongClick: (Marker) -> Unit = {}, content: @Composable (Marker) -> Unit? = null)

A composable for a marker on the map wherein its info window contents can be customized. If this customization is not required, use com.google.maps.android.compose.Marker.

Parameters

state

the MarkerState to be used to control or observe the marker state such as its position and info window

alpha

the alpha (opacity) of the marker

anchor

the anchor for the marker image

draggable

sets the draggability for the marker

flat

sets if the marker should be flat against the map

icon

sets the icon for the marker

infoWindowAnchor

the anchor point of the info window on the marker image

rotation

the rotation of the marker in degrees clockwise about the marker's anchor point

snippet

the snippet for the marker

tag

optional tag to associate with the marker

title

the title for the marker

visible

the visibility of the marker

zIndex

the z-index of the marker

onClick

a lambda invoked when the marker is clicked

onInfoWindowClick

a lambda invoked when the marker's info window is clicked

onInfoWindowClose

a lambda invoked when the marker's info window is closed

onInfoWindowLongClick

a lambda invoked when the marker's info window is long clicked

content

optional composable lambda expression for customizing the info window's content

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-info-window.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-info-window.html new file mode 100644 index 00000000..80124f0e --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-info-window.html @@ -0,0 +1,118 @@ + + + + + MarkerInfoWindow + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

MarkerInfoWindow

+
+
fun MarkerInfoWindow(state: MarkerState = rememberUpdatedMarkerState(), alpha: Float = 1.0f, anchor: Offset = Offset(0.5f, 1.0f), draggable: Boolean = false, contentDescription: String? = "", flat: Boolean = false, icon: BitmapDescriptor? = null, infoWindowAnchor: Offset = Offset(0.5f, 0.0f), rotation: Float = 0.0f, snippet: String? = null, tag: Any? = null, title: String? = null, visible: Boolean = true, zIndex: Float = 0.0f, onClick: (Marker) -> Boolean = { false }, onInfoWindowClick: (Marker) -> Unit = {}, onInfoWindowClose: (Marker) -> Unit = {}, onInfoWindowLongClick: (Marker) -> Unit = {}, content: @Composable (Marker) -> Unit? = null)

A composable for a marker on the map wherein its entire info window can be customized. If this customization is not required, use com.google.maps.android.compose.Marker.

Parameters

state

the MarkerState to be used to control or observe the marker state such as its position and info window

alpha

the alpha (opacity) of the marker

anchor

the anchor for the marker image

draggable

sets the draggability for the marker

contentDescription

the content description for accessibility purposes

flat

sets if the marker should be flat against the map

icon

sets the icon for the marker

infoWindowAnchor

the anchor point of the info window on the marker image

rotation

the rotation of the marker in degrees clockwise about the marker's anchor point

snippet

the snippet for the marker

tag

optional tag to associate with the marker

title

the title for the marker

visible

the visibility of the marker

zIndex

the z-index of the marker

onClick

a lambda invoked when the marker is clicked

onInfoWindowClick

a lambda invoked when the marker's info window is clicked

onInfoWindowClose

a lambda invoked when the marker's info window is closed

onInfoWindowLongClick

a lambda invoked when the marker's info window is long clicked

content

optional composable lambda expression for customizing the info window's content

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-state/-companion/-saver.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-state/-companion/-saver.html new file mode 100644 index 00000000..eb3d035d --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-state/-companion/-saver.html @@ -0,0 +1,118 @@ + + + + + Saver + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

Saver

+
+
val Saver: Saver<MarkerState, LatLng>

The default saver implementation for MarkerState

This cannot be used to preserve marker info window visibility across configuration changes.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-state/-companion/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-state/-companion/index.html new file mode 100644 index 00000000..82bc6d5f --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-state/-companion/index.html @@ -0,0 +1,161 @@ + + + + + Companion + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

Companion

+
object Companion
+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
val Saver: Saver<MarkerState, LatLng>

The default saver implementation for MarkerState

+
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
operator fun invoke(position: LatLng = LatLng(0.0, 0.0)): MarkerState

Creates a new MarkerState object

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-state/-companion/invoke.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-state/-companion/invoke.html new file mode 100644 index 00000000..c2398809 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-state/-companion/invoke.html @@ -0,0 +1,118 @@ + + + + + invoke + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

invoke

+
+
operator fun invoke(position: LatLng = LatLng(0.0, 0.0)): MarkerState

Creates a new MarkerState object

Parameters

position

the initial marker position

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-state/drag-state.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-state/drag-state.html new file mode 100644 index 00000000..fd9750fe --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-state/drag-state.html @@ -0,0 +1,118 @@ + + + + + dragState + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

dragState

+
+

Deprecated

Use isDragging instead - dragState is not appropriate for representing "state"; it is a lossy representation of drag "events", promoting invalid usage.

Current DragState of the marker.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-state/hide-info-window.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-state/hide-info-window.html new file mode 100644 index 00000000..b7982e3e --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-state/hide-info-window.html @@ -0,0 +1,118 @@ + + + + + hideInfoWindow + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

hideInfoWindow

+
+

Hides the info window for the underlying marker.

Not backed by observable Compose state to accommodate com.google.android.gms.maps.GoogleMap special semantics: only a single info window can be visible for the entire GoogleMap.

Only use from Compose Effect APIs, never directly from composition, to avoid unexpected behavior from cancelled compositions.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-state/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-state/index.html new file mode 100644 index 00000000..d411ba58 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-state/index.html @@ -0,0 +1,225 @@ + + + + + MarkerState + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

MarkerState

+

A state object that can be hoisted to control and observe the marker state.

This cannot be used to preserve marker info window visibility across configuration changes.

Parameters

position

the initial marker position

+
+
+
+
+
+

Types

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
object Companion
+
+
+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

Current DragState of the marker.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Reflects whether the end user is currently dragging the marker. Dragging can happen only if a Marker is draggable.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
var position: LatLng

Current position of the marker.

+
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

Hides the info window for the underlying marker.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Shows the info window for the underlying marker.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-state/is-dragging.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-state/is-dragging.html new file mode 100644 index 00000000..d6e7bf12 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-state/is-dragging.html @@ -0,0 +1,118 @@ + + + + + isDragging + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

isDragging

+
+

Reflects whether the end user is currently dragging the marker. Dragging can happen only if a Marker is draggable.

This property is backed by Compose state.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-state/position.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-state/position.html new file mode 100644 index 00000000..c2155305 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-state/position.html @@ -0,0 +1,118 @@ + + + + + position + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

position

+
+
var position: LatLng

Current position of the marker.

This property is backed by Compose state. It can be updated by the API user and by the API itself: it has two potentially competing sources of truth.

The API will not update the property unless isDragging == true, which will happen if and only if a Marker is draggable and the end user is currently dragging it.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-state/show-info-window.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-state/show-info-window.html new file mode 100644 index 00000000..6a090a00 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker-state/show-info-window.html @@ -0,0 +1,118 @@ + + + + + showInfoWindow + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

showInfoWindow

+
+

Shows the info window for the underlying marker.

Not backed by Compose state to accommodate com.google.android.gms.maps.GoogleMap special semantics: only a single info window can be visible for the entire GoogleMap.

Only use from Compose Effect APIs, never directly from composition, to avoid exceptions and unexpected behavior from cancelled compositions.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker.html new file mode 100644 index 00000000..e75c3886 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-marker.html @@ -0,0 +1,118 @@ + + + + + Marker + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

Marker

+
+
fun Marker(state: MarkerState = rememberUpdatedMarkerState(), contentDescription: String? = "", alpha: Float = 1.0f, anchor: Offset = Offset(0.5f, 1.0f), draggable: Boolean = false, flat: Boolean = false, icon: BitmapDescriptor? = null, infoWindowAnchor: Offset = Offset(0.5f, 0.0f), rotation: Float = 0.0f, snippet: String? = null, tag: Any? = null, title: String? = null, visible: Boolean = true, zIndex: Float = 0.0f, onClick: (Marker) -> Boolean = { false }, onInfoWindowClick: (Marker) -> Unit = {}, onInfoWindowClose: (Marker) -> Unit = {}, onInfoWindowLongClick: (Marker) -> Unit = {})

A composable for a marker on the map.

Parameters

state

the MarkerState to be used to control or observe the marker state such as its position and info window

contentDescription

the content description for accessibility purposes

alpha

the alpha (opacity) of the marker

anchor

the anchor for the marker image

draggable

sets the draggability for the marker

flat

sets if the marker should be flat against the map

icon

sets the icon for the marker

infoWindowAnchor

the anchor point of the info window on the marker image

rotation

the rotation of the marker in degrees clockwise about the marker's anchor point

snippet

the snippet for the marker

tag

optional tag to associate with the marker

title

the title for the marker

visible

the visibility of the marker

zIndex

the z-index of the marker

onClick

a lambda invoked when the marker is clicked

onInfoWindowClick

a lambda invoked when the marker's info window is clicked

onInfoWindowClose

a lambda invoked when the marker's info window is closed

onInfoWindowLongClick

a lambda invoked when the marker's info window is long clicked

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-polygon.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-polygon.html new file mode 100644 index 00000000..18653826 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-polygon.html @@ -0,0 +1,118 @@ + + + + + Polygon + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

Polygon

+
+
fun Polygon(points: List<LatLng>, clickable: Boolean = false, fillColor: Color = Color.Black, geodesic: Boolean = false, holes: List<List<LatLng>> = emptyList(), strokeColor: Color = Color.Black, strokeJointType: Int = JointType.DEFAULT, strokePattern: List<PatternItem>? = null, strokeWidth: Float = 10.0f, tag: Any? = null, visible: Boolean = true, zIndex: Float = 0.0f, onClick: (Polygon) -> Unit = {})

A composable for a polygon on the map.

Parameters

points

the points comprising the vertices of the polygon

clickable

boolean indicating if the polygon is clickable or not

fillColor

the fill color of the polygon

geodesic

specifies whether to draw each segment as a geodesic

holes

the holes for the polygon

strokeColor

the stroke color of the polygon

strokeJointType

the joint type for all vertices of the polygon's outline

strokePattern

the stroke pattern for the polygon's outline

strokeWidth

specifies the polygon's stroke width, in display pixels

tag

optional tag to associate wiht the polygon

visible

the visibility of the polygon

zIndex

the z-index of the polygon

onClick

a lambda invoked when the polygon is clicked

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-polyline.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-polyline.html new file mode 100644 index 00000000..cc406042 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-polyline.html @@ -0,0 +1,118 @@ + + + + + Polyline + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

Polyline

+
+
fun Polyline(points: List<LatLng>, clickable: Boolean = false, color: Color = Color.Black, endCap: Cap = ButtCap(), geodesic: Boolean = false, jointType: Int = JointType.DEFAULT, pattern: List<PatternItem>? = null, startCap: Cap = ButtCap(), tag: Any? = null, visible: Boolean = true, width: Float = 10.0f, zIndex: Float = 0.0f, onClick: (Polyline) -> Unit = {})

A composable for a polyline on the map.

Parameters

points

the points comprising the polyline

clickable

boolean indicating if the polyline is clickable or not

color

the color of the polyline

endCap

a cap at the end vertex of the polyline

geodesic

specifies whether to draw the polyline as a geodesic

jointType

the joint type for all vertices of the polyline except the start and end vertices

pattern

the pattern for the polyline

startCap

the cap at the start vertex of the polyline

visible

the visibility of the polyline

width

the width of the polyline in screen pixels

zIndex

the z-index of the polyline

onClick

a lambda invoked when the polyline is clicked


fun Polyline(points: List<LatLng>, spans: List<StyleSpan>, clickable: Boolean = false, endCap: Cap = ButtCap(), geodesic: Boolean = false, jointType: Int = JointType.DEFAULT, pattern: List<PatternItem>? = null, startCap: Cap = ButtCap(), tag: Any? = null, visible: Boolean = true, width: Float = 10.0f, zIndex: Float = 0.0f, onClick: (Polyline) -> Unit = {})

A composable for a polyline on the map that supports a StyleSpan.

Parameters

points

the points comprising the polyline

spans

style spans for the polyline

clickable

boolean indicating if the polyline is clickable or not

endCap

a cap at the end vertex of the polyline

geodesic

specifies whether to draw the polyline as a geodesic

jointType

the joint type for all vertices of the polyline except the start and end vertices

pattern

the pattern for the polyline

startCap

the cap at the start vertex of the polyline

visible

the visibility of the polyline

width

the width of the polyline in screen pixels

zIndex

the z-index of the polyline

onClick

a lambda invoked when the polyline is clicked

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-tile-overlay-state/-companion/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-tile-overlay-state/-companion/index.html new file mode 100644 index 00000000..a231064b --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-tile-overlay-state/-companion/index.html @@ -0,0 +1,142 @@ + + + + + Companion + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

Companion

+
object Companion
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

Creates a new TileOverlayState object

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-tile-overlay-state/-companion/invoke.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-tile-overlay-state/-companion/invoke.html new file mode 100644 index 00000000..491a49e4 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-tile-overlay-state/-companion/invoke.html @@ -0,0 +1,118 @@ + + + + + invoke + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

invoke

+
+

Creates a new TileOverlayState object

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-tile-overlay-state/clear-tile-cache.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-tile-overlay-state/clear-tile-cache.html new file mode 100644 index 00000000..1d63ba8b --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-tile-overlay-state/clear-tile-cache.html @@ -0,0 +1,118 @@ + + + + + clearTileCache + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

clearTileCache

+
+

Call to force a refresh if the tiles provided by the tile overlay become 'stale'. This will cause all the tiles on this overlay to be reloaded. For example, if the tiles provided by the TileProvider change, you must call this afterwards to ensure that the previous tiles are no longer rendered.

See Maps SDK docs

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-tile-overlay-state/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-tile-overlay-state/index.html new file mode 100644 index 00000000..3cad056c --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-tile-overlay-state/index.html @@ -0,0 +1,161 @@ + + + + + TileOverlayState + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

TileOverlayState

+

A state object that can be hoisted to control the state of a TileOverlay. A TileOverlayState may only be used by a single TileOverlay composable at a time.

clearTileCache can be called to request that the map refresh these tiles.

+
+
+
+
+
+

Types

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
object Companion
+
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

Call to force a refresh if the tiles provided by the tile overlay become 'stale'. This will cause all the tiles on this overlay to be reloaded. For example, if the tiles provided by the TileProvider change, you must call this afterwards to ensure that the previous tiles are no longer rendered.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-tile-overlay.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-tile-overlay.html new file mode 100644 index 00000000..a9dc4918 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/-tile-overlay.html @@ -0,0 +1,118 @@ + + + + + TileOverlay + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

TileOverlay

+
+
fun TileOverlay(tileProvider: TileProvider, state: TileOverlayState = rememberTileOverlayState(), fadeIn: Boolean = true, transparency: Float = 0.0f, visible: Boolean = true, zIndex: Float = 0.0f, onClick: (TileOverlay) -> Unit = {})

A composable for a tile overlay on the map.

Parameters

tileProvider

the tile provider to use for this tile overlay

state

the TileOverlayState to be used to control the tile overlay, such as clearing stale tiles

fadeIn

boolean indicating whether the tiles should fade in

transparency

the transparency of the tile overlay

visible

the visibility of the tile overlay

zIndex

the z-index of the tile overlay

onClick

a lambda invoked when the tile overlay is clicked

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/current-camera-position-state.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/current-camera-position-state.html new file mode 100644 index 00000000..cb90fa85 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/current-camera-position-state.html @@ -0,0 +1,118 @@ + + + + + currentCameraPositionState + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

currentCameraPositionState

+
+ +
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/google-map-factory.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/google-map-factory.html new file mode 100644 index 00000000..9836c648 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/google-map-factory.html @@ -0,0 +1,118 @@ + + + + + googleMapFactory + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

googleMapFactory

+
+
fun googleMapFactory(modifier: Modifier = Modifier, cameraPositionState: CameraPositionState = rememberCameraPositionState(), onMapLoaded: () -> Unit = {}, content: @Composable () -> Unit = {}): GoogleMapFactory

This method provides a factory pattern for GoogleMap. It can typically be used in tests to provide a default Composable of type GoogleMapFactory.

Parameters

modifier

Any modifier to be applied.

cameraPositionState

The position for the map.

onMapLoaded

Listener for the map loaded.

content

Any content to be added.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/index.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/index.html new file mode 100644 index 00000000..bfed91c6 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/index.html @@ -0,0 +1,749 @@ + + + + + com.google.maps.android.compose + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

Package-level declarations

+
+
+
+
+
+

Types

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

Enumerates the different reasons why the map camera started to move.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

A state object that can be hoisted to control and observe the map's camera state. A CameraPositionState may only be used by a single GoogleMap composable at a time as it reflects instance state for a single view of a map.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Enum representing a 1-1 mapping to com.google.android.gms.maps.model.MapColorScheme.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+ +
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Default implementation of IndoorStateChangeListener with no-op implementations.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+ +
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

An annotation that can be used to mark a composable function as being expected to be use in a composable function that is also marked or inferred to be marked as a GoogleMapComposable.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
typealias GoogleMapFactory = @Composable () -> Unit
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

The position of a GroundOverlay.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Interface definition for building indoor level state changes.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
class MapProperties(val isBuildingEnabled: Boolean = false, val isIndoorEnabled: Boolean = false, val isMyLocationEnabled: Boolean = false, val isTrafficEnabled: Boolean = false, val latLngBoundsForCameraTarget: LatLngBounds? = null, val mapStyleOptions: MapStyleOptions? = null, val mapType: MapType = MapType.NORMAL, val maxZoomPreference: Float = 21.0f, val minZoomPreference: Float = 3.0f)

Data class for properties that can be modified on the map.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Marks declarations that are still experimental.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Enumerates the different types of map tiles.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
class MapUiSettings(val compassEnabled: Boolean = true, val indoorLevelPickerEnabled: Boolean = true, val mapToolbarEnabled: Boolean = true, val myLocationButtonEnabled: Boolean = true, val rotationGesturesEnabled: Boolean = true, val scrollGesturesEnabled: Boolean = true, val scrollGesturesEnabledDuringRotateOrZoom: Boolean = true, val tiltGesturesEnabled: Boolean = true, val zoomControlsEnabled: Boolean = true, val zoomGesturesEnabled: Boolean = true)

Data class for UI-related settings on the map.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

A state object that can be hoisted to control and observe the marker state.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

A state object that can be hoisted to control the state of a TileOverlay. A TileOverlayState may only be used by a single TileOverlay composable at a time.

+
+
+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+ +
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Default map content padding does not pad.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Equivalent to MapProperties with default values.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Default settings are all enabled.

+
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun AdvancedMarker(state: MarkerState = rememberUpdatedMarkerState(), contentDescription: String? = "", alpha: Float = 1.0f, anchor: Offset = Offset(0.5f, 1.0f), draggable: Boolean = false, flat: Boolean = false, infoWindowAnchor: Offset = Offset(0.5f, 0.0f), rotation: Float = 0.0f, snippet: String? = null, tag: Any? = null, title: String? = null, visible: Boolean = true, zIndex: Float = 0.0f, onClick: (Marker) -> Boolean = { false }, onInfoWindowClick: (Marker) -> Unit = {}, onInfoWindowClose: (Marker) -> Unit = {}, onInfoWindowLongClick: (Marker) -> Unit = {}, icon: BitmapDescriptor? = null, pinConfig: PinConfig? = null, iconView: View? = null, collisionBehavior: Int = AdvancedMarkerOptions.CollisionBehavior.REQUIRED)

A composable for an advanced marker on the map.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun Circle(center: LatLng, clickable: Boolean = false, fillColor: Color = Color.Black, radius: Double = 10.0, strokeColor: Color = Color.Black, strokePattern: List<PatternItem>? = null, strokeWidth: Float = 10.0f, tag: Any? = null, visible: Boolean = true, zIndex: Float = 0.0f, onClick: (Circle) -> Unit = {})

A composable for a circle on the map.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun GoogleMap(modifier: Modifier = Modifier, mergeDescendants: Boolean = false, cameraPositionState: CameraPositionState = rememberCameraPositionState(), contentDescription: String? = null, googleMapOptionsFactory: () -> GoogleMapOptions = { GoogleMapOptions() }, properties: MapProperties = DefaultMapProperties, locationSource: LocationSource? = null, uiSettings: MapUiSettings = DefaultMapUiSettings, indoorStateChangeListener: IndoorStateChangeListener = DefaultIndoorStateChangeListener, onMapClick: (LatLng) -> Unit? = null, onMapLongClick: (LatLng) -> Unit? = null, onMapLoaded: () -> Unit? = null, onMyLocationButtonClick: () -> Boolean? = null, onMyLocationClick: (Location) -> Unit? = null, onPOIClick: (PointOfInterest) -> Unit? = null, contentPadding: PaddingValues = DefaultMapContentPadding, mapColorScheme: ComposeMapColorScheme? = null, mapViewFactory: (Context, GoogleMapOptions) -> MapView = ::MapView, content: @Composable () -> Unit = {})

A compose container for a MapView.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun googleMapFactory(modifier: Modifier = Modifier, cameraPositionState: CameraPositionState = rememberCameraPositionState(), onMapLoaded: () -> Unit = {}, content: @Composable () -> Unit = {}): GoogleMapFactory

This method provides a factory pattern for GoogleMap. It can typically be used in tests to provide a default Composable of type GoogleMapFactory.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun GroundOverlay(position: GroundOverlayPosition, image: BitmapDescriptor, anchor: Offset = Offset(0.5f, 0.5f), bearing: Float = 0.0f, clickable: Boolean = false, tag: Any? = null, transparency: Float = 0.0f, visible: Boolean = true, zIndex: Float = 0.0f, onClick: (GroundOverlay) -> Unit = {})

A composable for a ground overlay on the map.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun InputHandler(onCircleClick: (Circle) -> Unit? = null, onGroundOverlayClick: (GroundOverlay) -> Unit? = null, onPolygonClick: (Polygon) -> Unit? = null, onPolylineClick: (Polyline) -> Unit? = null, onMarkerClick: (Marker) -> Boolean? = null, onInfoWindowClick: (Marker) -> Unit? = null, onInfoWindowClose: (Marker) -> Unit? = null, onInfoWindowLongClick: (Marker) -> Unit? = null, onMarkerDrag: (Marker) -> Unit? = null, onMarkerDragEnd: (Marker) -> Unit? = null, onMarkerDragStart: (Marker) -> Unit? = null)

A generic handler for map input. Non-null lambdas will be invoked if no other node was able to handle that input. For example, if OnMarkerClickListener.onMarkerClick was invoked and no matching MarkerNode was found, this onMarkerClick will be invoked.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun MapEffect(key1: Any?, block: suspend CoroutineScope.(GoogleMap) -> Unit)

A side-effect backed by a LaunchedEffect which will launch block and provide the underlying managed GoogleMap object into the composition's CoroutineContext. This effect will be re-launched when a different key1 is provided.

fun MapEffect(vararg keys: Any?, block: suspend CoroutineScope.(GoogleMap) -> Unit)

A side-effect backed by a LaunchedEffect which will launch block and provide the underlying managed GoogleMap object into the composition's CoroutineContext. This effect will be re-launched with any different keys.

fun MapEffect(key1: Any?, key2: Any?, block: suspend CoroutineScope.(GoogleMap) -> Unit)

A side-effect backed by a LaunchedEffect which will launch block and provide the underlying managed GoogleMap object into the composition's CoroutineContext. This effect will be re-launched when a different key1 or key2 is provided.

fun MapEffect(key1: Any?, key2: Any?, key3: Any?, block: suspend CoroutineScope.(GoogleMap) -> Unit)

A side-effect backed by a LaunchedEffect which will launch block and provide the underlying managed GoogleMap object into the composition's CoroutineContext. This effect will be re-launched when a different key1, key2, or key3 is provided.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun Marker(state: MarkerState = rememberUpdatedMarkerState(), contentDescription: String? = "", alpha: Float = 1.0f, anchor: Offset = Offset(0.5f, 1.0f), draggable: Boolean = false, flat: Boolean = false, icon: BitmapDescriptor? = null, infoWindowAnchor: Offset = Offset(0.5f, 0.0f), rotation: Float = 0.0f, snippet: String? = null, tag: Any? = null, title: String? = null, visible: Boolean = true, zIndex: Float = 0.0f, onClick: (Marker) -> Boolean = { false }, onInfoWindowClick: (Marker) -> Unit = {}, onInfoWindowClose: (Marker) -> Unit = {}, onInfoWindowLongClick: (Marker) -> Unit = {})

A composable for a marker on the map.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun MarkerComposable(vararg keys: Any, state: MarkerState = rememberUpdatedMarkerState(), contentDescription: String? = "", alpha: Float = 1.0f, anchor: Offset = Offset(0.5f, 1.0f), draggable: Boolean = false, flat: Boolean = false, infoWindowAnchor: Offset = Offset(0.5f, 0.0f), rotation: Float = 0.0f, snippet: String? = null, tag: Any? = null, title: String? = null, visible: Boolean = true, zIndex: Float = 0.0f, onClick: (Marker) -> Boolean = { false }, onInfoWindowClick: (Marker) -> Unit = {}, onInfoWindowClose: (Marker) -> Unit = {}, onInfoWindowLongClick: (Marker) -> Unit = {}, content: @Composable () -> Unit)

Composable rendering the content passed as a marker.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun MarkerInfoWindow(state: MarkerState = rememberUpdatedMarkerState(), alpha: Float = 1.0f, anchor: Offset = Offset(0.5f, 1.0f), draggable: Boolean = false, contentDescription: String? = "", flat: Boolean = false, icon: BitmapDescriptor? = null, infoWindowAnchor: Offset = Offset(0.5f, 0.0f), rotation: Float = 0.0f, snippet: String? = null, tag: Any? = null, title: String? = null, visible: Boolean = true, zIndex: Float = 0.0f, onClick: (Marker) -> Boolean = { false }, onInfoWindowClick: (Marker) -> Unit = {}, onInfoWindowClose: (Marker) -> Unit = {}, onInfoWindowLongClick: (Marker) -> Unit = {}, content: @Composable (Marker) -> Unit? = null)

A composable for a marker on the map wherein its entire info window can be customized. If this customization is not required, use com.google.maps.android.compose.Marker.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun MarkerInfoWindowComposable(vararg keys: Any, state: MarkerState = rememberUpdatedMarkerState(), alpha: Float = 1.0f, anchor: Offset = Offset(0.5f, 1.0f), draggable: Boolean = false, flat: Boolean = false, infoWindowAnchor: Offset = Offset(0.5f, 0.0f), rotation: Float = 0.0f, snippet: String? = null, tag: Any? = null, title: String? = null, visible: Boolean = true, zIndex: Float = 0.0f, onClick: (Marker) -> Boolean = { false }, onInfoWindowClick: (Marker) -> Unit = {}, onInfoWindowClose: (Marker) -> Unit = {}, onInfoWindowLongClick: (Marker) -> Unit = {}, infoContent: @Composable (Marker) -> Unit? = null, content: @Composable () -> Unit)

A composable for a marker on the map wherein its entire info window and the marker itself can be customized. If this customization is not required, use com.google.maps.android.compose.Marker.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun MarkerInfoWindowContent(state: MarkerState = rememberUpdatedMarkerState(), alpha: Float = 1.0f, anchor: Offset = Offset(0.5f, 1.0f), draggable: Boolean = false, flat: Boolean = false, icon: BitmapDescriptor? = null, infoWindowAnchor: Offset = Offset(0.5f, 0.0f), rotation: Float = 0.0f, snippet: String? = null, tag: Any? = null, title: String? = null, visible: Boolean = true, zIndex: Float = 0.0f, onClick: (Marker) -> Boolean = { false }, onInfoWindowClick: (Marker) -> Unit = {}, onInfoWindowClose: (Marker) -> Unit = {}, onInfoWindowLongClick: (Marker) -> Unit = {}, content: @Composable (Marker) -> Unit? = null)

A composable for a marker on the map wherein its info window contents can be customized. If this customization is not required, use com.google.maps.android.compose.Marker.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun Polygon(points: List<LatLng>, clickable: Boolean = false, fillColor: Color = Color.Black, geodesic: Boolean = false, holes: List<List<LatLng>> = emptyList(), strokeColor: Color = Color.Black, strokeJointType: Int = JointType.DEFAULT, strokePattern: List<PatternItem>? = null, strokeWidth: Float = 10.0f, tag: Any? = null, visible: Boolean = true, zIndex: Float = 0.0f, onClick: (Polygon) -> Unit = {})

A composable for a polygon on the map.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun Polyline(points: List<LatLng>, clickable: Boolean = false, color: Color = Color.Black, endCap: Cap = ButtCap(), geodesic: Boolean = false, jointType: Int = JointType.DEFAULT, pattern: List<PatternItem>? = null, startCap: Cap = ButtCap(), tag: Any? = null, visible: Boolean = true, width: Float = 10.0f, zIndex: Float = 0.0f, onClick: (Polyline) -> Unit = {})

A composable for a polyline on the map.

fun Polyline(points: List<LatLng>, spans: List<StyleSpan>, clickable: Boolean = false, endCap: Cap = ButtCap(), geodesic: Boolean = false, jointType: Int = JointType.DEFAULT, pattern: List<PatternItem>? = null, startCap: Cap = ButtCap(), tag: Any? = null, visible: Boolean = true, width: Float = 10.0f, zIndex: Float = 0.0f, onClick: (Polyline) -> Unit = {})

A composable for a polyline on the map that supports a StyleSpan.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Creates and remembers a CameraPositionState using rememberSaveable.

inline fun rememberCameraPositionState(key: String? = null, crossinline init: CameraPositionState.() -> Unit = {}): CameraPositionState

Create and rememberSaveable a CameraPositionState using CameraPositionState.Saver. init will be called when the CameraPositionState is first created to configure its initial state. Remember that the camera state can be applied when the map has been loaded.

+
+
+
+
+ + + +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun rememberMarkerState(key: String? = null, position: LatLng = LatLng(0.0, 0.0)): MarkerState

Uses rememberSaveable to retain MarkerState.position across configuration changes, for simple use cases.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns a lambda that, when invoked, will reattach click listeners set by the MapApplier on the GoogleMap. Used for working around other functionality that modifies those click listeners, such as clustering.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+ +
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun rememberUpdatedMarkerState(position: LatLng = LatLng(0.0, 0.0)): MarkerState

This function updates the state value according to the update of the input parameter, like 'rememberUpdatedState'.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun TileOverlay(tileProvider: TileProvider, state: TileOverlayState = rememberTileOverlayState(), fadeIn: Boolean = true, transparency: Float = 0.0f, visible: Boolean = true, zIndex: Float = 0.0f, onClick: (TileOverlay) -> Unit = {})

A composable for a tile overlay on the map.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/remember-camera-position-state.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/remember-camera-position-state.html new file mode 100644 index 00000000..6158629c --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/remember-camera-position-state.html @@ -0,0 +1,118 @@ + + + + + rememberCameraPositionState + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

rememberCameraPositionState

+
+

Creates and remembers a CameraPositionState using rememberSaveable.

The camera position state is saved across configuration changes and process death, ensuring the map retains its last position.

Parameters

init

A lambda that is called when the CameraPositionState is first created to configure its initial state, such as its position or zoom level.


inline fun rememberCameraPositionState(key: String? = null, crossinline init: CameraPositionState.() -> Unit = {}): CameraPositionState

Deprecated

The 'key' parameter is deprecated. Please use the new `rememberCameraPositionState` function without a key.

Replace with

import com.google.maps.android.compose.rememberCameraPositionState
rememberCameraPositionState(init)

Create and rememberSaveable a CameraPositionState using CameraPositionState.Saver. init will be called when the CameraPositionState is first created to configure its initial state. Remember that the camera state can be applied when the map has been loaded.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/remember-compose-ui-view-renderer.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/remember-compose-ui-view-renderer.html new file mode 100644 index 00000000..dc9edcdf --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/remember-compose-ui-view-renderer.html @@ -0,0 +1,118 @@ + + + + + rememberComposeUiViewRenderer + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

rememberComposeUiViewRenderer

+
+ +
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/remember-marker-state.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/remember-marker-state.html new file mode 100644 index 00000000..7ac95ba7 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/remember-marker-state.html @@ -0,0 +1,122 @@ + + + + + rememberMarkerState + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

rememberMarkerState

+
+
fun rememberMarkerState(key: String? = null, position: LatLng = LatLng(0.0, 0.0)): MarkerState

Deprecated

Use 'rememberUpdatedMarkerState' instead - It may be confusing to think that the state is automatically updated as the position changes, so it will be changed or removed.

Replace with


+            val markerState = rememberSaveable(key = key, saver = MarkerState.Saver) {
+                MarkerState(position)
+            }
+        

Uses rememberSaveable to retain MarkerState.position across configuration changes, for simple use cases.

Other use cases may be better served syncing MarkerState.position with a data model.

This cannot be used to preserve info window visibility across configuration changes.

This function does not automatically update the MarkerState when the input parameters change. If you need this implementation, use 'rememberUpdatedMarkerState'.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/remember-reattach-click-listeners-handle.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/remember-reattach-click-listeners-handle.html new file mode 100644 index 00000000..c838f74d --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/remember-reattach-click-listeners-handle.html @@ -0,0 +1,118 @@ + + + + + rememberReattachClickListenersHandle + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

rememberReattachClickListenersHandle

+
+

Returns a lambda that, when invoked, will reattach click listeners set by the MapApplier on the GoogleMap. Used for working around other functionality that modifies those click listeners, such as clustering.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/remember-tile-overlay-state.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/remember-tile-overlay-state.html new file mode 100644 index 00000000..cd237962 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/remember-tile-overlay-state.html @@ -0,0 +1,118 @@ + + + + + rememberTileOverlayState + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

rememberTileOverlayState

+
+ +
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/remember-updated-marker-state.html b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/remember-updated-marker-state.html new file mode 100644 index 00000000..f33cf390 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/com.google.maps.android.compose/remember-updated-marker-state.html @@ -0,0 +1,118 @@ + + + + + rememberUpdatedMarkerState + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

rememberUpdatedMarkerState

+
+
fun rememberUpdatedMarkerState(position: LatLng = LatLng(0.0, 0.0)): MarkerState

This function updates the state value according to the update of the input parameter, like 'rememberUpdatedState'.

This cannot be used to preserve state across configuration changes.

+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/index.html b/docs/build/dokka/html/maps-compose/index.html new file mode 100644 index 00000000..5f04118e --- /dev/null +++ b/docs/build/dokka/html/maps-compose/index.html @@ -0,0 +1,173 @@ + + + + + maps-compose + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+

maps-compose

+
+

Packages

+
+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+ +
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+ +
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/build/dokka/html/maps-compose/navigation.html b/docs/build/dokka/html/maps-compose/navigation.html new file mode 100644 index 00000000..38ff7687 --- /dev/null +++ b/docs/build/dokka/html/maps-compose/navigation.html @@ -0,0 +1,447 @@ +
+
+ +
+ + +
+ +
+
+ Companion +
+
+
+
+ UNKNOWN +
+
+
+ +
+
+
+ GESTURE +
+
+
+ +
+ +
+ +
+
+ Circle() +
+
+
+ +
+
+ LIGHT +
+
+
+
+ DARK +
+
+
+ +
+
+ + + + + + +
+ +
+
+ START +
+
+
+
+ DRAG +
+
+
+
+ END +
+
+
+
+ +
+ + + +
+ +
+ + +
+ +
+
+ +
+
+ +
+ +
+ +
+
+ NONE +
+
+
+
+ NORMAL +
+
+
+
+ SATELLITE +
+
+
+
+ TERRAIN +
+
+
+
+ HYBRID +
+
+
+
+ +
+
+
+ Marker() +
+
+ + + + + +
+
+ Polygon() +
+
+
+ +
+ + + + + + +
+ +
+ +
+ + +
+ + +
diff --git a/docs/build/dokka/html/navigation.html b/docs/build/dokka/html/navigation.html new file mode 100644 index 00000000..9e70e950 --- /dev/null +++ b/docs/build/dokka/html/navigation.html @@ -0,0 +1,447 @@ +
+
+ +
+ + +
+ +
+
+ Companion +
+
+
+
+ UNKNOWN +
+
+
+ +
+
+
+ GESTURE +
+
+
+ +
+ +
+ +
+
+ Circle() +
+
+
+ +
+
+ LIGHT +
+
+
+
+ DARK +
+
+
+ +
+
+ + + + + + +
+ +
+
+ START +
+
+
+
+ DRAG +
+
+
+
+ END +
+
+
+
+ +
+ + + +
+ +
+ + +
+ +
+
+ +
+
+ +
+ +
+ +
+
+ NONE +
+
+
+
+ NORMAL +
+
+
+
+ SATELLITE +
+
+
+
+ TERRAIN +
+
+
+
+ HYBRID +
+
+
+
+ +
+
+
+ Marker() +
+
+ + + + + +
+
+ Polygon() +
+
+
+ +
+ + + + + + +
+ +
+ +
+ + +
+ + +
diff --git a/docs/build/dokka/html/package-list b/docs/build/dokka/html/package-list new file mode 100644 index 00000000..c40abd71 --- /dev/null +++ b/docs/build/dokka/html/package-list @@ -0,0 +1,11 @@ +$dokka.format:html-v1 +$dokka.linkExtension:html + +module:maps-compose +com.google.maps.android.compose +com.google.maps.android.compose.internal +com.google.maps.android.compose.streetview +module:maps-compose-utils +com.google.maps.android.compose.clustering +module:maps-compose-widgets +com.google.maps.android.compose.widgets diff --git a/docs/build/dokka/html/scripts/main.js b/docs/build/dokka/html/scripts/main.js new file mode 100644 index 00000000..a38279f9 --- /dev/null +++ b/docs/build/dokka/html/scripts/main.js @@ -0,0 +1,45 @@ +(()=>{var e={1817:e=>{e.exports=''},4811:e=>{e.exports=''},5742:e=>{e.exports=''},7112:e=>{e.exports=''},8420:e=>{e.exports=''},7004:e=>{e.exports=''},7222:(e,n,t)=>{"use strict";t.r(n),t.d(n,{default:()=>s});var r=t(1404),o=t.n(r),i=t(7156),a=t.n(i),l=t(5280),c=a()(o());c.i(l.A),c.push([e.id,'.avatar_d716 {\n display: inline-block;\n -o-object-fit: cover;\n object-fit: cover;\n -o-object-position: center;\n object-position: center;\n\n /* This is a "graceful degradation" fallback, while the real value is controlled by JS */\n\n border-radius: var(--ring-border-radius);\n}\n\n.subavatar_b10d {\n position: absolute;\n top: 15px;\n left: 27px;\n\n border: 1px var(--ring-content-background-color) solid;\n}\n\n.empty_a151 {\n display: inline-block;\n\n box-sizing: border-box;\n\n border: 1px solid var(--ring-borders-color);\n}\n',"",{version:3,sources:["webpack://./node_modules/@jetbrains/ring-ui/components/avatar/avatar.css"],names:[],mappings:"AAEA;EACE,qBAAqB;EACrB,oBAAiB;KAAjB,iBAAiB;EACjB,0BAAuB;KAAvB,uBAAuB;;EAEvB,wFAAwF;;EAExF,wCAAwC;AAC1C;;AAEA;EACE,kBAAkB;EAClB,SAAS;EACT,UAAU;;EAEV,sDAAsD;AACxD;;AAEA;EACE,qBAAqB;;EAErB,sBAAsB;;EAEtB,2CAA2C;AAC7C",sourcesContent:['@import "../global/variables.css";\n\n.avatar {\n display: inline-block;\n object-fit: cover;\n object-position: center;\n\n /* This is a "graceful degradation" fallback, while the real value is controlled by JS */\n\n border-radius: var(--ring-border-radius);\n}\n\n.subavatar {\n position: absolute;\n top: 15px;\n left: 27px;\n\n border: 1px var(--ring-content-background-color) solid;\n}\n\n.empty {\n display: inline-block;\n\n box-sizing: border-box;\n\n border: 1px solid var(--ring-borders-color);\n}\n'],sourceRoot:""}]),c.locals={avatar:"avatar_d716",subavatar:"subavatar_b10d",empty:"empty_a151"};const s=c},9892:(e,n,t)=>{"use strict";t.r(n),t.d(n,{default:()=>u});var r=t(1404),o=t.n(r),i=t(7156),a=t.n(i),l=t(9106),c=t(5280),s=a()(o());s.i(c.A),s.i(l.default,"",!0),s.push([e.id,'.heightS_b28d {\n --ring-button-height: 24px;\n --ring-button-font-size: var(--ring-font-size-smaller);\n}\n\n.heightM_dfd3 {\n --ring-button-height: 28px;\n --ring-button-font-size: var(--ring-font-size);\n}\n\n.heightL_a4d3 {\n --ring-button-height: 32px;\n --ring-button-font-size: var(--ring-font-size);\n}\n\n.button_aba4 {\n position: relative;\n\n display: inline-block;\n\n box-sizing: border-box;\n height: var(--ring-button-height);\n margin: 0;\n padding: 0 16px;\n\n cursor: pointer;\n transition: color var(--ring-ease), background-color var(--ring-ease), box-shadow var(--ring-ease);\n text-decoration: none;\n\n color: var(--ring-text-color);\n\n border: 0;\n border-radius: var(--ring-border-radius);\n outline: 0;\n background-color: var(--ring-content-background-color);\n box-shadow: inset 0 0 0 1px var(--ring-borders-color);\n\n font-family: var(--ring-font-family);\n font-size: var(--ring-button-font-size);\n\n line-height: var(--ring-button-height);\n}\n\n@media (hover: hover), (-moz-touch-enabled: 0), (-ms-high-contrast: none), (-ms-high-contrast: active) {.button_aba4:hover {\n transition: none;\n\n box-shadow: inset 0 0 0 1px var(--ring-border-hover-color);\n }}\n\n.button_aba4:active {\n transition: none;\n\n background-color: var(--ring-selected-background-color);\n box-shadow: inset 0 0 0 1px var(--ring-border-hover-color);\n }\n\n.button_aba4:focus-visible {\n transition: none;\n\n box-shadow: inset 0 0 0 1px var(--ring-border-hover-color), 0 0 0 1px var(--ring-border-hover-color);\n }\n\n.button_aba4.active_bbe6 {\n transition: none;\n\n background-color: var(--ring-hover-background-color);\n box-shadow: inset 0 0 0 1px var(--ring-main-color);\n }\n\n.button_aba4.active_bbe6:focus-visible {\n box-shadow: inset 0 0 0 2px var(--ring-main-color), 0 0 0 1px var(--ring-border-hover-color);\n }\n\n.button_aba4[disabled] {\n pointer-events: none;\n\n background-color: var(--ring-disabled-background-color);\n box-shadow: inset 0 0 0 1px var(--ring-border-disabled-color);\n }\n\n.button_aba4.active_bbe6[disabled] {\n background-color: var(--ring-disabled-selected-background-color);\n box-shadow: inset 0 0 0 1px var(--ring-border-selected-disabled-color);\n }\n\n.button_aba4[disabled],\n .button_aba4.withIcon_ef77[disabled] {\n color: var(--ring-disabled-color);\n }\n\n.button_aba4[disabled] .icon_e878 {\n color: var(--ring-icon-disabled-color);\n }\n\n.button_aba4::-moz-focus-inner {\n padding: 0;\n\n border: 0;\n outline: 0;\n }\n\n.withIcon_ef77 {\n color: var(--ring-secondary-color);\n}\n\n.primary_ddae {\n color: var(--ring-white-text-color);\n background-color: var(--ring-main-color);\n box-shadow: none;\n}\n\n@media (hover: hover), (-moz-touch-enabled: 0), (-ms-high-contrast: none), (-ms-high-contrast: active) {.primary_ddae:hover {\n transition: none;\n\n background-color: var(--ring-main-hover-color);\n box-shadow: none;\n }}\n\n.primary_ddae.withIcon_ef77,\n .primary_ddae.withIcon_ef77:active,\n .primary_ddae.withIcon_ef77.active_bbe6 {\n color: var(--ring-action-link-color);\n }\n\n.primary_ddae:focus-visible,\n .primary_ddae:active,\n .primary_ddae.active_bbe6 {\n background-color: var(--ring-button-primary-background-color);\n }\n\n.primary_ddae:active,\n .primary_ddae.active_bbe6 {\n box-shadow: inset 0 0 0 1px var(--ring-button-primary-border-color);\n }\n\n.primary_ddae[disabled] {\n background-color: var(--ring-disabled-background-color);\n box-shadow: inset 0 0 0 1px var(--ring-border-disabled-color);\n }\n\n.primary_ddae.loader_cbfc[disabled] {\n color: var(--ring-white-text-color);\n }\n\n.primary_ddae .loaderBackground_d9f5 {\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n\n border-radius: var(--ring-border-radius);\n }\n\n.primary_ddae .loaderBackground_d9f5::before {\n background-image:\n linear-gradient(\n to right,\n var(--ring-main-color),\n var(--ring-button-loader-background) 40%,\n var(--ring-main-color) 80%\n );\n }\n\n@media (hover: hover), (-moz-touch-enabled: 0), (-ms-high-contrast: none), (-ms-high-contrast: active) {.danger_bcea:hover {\n transition: none;\n }}\n\n@media (hover: hover), (-moz-touch-enabled: 0), (-ms-high-contrast: none), (-ms-high-contrast: active) {.danger_bcea:hover {\n box-shadow: inset 0 0 0 1px var(--ring-button-danger-hover-color);\n }}\n\n.danger_bcea,\n .danger_bcea.withIcon_ef77,\n .danger_bcea.withIcon_ef77:active,\n .danger_bcea.withIcon_ef77.active_bbe6,\n .danger_bcea.text_fc2a,\n .danger_bcea.text_fc2a:active,\n .danger_bcea.text_fc2a.active_bbe6 {\n color: var(--ring-error-color);\n }\n\n.danger_bcea:active,\n .danger_bcea.active_bbe6 {\n background-color: var(--ring-button-danger-active-color);\n }\n\n.danger_bcea:active,\n .danger_bcea.active_bbe6,\n .danger_bcea:focus-visible {\n box-shadow: inset 0 0 0 1px var(--ring-button-danger-hover-color);\n }\n\n.danger_bcea:focus-visible {\n transition: none;\n }\n\n.text_fc2a.text_fc2a,\n.withIcon_ef77.withIcon_ef77 {\n background-color: transparent;\n box-shadow: none;\n}\n\n@media (hover: hover), (-moz-touch-enabled: 0), (-ms-high-contrast: none), (-ms-high-contrast: active) {.text_fc2a.text_fc2a:hover, .withIcon_ef77.withIcon_ef77:hover {\n transition: none;\n }}\n\n.text_fc2a.text_fc2a:active,\n .withIcon_ef77.withIcon_ef77:active,\n .text_fc2a.text_fc2a.active_bbe6,\n .withIcon_ef77.withIcon_ef77.active_bbe6 {\n background-color: transparent;\n box-shadow: none;\n }\n\n.text_fc2a.text_fc2a:focus-visible, .withIcon_ef77.withIcon_ef77:focus-visible {\n box-shadow: inset 0 0 0 2px var(--ring-border-hover-color);\n }\n\n.loader_cbfc.text_fc2a > .content_b2b8 {\n animation-name: text-loading_d1b4;\n animation-duration: 1200ms;\n animation-iteration-count: infinite;\n}\n\n@media (hover: hover), (-moz-touch-enabled: 0), (-ms-high-contrast: none), (-ms-high-contrast: active) {.text_fc2a.text_fc2a:hover {\n background-color: transparent;\n box-shadow: none;\n}}\n\n@media (hover: hover), (-moz-touch-enabled: 0), (-ms-high-contrast: none), (-ms-high-contrast: active) {.withIcon_ef77:hover:not(:focus-visible) {\n background-color: transparent;\n box-shadow: none;\n}}\n\n.text_fc2a {\n color: var(--ring-action-link-color);\n}\n\n.inline_b4a2 {\n display: inline-block;\n\n margin: 0;\n padding: 0;\n\n font-size: var(--ring-font-size);\n}\n\n.withIcon_ef77 {\n padding: 0 8px;\n}\n\n.text_fc2a:active,\n .text_fc2a.active_bbe6 {\n color: var(--ring-link-hover-color);\n }\n\n.withIcon_ef77:active,\n .withIcon_ef77.active_bbe6 {\n color: var(--ring-action-link-color);\n }\n\n@media (hover: hover), (-moz-touch-enabled: 0), (-ms-high-contrast: none), (-ms-high-contrast: active) {.withIcon_ef77:hover {\n color: var(--ring-link-hover-color);\n}}\n\n@media (hover: hover), (-moz-touch-enabled: 0), (-ms-high-contrast: none), (-ms-high-contrast: active) {.text_fc2a:hover {\n color: var(--ring-link-hover-color);\n}}\n\n.icon_e878 {\n color: inherit;\n\n line-height: normal;\n}\n\n.icon_e878:not(:last-child) {\n margin-right: 4px;\n }\n\n.withNormalIcon_aaca .icon_e878 {\n transition: color var(--ring-ease);\n\n color: var(--ring-icon-color);\n}\n\n.withNormalIcon_aaca:active,\n.withNormalIcon_aaca.active_bbe6 {\n color: var(--ring-main-color);\n}\n\n.withNormalIcon_aaca:active .icon_e878, .withNormalIcon_aaca.active_bbe6 .icon_e878 {\n transition: none;\n\n color: inherit;\n }\n\n@media (hover: hover), (-moz-touch-enabled: 0), (-ms-high-contrast: none), (-ms-high-contrast: active) {.withNormalIcon_aaca:hover .icon_e878,\n.withDangerIcon_e3ca:hover .icon_e878 {\n transition: none;\n\n color: inherit;\n}}\n\n.withDangerIcon_e3ca .icon_e878,\n.withDangerIcon_e3ca:active .icon_e878 {\n color: var(--ring-icon-error-color);\n}\n\n.loader_cbfc {\n position: relative;\n z-index: 0;\n\n pointer-events: none;\n\n background-color: transparent;\n}\n\n.loaderBackground_d9f5 {\n position: absolute;\n z-index: -1;\n top: 1px;\n right: 1px;\n bottom: 1px;\n left: 1px;\n\n overflow: hidden;\n\n border-radius: var(--ring-border-radius-small);\n}\n\n.loaderBackground_d9f5::before {\n display: block;\n\n width: calc(100% + 64px);\n height: 100%;\n\n content: "";\n animation: progress_ed8f 1s linear infinite;\n\n background-image:\n linear-gradient(\n to right,\n var(--ring-content-background-color),\n var(--ring-selected-background-color) 40%,\n var(--ring-content-background-color) 80%\n );\n\n background-repeat: repeat;\n background-size: 64px;\n }\n\n.delayed_d562 .content_b2b8::after {\n content: "…";\n}\n\n.short_a07a {\n width: 32px;\n padding: 0;\n}\n\n.dropdownIcon_e982 {\n margin-right: -2px;\n\n margin-left: 2px;\n\n transition: color var(--ring-ease);\n\n color: var(--ring-icon-secondary-color);\n\n line-height: normal;\n}\n\n@media (hover: hover), (-moz-touch-enabled: 0), (-ms-high-contrast: none), (-ms-high-contrast: active) {.button_aba4:hover .dropdownIcon_e982 {\n transition: none;\n\n color: var(--ring-main-color);\n}}\n\n@keyframes progress_ed8f {\n from {\n transform: translateX(-64px);\n }\n\n to {\n transform: translateX(0);\n }\n}\n\n@keyframes text-loading_d1b4 {\n 50% {\n opacity: 0.5;\n }\n}\n',"",{version:3,sources:["webpack://./node_modules/@jetbrains/ring-ui/components/button/button.css",""],names:[],mappings:"AAOA;EACE,0BAAoC;EACpC,sDAAsD;AACxD;;AAEA;EACE,0BAAsC;EACtC,8CAA8C;AAChD;;AAEA;EACE,0BAAoC;EACpC,8CAA8C;AAChD;;AAEA;EACE,kBAAkB;;EAElB,qBAAqB;;EAErB,sBAAsB;EACtB,iCAAc;EACd,SAAS;EACT,eAAyB;;EAEzB,eAAe;EACf,kGAAkG;EAClG,qBAAqB;;EAErB,6BAA6B;;EAE7B,SAAS;EACT,wCAAwC;EACxC,UAAU;EACV,sDAAsD;EACtD,qDAAmD;;EAEnD,oCAAoC;EACpC,uCAAuC;;EAEvC,sCAAmB;AA2DrB;;AC1GA,wGAAA;IAAA,iBAAA;;IAAA,2DAAA;GAAA,CAAA;;ADuDE;IACE,gBAAgB;;IAEhB,uDAAuD;IACvD,0DAAwD;EAC1D;;AAEA;IACE,gBAAgB;;IAEhB,oGAAkG;EACpG;;AAEA;IACE,gBAAgB;;IAEhB,oDAAoD;IACpD,kDAAgD;EAClD;;AAEA;IACE,4FAA4F;EAC9F;;AAEA;IACE,oBAAoB;;IAEpB,uDAAuD;IACvD,6DAA2D;EAC7D;;AAEA;IACE,gEAAgE;IAChE,sEAAoE;EACtE;;AAEA;;IAEE,iCAAiC;EACnC;;AAEA;IACE,sCAAsC;EACxC;;AAEA;IACE,UAAU;;IAEV,SAAS;IACT,UAAU;EACZ;;AAGF;EACE,kCAAkC;AACpC;;AAEA;EACE,mCAAmC;EACnC,wCAAwC;EACxC,gBAAgB;AAqDlB;;ACxKA,wGAAA;IAAA,iBAAA;;IAAA,+CAAA;IAAA,iBAAA;GAAA,CAAA;;AD4HE;;;IAGE,oCAAoC;EACtC;;AAEA;;;IAGE,6DAA6D;EAC/D;;AAEA;;IAEE,mEAAiE;EACnE;;AAEA;IACE,uDAAuD;IACvD,6DAA2D;EAC7D;;AAEA;IACE,mCAAmC;EACrC;;AAEA;IACE,MAAM;IACN,QAAQ;IACR,SAAS;IACT,OAAO;;IAEP,wCAAwC;EAW1C;;AATE;MACE;;;;;;SAMG;IACL;;ACtKJ,wGAAA;IAAA,iBAAA;GAAA,CAAA;;AAAA,wGAAA;IAAA,kEAAA;GAAA,CAAA;;AD2KE;;;;;;;IAOE,8BAA8B;EAChC;;AAEA;;IAEE,wDAAwD;EAC1D;;AAEA;;;IAIE,iEAA+D;EACjE;;AAEA;IAEE,gBAAgB;EAClB;;AAGF;;EAEE,6BAA6B;EAC7B,gBAAgB;AAelB;;ACzNA,wGAAA;IAAA,iBAAA;GAAA,CAAA;;ADgNE;;;;IAEE,6BAA6B;IAC7B,gBAAgB;EAClB;;AAEA;IACE,0DAA0D;EAC5D;;AAGF;EACE,iCAA4B;EAC5B,0BAA0B;EAC1B,mCAAmC;AACrC;;AC/NA,wGAAA;EAAA,8BAAA;EAAA,iBAAA;CAAA,CAAA;;AAAA,wGAAA;EAAA,8BAAA;EAAA,iBAAA;CAAA,CAAA;;AD2OA;EACE,oCAAoC;AACtC;;AAEA;EACE,qBAAqB;;EAErB,SAAS;EACT,UAAU;;EAEV,gCAAgC;AAClC;;AAEA;EACE,cAAe;AACjB;;AAGE;;IAEE,mCAAmC;EACrC;;AAIA;;IAEE,oCAAoC;EACtC;;ACvQF,wGAAA;EAAA,oCAAA;CAAA,CAAA;;AAAA,wGAAA;EAAA,oCAAA;CAAA,CAAA;;ADkRA;EACE,cAAc;;EAEd,mBAAmB;AAKrB;;AAHE;IACE,iBAA8B;EAChC;;AAGF;EACE,kCAAkC;;EAElC,6BAA6B;AAC/B;;AAEA;;EAEE,6BAA6B;AAO/B;;AALE;IACE,gBAAgB;;IAEhB,cAAc;EAChB;;AC1SF,wGAAA;;EAAA,iBAAA;;EAAA,eAAA;CAAA,CAAA;;ADoTA;;EAEE,mCAAmC;AACrC;;AAEA;EACE,kBAAkB;EAClB,UAAU;;EAEV,oBAAoB;;EAEpB,6BAA6B;AAC/B;;AAEA;EACE,kBAAkB;EAClB,WAAW;EACX,QAAQ;EACR,UAAU;EACV,WAAW;EACX,SAAS;;EAET,gBAAgB;;EAEhB,8CAA8C;AAsBhD;;AApBE;IACE,cAAc;;IAEd,wBAA+B;IAC/B,YAAY;;IAEZ,WAAW;IACX,2CAAsC;;IAEtC;;;;;;OAMG;;IAEH,yBAAyB;IACzB,qBAA4B;EAC9B;;AAGF;EACE,YAAY;AACd;;AAEA;EACE,WAAqB;EACrB,UAAU;AACZ;;AAEA;EACE,kBAAkB;;EAElB,gBAAgB;;EAEhB,kCAAkC;;EAElC,uCAAuC;;EAEvC,mBAAmB;AACrB;;ACvXA,wGAAA;EAAA,iBAAA;;EAAA,8BAAA;CAAA,CAAA;;AD+XA;EACE;IACE,4BAA4C;EAC9C;;EAEA;IACE,wBAAwB;EAC1B;AACF;;AAEA;EACE;IACE,YAAY;EACd;AACF",sourcesContent:['@import "../global/variables.css";\n\n@value unit from "../global/global.css";\n@value button-shadow: inset 0 0 0 1px;\n@value height: var(--ring-button-height);\n@value loaderWidth: calc(unit * 8);\n\n.heightS {\n --ring-button-height: calc(unit * 3);\n --ring-button-font-size: var(--ring-font-size-smaller);\n}\n\n.heightM {\n --ring-button-height: calc(unit * 3.5);\n --ring-button-font-size: var(--ring-font-size);\n}\n\n.heightL {\n --ring-button-height: calc(unit * 4);\n --ring-button-font-size: var(--ring-font-size);\n}\n\n.button {\n position: relative;\n\n display: inline-block;\n\n box-sizing: border-box;\n height: height;\n margin: 0;\n padding: 0 calc(unit * 2);\n\n cursor: pointer;\n transition: color var(--ring-ease), background-color var(--ring-ease), box-shadow var(--ring-ease);\n text-decoration: none;\n\n color: var(--ring-text-color);\n\n border: 0;\n border-radius: var(--ring-border-radius);\n outline: 0;\n background-color: var(--ring-content-background-color);\n box-shadow: button-shadow var(--ring-borders-color);\n\n font-family: var(--ring-font-family);\n font-size: var(--ring-button-font-size);\n\n line-height: height;\n\n &:hover {\n transition: none;\n\n box-shadow: button-shadow var(--ring-border-hover-color);\n }\n\n &:active {\n transition: none;\n\n background-color: var(--ring-selected-background-color);\n box-shadow: button-shadow var(--ring-border-hover-color);\n }\n\n &:focus-visible {\n transition: none;\n\n box-shadow: button-shadow var(--ring-border-hover-color), 0 0 0 1px var(--ring-border-hover-color);\n }\n\n &.active {\n transition: none;\n\n background-color: var(--ring-hover-background-color);\n box-shadow: button-shadow var(--ring-main-color);\n }\n\n &:focus-visible.active {\n box-shadow: inset 0 0 0 2px var(--ring-main-color), 0 0 0 1px var(--ring-border-hover-color);\n }\n\n &[disabled] {\n pointer-events: none;\n\n background-color: var(--ring-disabled-background-color);\n box-shadow: button-shadow var(--ring-border-disabled-color);\n }\n\n &[disabled].active {\n background-color: var(--ring-disabled-selected-background-color);\n box-shadow: button-shadow var(--ring-border-selected-disabled-color);\n }\n\n &[disabled],\n &[disabled].withIcon {\n color: var(--ring-disabled-color);\n }\n\n &[disabled] .icon {\n color: var(--ring-icon-disabled-color);\n }\n\n &::-moz-focus-inner {\n padding: 0;\n\n border: 0;\n outline: 0;\n }\n}\n\n.withIcon {\n color: var(--ring-secondary-color);\n}\n\n.primary {\n color: var(--ring-white-text-color);\n background-color: var(--ring-main-color);\n box-shadow: none;\n\n &:hover {\n transition: none;\n\n background-color: var(--ring-main-hover-color);\n box-shadow: none;\n }\n\n &.withIcon,\n &.withIcon:active,\n &.withIcon.active {\n color: var(--ring-action-link-color);\n }\n\n &:focus-visible,\n &:active,\n &.active {\n background-color: var(--ring-button-primary-background-color);\n }\n\n &:active,\n &.active {\n box-shadow: button-shadow var(--ring-button-primary-border-color);\n }\n\n &[disabled] {\n background-color: var(--ring-disabled-background-color);\n box-shadow: button-shadow var(--ring-border-disabled-color);\n }\n\n &[disabled].loader {\n color: var(--ring-white-text-color);\n }\n\n & .loaderBackground {\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n\n border-radius: var(--ring-border-radius);\n\n &::before {\n background-image:\n linear-gradient(\n to right,\n var(--ring-main-color),\n var(--ring-button-loader-background) 40%,\n var(--ring-main-color) 80%\n );\n }\n }\n}\n\n.danger {\n &,\n &.withIcon,\n &.withIcon:active,\n &.withIcon.active,\n &.text,\n &.text:active,\n &.text.active {\n color: var(--ring-error-color);\n }\n\n &:active,\n &.active {\n background-color: var(--ring-button-danger-active-color);\n }\n\n &:active,\n &.active,\n &:focus-visible,\n &:hover {\n box-shadow: button-shadow var(--ring-button-danger-hover-color);\n }\n\n &:focus-visible,\n &:hover {\n transition: none;\n }\n}\n\n.text.text,\n.withIcon.withIcon {\n background-color: transparent;\n box-shadow: none;\n\n &:hover {\n transition: none;\n }\n\n &:active,\n &.active {\n background-color: transparent;\n box-shadow: none;\n }\n\n &:focus-visible {\n box-shadow: inset 0 0 0 2px var(--ring-border-hover-color);\n }\n}\n\n.loader.text > .content {\n animation-name: text-loading;\n animation-duration: 1200ms;\n animation-iteration-count: infinite;\n}\n\n.text.text:hover {\n background-color: transparent;\n box-shadow: none;\n}\n\n.withIcon:hover:not(:focus-visible) {\n background-color: transparent;\n box-shadow: none;\n}\n\n.text {\n color: var(--ring-action-link-color);\n}\n\n.inline {\n display: inline-block;\n\n margin: 0;\n padding: 0;\n\n font-size: var(--ring-font-size);\n}\n\n.withIcon {\n padding: 0 unit;\n}\n\n.text {\n &:active,\n &.active {\n color: var(--ring-link-hover-color);\n }\n}\n\n.withIcon {\n &:active,\n &.active {\n color: var(--ring-action-link-color);\n }\n}\n\n.withIcon:hover {\n color: var(--ring-link-hover-color);\n}\n\n.text:hover {\n color: var(--ring-link-hover-color);\n}\n\n.icon {\n color: inherit;\n\n line-height: normal;\n\n &:not(:last-child) {\n margin-right: calc(unit * 0.5);\n }\n}\n\n.withNormalIcon .icon {\n transition: color var(--ring-ease);\n\n color: var(--ring-icon-color);\n}\n\n.withNormalIcon:active,\n.withNormalIcon.active {\n color: var(--ring-main-color);\n\n & .icon {\n transition: none;\n\n color: inherit;\n }\n}\n\n.withNormalIcon:hover .icon,\n.withDangerIcon:hover .icon {\n transition: none;\n\n color: inherit;\n}\n\n.withDangerIcon .icon,\n.withDangerIcon:active .icon {\n color: var(--ring-icon-error-color);\n}\n\n.loader {\n position: relative;\n z-index: 0;\n\n pointer-events: none;\n\n background-color: transparent;\n}\n\n.loaderBackground {\n position: absolute;\n z-index: -1;\n top: 1px;\n right: 1px;\n bottom: 1px;\n left: 1px;\n\n overflow: hidden;\n\n border-radius: var(--ring-border-radius-small);\n\n &::before {\n display: block;\n\n width: calc(100% + loaderWidth);\n height: 100%;\n\n content: "";\n animation: progress 1s linear infinite;\n\n background-image:\n linear-gradient(\n to right,\n var(--ring-content-background-color),\n var(--ring-selected-background-color) 40%,\n var(--ring-content-background-color) 80%\n );\n\n background-repeat: repeat;\n background-size: loaderWidth;\n }\n}\n\n.delayed .content::after {\n content: "…";\n}\n\n.short {\n width: calc(unit * 4);\n padding: 0;\n}\n\n.dropdownIcon {\n margin-right: -2px;\n\n margin-left: 2px;\n\n transition: color var(--ring-ease);\n\n color: var(--ring-icon-secondary-color);\n\n line-height: normal;\n}\n\n.button:hover .dropdownIcon {\n transition: none;\n\n color: var(--ring-main-color);\n}\n\n@keyframes progress {\n from {\n transform: translateX(calc(0 - loaderWidth));\n }\n\n to {\n transform: translateX(0);\n }\n}\n\n@keyframes text-loading {\n 50% {\n opacity: 0.5;\n }\n}\n',null],sourceRoot:""}]),s.locals={unit:`${l.default.locals.unit}`,"button-shadow":"inset 0 0 0 1px",height:"var(--ring-button-height)",loaderWidth:"64px",heightS:"heightS_b28d",heightM:"heightM_dfd3",heightL:"heightL_a4d3",button:"button_aba4",active:"active_bbe6",withIcon:"withIcon_ef77",icon:"icon_e878",primary:"primary_ddae",loader:"loader_cbfc",loaderBackground:"loaderBackground_d9f5",danger:"danger_bcea",text:"text_fc2a",content:"content_b2b8","text-loading":"text-loading_d1b4",inline:"inline_b4a2",withNormalIcon:"withNormalIcon_aaca",withDangerIcon:"withDangerIcon_e3ca",progress:"progress_ed8f",delayed:"delayed_d562",short:"short_a07a",dropdownIcon:"dropdownIcon_e982"};const u=s},1866:(e,n,t)=>{"use strict";t.r(n),t.d(n,{default:()=>u});var r=t(1404),o=t.n(r),i=t(7156),a=t.n(i),l=t(9106),c=t(5280),s=a()(o());s.i(c.A),s.i(l.default,"",!0),s.push([e.id,".checkbox_dccf {\n position: relative;\n\n display: inline-block;\n\n text-align: left;\n\n color: var(--ring-text-color);\n outline: none;\n}\n\n@media (hover: hover), (-moz-touch-enabled: 0), (-ms-high-contrast: none), (-ms-high-contrast: active) {.checkbox_dccf:hover .cell_edda {\n transition: background-color var(--ring-ease);\n\n border-color: var(--ring-border-hover-color);\n }}\n\n.cell_edda {\n position: relative;\n top: -2px;\n\n display: inline-block;\n\n box-sizing: border-box;\n width: 14px;\n height: 14px;\n\n -webkit-user-select: none;\n\n -moz-user-select: none;\n\n user-select: none;\n transition: border-color var(--ring-ease), background-color var(--ring-ease), box-shadow var(--ring-ease);\n vertical-align: middle;\n pointer-events: none;\n\n border: 1px solid var(--ring-borders-color);\n border-radius: var(--ring-border-radius-small);\n background-color: var(--ring-content-background-color);\n}\n\n.icon_b476.icon_b476 {\n position: absolute;\n\n top: -1px;\n left: -1px;\n\n width: 16px;\n height: 16px;\n\n opacity: 0;\n color: var(--ring-white-text-color);\n}\n\n.icon_b476.icon_b476 svg {\n position: absolute;\n top: 0;\n left: 0;\n }\n\n.check_a219 {\n}\n\n.minus_de65 {\n}\n\n.input_a330 {\n position: absolute;\n top: 0;\n left: 0;\n\n width: 100%;\n height: 100%;\n margin: 0;\n\n cursor: pointer;\n\n opacity: 0;\n\n /* stylelint-disable-next-line selector-max-specificity */\n}\n\n.input_a330:checked + .cell_edda,\n .input_a330:indeterminate + .cell_edda {\n border-color: transparent;\n background-color: var(--ring-main-color);\n }\n\n/* stylelint-disable-next-line selector-max-specificity */\n\n.input_a330:checked + .cell_edda .check_a219 {\n opacity: 1;\n }\n\n.input_a330:focus-visible + .cell_edda,\n .input_a330.focus_eaa3 + .cell_edda {\n transition: background-color var(--ring-ease);\n\n border-color: var(--ring-border-hover-color);\n box-shadow: 0 0 0 1px var(--ring-border-hover-color);\n }\n\n/* stylelint-disable-next-line selector-max-specificity */\n\n.input_a330:indeterminate + .cell_edda .minus_de65 {\n opacity: 1;\n }\n\n.input_a330[disabled] {\n pointer-events: none;\n }\n\n/* stylelint-disable-next-line selector-max-specificity */\n\n.input_a330[disabled][disabled] + .cell_edda {\n border-color: var(--ring-border-disabled-color);\n background-color: var(--ring-disabled-background-color);\n }\n\n/* stylelint-disable-next-line selector-max-specificity */\n\n.input_a330[disabled]:checked + .cell_edda,\n .input_a330[disabled]:indeterminate + .cell_edda {\n border-color: var(--ring-border-selected-disabled-color);\n }\n\n/* stylelint-disable-next-line selector-max-specificity */\n\n.input_a330[disabled]:checked + .cell_edda .check_a219,\n .input_a330[disabled]:indeterminate + .cell_edda .minus_de65 {\n color: var(--ring-icon-disabled-color);\n }\n\n/* stylelint-disable-next-line selector-max-specificity */\n\n.input_a330:indeterminate:indeterminate + .cell_edda .check_a219 {\n transition: none;\n\n opacity: 0;\n }\n\n.input_a330[disabled] ~ .label_dcc7 {\n color: var(--ring-disabled-color);\n }\n\n.label_dcc7 {\n margin-left: 8px;\n\n line-height: normal;\n}\n","",{version:3,sources:["webpack://./node_modules/@jetbrains/ring-ui/components/checkbox/checkbox.css",""],names:[],mappings:"AAKA;EACE,kBAAkB;;EAElB,qBAAqB;;EAErB,gBAAgB;;EAEhB,6BAA6B;EAC7B,aAAa;AAOf;;ACpBA,wGAAA;IAAA,8CAAA;;IAAA,6CAAA;GAAA,CAAA;;ADsBA;EACE,kBAAkB;EAClB,SAAS;;EAET,qBAAqB;;EAErB,sBAAsB;EACtB,WAAmB;EACnB,YAAoB;;EAEpB,yBAAiB;;KAAjB,sBAAiB;;UAAjB,iBAAiB;EACjB,yGAAyG;EACzG,sBAAsB;EACtB,oBAAoB;;EAEpB,2CAA2C;EAC3C,8CAA8C;EAC9C,sDAAsD;AACxD;;AAEA;EACE,kBAAkB;;EAElB,SAAS;EACT,UAAU;;EAEV,WAAqB;EACrB,YAAsB;;EAEtB,UAAU;EACV,mCAAmC;AAOrC;;AALE;IACE,kBAAkB;IAClB,MAAM;IACN,OAAO;EACT;;AAGF;AAEA;;AAEA;AAEA;;AAEA;EACE,kBAAkB;EAClB,MAAM;EACN,OAAO;;EAEP,WAAW;EACX,YAAY;EACZ,SAAS;;EAET,eAAe;;EAEf,UAAU;;EAEV,yDAAyD;AAyD3D;;AAxDE;;IAEE,yBAAyB;IACzB,wCAAwC;EAC1C;;AAEA,yDAAyD;;AACzD;IACE,UAAU;EACZ;;AAEA;;IAEE,6CAA6C;;IAE7C,4CAA4C;IAC5C,oDAAoD;EACtD;;AAEA,yDAAyD;;AACzD;IACE,UAAU;EACZ;;AAEA;IACE,oBAAoB;EACtB;;AAEA,yDAAyD;;AACzD;IACE,+CAA+C;IAC/C,uDAAuD;EACzD;;AAEA,yDAAyD;;AACzD;;IAEE,wDAAwD;EAC1D;;AAEA,yDAAyD;;AACzD;;IAEE,sCAAsC;EACxC;;AAEA,yDAAyD;;AACzD;IACE,gBAAgB;;IAEhB,UAAU;EACZ;;AAEA;IACE,iCAAiC;EACnC;;AAGF;EACE,gBAAiB;;EAEjB,mBAAmB;AACrB",sourcesContent:['@import "../global/variables.css";\n\n@value unit from "../global/global.css";\n@value checkboxSize: 14px;\n\n.checkbox {\n position: relative;\n\n display: inline-block;\n\n text-align: left;\n\n color: var(--ring-text-color);\n outline: none;\n\n &:hover .cell {\n transition: background-color var(--ring-ease);\n\n border-color: var(--ring-border-hover-color);\n }\n}\n\n.cell {\n position: relative;\n top: -2px;\n\n display: inline-block;\n\n box-sizing: border-box;\n width: checkboxSize;\n height: checkboxSize;\n\n user-select: none;\n transition: border-color var(--ring-ease), background-color var(--ring-ease), box-shadow var(--ring-ease);\n vertical-align: middle;\n pointer-events: none;\n\n border: 1px solid var(--ring-borders-color);\n border-radius: var(--ring-border-radius-small);\n background-color: var(--ring-content-background-color);\n}\n\n.icon.icon {\n position: absolute;\n\n top: -1px;\n left: -1px;\n\n width: calc(unit * 2);\n height: calc(unit * 2);\n\n opacity: 0;\n color: var(--ring-white-text-color);\n\n & svg {\n position: absolute;\n top: 0;\n left: 0;\n }\n}\n\n.check {\n composes: icon;\n}\n\n.minus {\n composes: icon;\n}\n\n.input {\n position: absolute;\n top: 0;\n left: 0;\n\n width: 100%;\n height: 100%;\n margin: 0;\n\n cursor: pointer;\n\n opacity: 0;\n\n /* stylelint-disable-next-line selector-max-specificity */\n &:checked + .cell,\n &:indeterminate + .cell {\n border-color: transparent;\n background-color: var(--ring-main-color);\n }\n\n /* stylelint-disable-next-line selector-max-specificity */\n &:checked + .cell .check {\n opacity: 1;\n }\n\n &:focus-visible + .cell,\n &.focus + .cell {\n transition: background-color var(--ring-ease);\n\n border-color: var(--ring-border-hover-color);\n box-shadow: 0 0 0 1px var(--ring-border-hover-color);\n }\n\n /* stylelint-disable-next-line selector-max-specificity */\n &:indeterminate + .cell .minus {\n opacity: 1;\n }\n\n &[disabled] {\n pointer-events: none;\n }\n\n /* stylelint-disable-next-line selector-max-specificity */\n &[disabled][disabled] + .cell {\n border-color: var(--ring-border-disabled-color);\n background-color: var(--ring-disabled-background-color);\n }\n\n /* stylelint-disable-next-line selector-max-specificity */\n &[disabled]:checked + .cell,\n &[disabled]:indeterminate + .cell {\n border-color: var(--ring-border-selected-disabled-color);\n }\n\n /* stylelint-disable-next-line selector-max-specificity */\n &[disabled]:checked + .cell .check,\n &[disabled]:indeterminate + .cell .minus {\n color: var(--ring-icon-disabled-color);\n }\n\n /* stylelint-disable-next-line selector-max-specificity */\n &:indeterminate:indeterminate + .cell .check {\n transition: none;\n\n opacity: 0;\n }\n\n &[disabled] ~ .label {\n color: var(--ring-disabled-color);\n }\n}\n\n.label {\n margin-left: unit;\n\n line-height: normal;\n}\n',null],sourceRoot:""}]),s.locals={unit:`${l.default.locals.unit}`,checkboxSize:"14px",checkbox:"checkbox_dccf",cell:"cell_edda",icon:"icon_b476",check:"check_a219 icon_b476",minus:"minus_de65 icon_b476",input:"input_a330",focus:"focus_eaa3",label:"label_dcc7"};const u=s},5486:(e,n,t)=>{"use strict";t.r(n),t.d(n,{default:()=>l});var r=t(1404),o=t.n(r),i=t(7156),a=t.n(i)()(o());a.push([e.id,".label_bed7 {\n display: block;\n\n margin-bottom: calc(var(--ring-unit)*0.5);\n}\n\n.formLabel_f9ba {\n color: var(--ring-text-color);\n\n font-size: var(--ring-font-size);\n line-height: var(--ring-line-height);\n}\n\n.secondaryLabel_e8a1 {\n color: var(--ring-secondary-color);\n\n font-size: var(--ring-font-size-smaller);\n line-height: var(--ring-line-height-lowest);\n}\n\n.disabledLabel_e4c1 {\n color: var(--ring-disabled-color);\n}\n","",{version:3,sources:["webpack://./node_modules/@jetbrains/ring-ui/components/control-label/control-label.css"],names:[],mappings:"AAAA;EACE,cAAc;;EAEd,yCAA2C;AAC7C;;AAEA;EACE,6BAA6B;;EAE7B,gCAAgC;EAChC,oCAAoC;AACtC;;AAEA;EACE,kCAAkC;;EAElC,wCAAwC;EACxC,2CAA2C;AAC7C;;AAEA;EACE,iCAAiC;AACnC",sourcesContent:[".label {\n display: block;\n\n margin-bottom: calc(var(--ring-unit) * 0.5);\n}\n\n.formLabel {\n color: var(--ring-text-color);\n\n font-size: var(--ring-font-size);\n line-height: var(--ring-line-height);\n}\n\n.secondaryLabel {\n color: var(--ring-secondary-color);\n\n font-size: var(--ring-font-size-smaller);\n line-height: var(--ring-line-height-lowest);\n}\n\n.disabledLabel {\n color: var(--ring-disabled-color);\n}\n"],sourceRoot:""}]),a.locals={label:"label_bed7",formLabel:"formLabel_f9ba",secondaryLabel:"secondaryLabel_e8a1",disabledLabel:"disabledLabel_e4c1"};const l=a},6506:(e,n,t)=>{"use strict";t.r(n),t.d(n,{default:()=>s});var r=t(1404),o=t.n(r),i=t(7156),a=t.n(i),l=t(5280),c=a()(o());c.i(l.A),c.push([e.id,".dropdown_a1de {\n display: inline-block;\n}\n\n.anchor_fdbe.anchor_fdbe {\n margin: 0 -3px;\n padding: 0 3px;\n\n font: inherit;\n}\n\n.chevron_ffc6 {\n margin-left: 2px;\n\n line-height: normal;\n}\n","",{version:3,sources:["webpack://./node_modules/@jetbrains/ring-ui/components/dropdown/dropdown.css"],names:[],mappings:"AAEA;EACE,qBAAqB;AACvB;;AAEA;EACE,cAAc;EACd,cAAc;;EAEd,aAAa;AACf;;AAEA;EACE,gBAAgB;;EAEhB,mBAAmB;AACrB",sourcesContent:['@import "../global/variables.css";\n\n.dropdown {\n display: inline-block;\n}\n\n.anchor.anchor {\n margin: 0 -3px;\n padding: 0 3px;\n\n font: inherit;\n}\n\n.chevron {\n margin-left: 2px;\n\n line-height: normal;\n}\n'],sourceRoot:""}]),c.locals={dropdown:"dropdown_a1de",anchor:"anchor_fdbe",chevron:"chevron_ffc6"};const s=c},9106:(e,n,t)=>{"use strict";t.r(n),t.d(n,{default:()=>l});var r=t(1404),o=t.n(r),i=t(7156),a=t.n(i)()(o());a.push([e.id,'/* https://readymag.com/artemtiunov/RingUILanguage/colours/ */\n\n/*\nUnit shouldn\'t be CSS custom property because it is not intended to change\nAlso it won\'t form in FF47 https://bugzilla.mozilla.org/show_bug.cgi?id=594933\n*/\n\n.clearfix_c694::after {\n display: block;\n clear: both;\n\n content: "";\n }\n\n.font_a1f6 {\n font-family: var(--ring-font-family);\n font-size: var(--ring-font-size);\n line-height: var(--ring-line-height);\n}\n\n.font-lower_c3c9 {\n\n line-height: var(--ring-line-height-lower);\n}\n\n.font-smaller_d963 {\n\n font-size: var(--ring-font-size-smaller);\n}\n\n.font-smaller-lower_ff5f {\n\n line-height: var(--ring-line-height-lowest);\n}\n\n.font-larger-lower_b336 {\n\n font-size: var(--ring-font-size-larger);\n}\n\n.font-larger_f035 {\n\n line-height: var(--ring-line-height-taller);\n}\n\n/* To be used at large sizes */\n/* As close as possible to Helvetica Neue Thin (to replace Gotham) */\n.thin-font_de5b {\n font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;\n font-size: var(--ring-font-size);\n font-weight: 100; /* Renders Helvetica Neue UltraLight on OS X */\n}\n\n.monospace-font_ac33 {\n font-family: var(--ring-font-family-monospace);\n font-size: var(--ring-font-size-smaller);\n}\n\n.ellipsis_e43b {\n overflow: hidden;\n\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n\n.resetButton_ddd2 {\n overflow: visible;\n\n padding: 0;\n\n text-align: left;\n\n color: inherit;\n border: 0;\n\n background-color: transparent;\n\n font: inherit;\n}\n\n.resetButton_ddd2::-moz-focus-inner {\n padding: 0;\n\n border: 0;\n }\n\n/* Note: footer also has top margin which isn\'t taken into account here */\n\n/* Media breakpoints (minimal values) */\n\n/* Media queries */\n',"",{version:3,sources:["webpack://./node_modules/@jetbrains/ring-ui/components/global/global.css"],names:[],mappings:"AAAA,6DAA6D;;AAE7D;;;CAGC;;AAIC;IACE,cAAc;IACd,WAAW;;IAEX,WAAW;EACb;;AAGF;EACE,oCAAoC;EACpC,gCAAgC;EAChC,oCAAoC;AACtC;;AAEA;;EAGE,0CAA0C;AAC5C;;AAEA;;EAGE,wCAAwC;AAC1C;;AAEA;;EAGE,2CAA2C;AAC7C;;AAEA;;EAGE,uCAAuC;AACzC;;AAEA;;EAGE,2CAA2C;AAC7C;;AAEA,8BAA8B;AAC9B,oEAAoE;AACpE;EACE,uEAAuE;EACvE,gCAAgC;EAChC,gBAAgB,EAAE,+CAA+C;AACnE;;AAEA;EACE,8CAA8C;EAC9C,wCAAwC;AAC1C;;AAEA;EACE,gBAAgB;;EAEhB,mBAAmB;EACnB,uBAAuB;AACzB;;AAEA;EACE,iBAAiB;;EAEjB,UAAU;;EAEV,gBAAgB;;EAEhB,cAAc;EACd,SAAS;;EAET,6BAA6B;;EAE7B,aAAa;AAOf;;AALE;IACE,UAAU;;IAEV,SAAS;EACX;;AAGF,yEAAyE;;AAGzE,uCAAuC;;AAKvC,kBAAkB",sourcesContent:['/* https://readymag.com/artemtiunov/RingUILanguage/colours/ */\n\n/*\nUnit shouldn\'t be CSS custom property because it is not intended to change\nAlso it won\'t form in FF47 https://bugzilla.mozilla.org/show_bug.cgi?id=594933\n*/\n@value unit: 8px;\n\n.clearfix {\n &::after {\n display: block;\n clear: both;\n\n content: "";\n }\n}\n\n.font {\n font-family: var(--ring-font-family);\n font-size: var(--ring-font-size);\n line-height: var(--ring-line-height);\n}\n\n.font-lower {\n composes: font;\n\n line-height: var(--ring-line-height-lower);\n}\n\n.font-smaller {\n composes: font-lower;\n\n font-size: var(--ring-font-size-smaller);\n}\n\n.font-smaller-lower {\n composes: font-smaller;\n\n line-height: var(--ring-line-height-lowest);\n}\n\n.font-larger-lower {\n composes: font-lower;\n\n font-size: var(--ring-font-size-larger);\n}\n\n.font-larger {\n composes: font-larger-lower;\n\n line-height: var(--ring-line-height-taller);\n}\n\n/* To be used at large sizes */\n/* As close as possible to Helvetica Neue Thin (to replace Gotham) */\n.thin-font {\n font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;\n font-size: var(--ring-font-size);\n font-weight: 100; /* Renders Helvetica Neue UltraLight on OS X */\n}\n\n.monospace-font {\n font-family: var(--ring-font-family-monospace);\n font-size: var(--ring-font-size-smaller);\n}\n\n.ellipsis {\n overflow: hidden;\n\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n\n.resetButton {\n overflow: visible;\n\n padding: 0;\n\n text-align: left;\n\n color: inherit;\n border: 0;\n\n background-color: transparent;\n\n font: inherit;\n\n &::-moz-focus-inner {\n padding: 0;\n\n border: 0;\n }\n}\n\n/* Note: footer also has top margin which isn\'t taken into account here */\n@value footer-height: calc(unit * 8);\n\n/* Media breakpoints (minimal values) */\n@value breakpoint-small: 640px;\n@value breakpoint-middle: 960px;\n@value breakpoint-large: 1200px;\n\n/* Media queries */\n@value extra-small-screen-media: (max-width: calc(breakpoint-small - 1px));\n@value small-screen-media: (min-width: breakpoint-small) and (max-width: calc(breakpoint-middle - 1px));\n@value middle-screen-media: (min-width: breakpoint-middle) and (max-width: calc(breakpoint-large - 1px));\n@value large-screen-media: (min-width: breakpoint-large);\n'],sourceRoot:""}]),a.locals={unit:"8px","footer-height":"64px","breakpoint-small":"640px","breakpoint-middle":"960px","breakpoint-large":"1200px","extra-small-screen-media":"(max-width: 639px)","small-screen-media":"(min-width: 640px) and (max-width: 959px)","middle-screen-media":"(min-width: 960px) and (max-width: 1199px)","large-screen-media":"(min-width: 1200px)",clearfix:"clearfix_c694",font:"font_a1f6","font-lower":"font-lower_c3c9 font_a1f6","font-smaller":"font-smaller_d963 font-lower_c3c9 font_a1f6","font-smaller-lower":"font-smaller-lower_ff5f font-smaller_d963 font-lower_c3c9 font_a1f6","font-larger-lower":"font-larger-lower_b336 font-lower_c3c9 font_a1f6","font-larger":"font-larger_f035 font-larger-lower_b336 font-lower_c3c9 font_a1f6","thin-font":"thin-font_de5b","monospace-font":"monospace-font_ac33",ellipsis:"ellipsis_e43b",resetButton:"resetButton_ddd2"};const l=a},5280:(e,n,t)=>{"use strict";t.d(n,{A:()=>l});var r=t(1404),o=t.n(r),i=t(7156),a=t.n(i)()(o());a.push([e.id,'/* stylelint-disable color-no-hex */\n\n.light_f331,\n:root {\n --ring-unit: 8px;\n\n /* Element */\n --ring-line-components: 223, 229, 235;\n --ring-line-color: rgb(var(--ring-line-components)); /* #dfe5eb */\n --ring-borders-components: 197, 209, 219;\n --ring-borders-color: rgb(var(--ring-borders-components)); /* #c5d1db */\n --ring-icon-components: 184, 209, 229;\n --ring-icon-color: rgb(var(--ring-icon-components)); /* #b8d1e5 */\n --ring-icon-secondary-components: 153, 153, 153;\n --ring-icon-secondary-color: rgb(var(--ring-icon-secondary-components)); /* #999 */\n --ring-border-disabled-components: 232, 232, 232;\n --ring-border-disabled-color: rgb(var(--ring-border-disabled-components)); /* #e8e8e8 */\n --ring-border-selected-disabled-components: 212, 212, 212;\n --ring-border-selected-disabled-color: rgb(var(--ring-border-selected-disabled-components)); /* #d4d4d4 */\n --ring-border-unselected-disabled-components: 232, 232, 232;\n --ring-border-unselected-disabled-color: rgb(var(--ring-border-unselected-disabled-components)); /* #e8e8e8 */ /* TODO remove in 6.0 */\n --ring-icon-disabled-components: 212, 212, 212;\n --ring-icon-disabled-color: rgb(var(--ring-icon-disabled-components)); /* #d4d4d4 */\n --ring-border-hover-components: 128, 198, 255;\n --ring-border-hover-color: rgb(var(--ring-border-hover-components)); /* #80c6ff */\n --ring-icon-hover-components: var(--ring-link-hover-color);\n --ring-icon-hover-color: var(--ring-link-hover-color);\n --ring-main-components: 0, 128, 229;\n --ring-main-color: rgb(var(--ring-main-components)); /* #0080e5 */\n --ring-action-link-components: var(--ring-main-components);\n --ring-action-link-color: rgb(var(--ring-main-components)); /* #0080e5 */\n --ring-main-hover-components: 0, 112, 204;\n --ring-main-hover-color: rgb(var(--ring-main-hover-components)); /* #0070cc */\n --ring-icon-error-components: 219, 88, 96;\n --ring-icon-error-color: rgb(var(--ring-icon-error-components)); /* #db5860 */\n --ring-icon-warning-components: 237, 162, 0;\n --ring-icon-warning-color: rgb(var(--ring-icon-warning-components)); /* #eda200 */\n --ring-icon-success-components: 89, 168, 105;\n --ring-icon-success-color: rgb(var(--ring-icon-success-components)); /* #59a869 */\n --ring-pale-control-components: 207, 219, 229;\n --ring-pale-control-color: rgb(var(--ring-pale-control-components)); /* #cfdbe5 */\n --ring-popup-border-components: 0, 28, 54;\n --ring-popup-border-color: var(--ring-line-color);\n --ring-popup-shadow-components: rgba(var(--ring-popup-border-components), 0.1);\n --ring-popup-shadow-color: rgba(var(--ring-popup-border-components), 0.1);\n --ring-popup-secondary-shadow-color: rgba(var(--ring-popup-border-components), 0.04);\n --ring-message-shadow-color: rgba(var(--ring-popup-border-components), 0.3);\n --ring-pinned-shadow-components: 115, 117, 119;\n --ring-pinned-shadow-color: rgb(var(--ring-pinned-shadow-components)); /* #737577 */\n --ring-button-danger-hover-components: var(--ring-icon-error-color);\n --ring-button-danger-hover-color: var(--ring-icon-error-color);\n --ring-button-primary-border-components: 0, 98, 178;\n --ring-button-primary-border-color: rgb(var(--ring-button-primary-border-components)); /* #0062b2 */\n --ring-popup-shadow: 0 2px 8px var(--ring-popup-shadow-color), 0 1px 2px var(--ring-popup-secondary-shadow-color);\n --ring-dialog-shadow: 0 4px 24px var(--ring-popup-shadow-color), 0 2px 6px var(--ring-popup-secondary-shadow-color);\n\n /* Text */\n --ring-search-components: 102, 158, 204;\n --ring-search-color: rgb(var(--ring-search-components)); /* #669ecc */\n --ring-hint-components: 64, 99, 128;\n --ring-hint-color: rgb(var(--ring-hint-components)); /* #406380 */\n --ring-link-components: 15, 91, 153;\n --ring-link-color: rgb(var(--ring-link-components)); /* #0f5b99 */\n --ring-link-hover-components: 255, 0, 140;\n --ring-link-hover-color: rgb(var(--ring-link-hover-components)); /* #ff008c */\n --ring-error-components: 169, 15, 26;\n --ring-error-color: rgb(var(--ring-error-components)); /* #a90f1a */\n --ring-warning-components: 178, 92, 0;\n --ring-warning-color: rgb(var(--ring-warning-components)); /* #b25c00 */\n --ring-success-components: 12, 117, 35;\n --ring-success-color: rgb(var(--ring-success-components)); /* #0c7523 */\n --ring-text-components: 31, 35, 38;\n --ring-text-color: rgb(var(--ring-text-components)); /* #1f2326 */\n --ring-active-text-color: var(--ring-text-color);\n --ring-white-text-components: 255, 255, 255;\n --ring-white-text-color: rgb(var(--ring-white-text-components)); /* #fff */\n --ring-heading-color: var(--ring-text-color);\n --ring-secondary-components: 115, 117, 119;\n --ring-secondary-color: rgb(var(--ring-secondary-components)); /* #737577 */\n --ring-disabled-components: 153, 153, 153;\n --ring-disabled-color: rgb(var(--ring-disabled-components)); /* #999 */\n\n /* Background */\n --ring-content-background-components: 255, 255, 255;\n --ring-content-background-color: rgb(var(--ring-content-background-components)); /* #fff */\n --ring-popup-background-components: 255, 255, 255;\n --ring-popup-background-color: rgb(var(--ring-popup-background-components)); /* #fff */\n --ring-sidebar-background-components: 247, 249, 250;\n --ring-sidebar-background-color: rgb(var(--ring-sidebar-background-components)); /* #f7f9fa */\n --ring-selected-background-components: 212, 237, 255;\n --ring-selected-background-color: rgb(var(--ring-selected-background-components)); /* #d4edff */\n --ring-hover-background-components: 235, 246, 255;\n --ring-hover-background-color: rgb(var(--ring-hover-background-components)); /* #ebf6ff */\n --ring-navigation-background-components: 255, 255, 255;\n --ring-navigation-background-color: rgb(var(--ring-navigation-background-components)); /* #fff */\n --ring-tag-background-components: 230, 236, 242;\n --ring-tag-background-color: rgb(var(--ring-tag-background-components)); /* #e6ecf2 */\n --ring-tag-hover-background-components: 211, 218, 224;\n --ring-tag-hover-background-color: rgb(var(--ring-tag-hover-background-components)); /* #d3dae0 */\n --ring-removed-background-components: 255, 213, 203;\n --ring-removed-background-color: rgb(var(--ring-removed-background-components)); /* #ffd5cb */\n --ring-warning-background-components: 250, 236, 205;\n --ring-warning-background-color: rgb(var(--ring-warning-background-components)); /* #faeccd */\n --ring-added-background-components: 216, 240, 216;\n --ring-added-background-color: rgb(var(--ring-added-background-components)); /* #d8f0d8 */\n --ring-disabled-background-components: 245, 245, 245;\n --ring-disabled-background-color: rgb(var(--ring-disabled-background-components)); /* #f5f5f5 */\n --ring-disabled-selected-background-components: 232, 232, 232;\n --ring-disabled-selected-background-color: rgb(var(--ring-disabled-selected-background-components)); /* #e8e8e8 */\n --ring-button-danger-active-components: 255, 231, 232;\n --ring-button-danger-active-color: rgb(var(--ring-button-danger-active-components)); /* #ffe7e8 */\n --ring-button-loader-background-components: 51, 163, 255;\n --ring-button-loader-background: rgb(var(--ring-button-loader-background-components)); /* #33a3ff */\n --ring-button-primary-background-components: 26, 152, 255;\n --ring-button-primary-background-color: rgb(var(--ring-button-primary-background-components)); /* #1a98ff */\n --ring-table-loader-background-color: rgba(var(--ring-content-background-components), 0.5); /* #ffffff80 */\n\n /* Code */\n --ring-code-background-color: var(--ring-content-background-color);\n --ring-code-components: 0, 0, 0;\n --ring-code-color: rgb(var(--ring-code-components)); /* #000 */\n --ring-code-comment-components: 112, 112, 112;\n --ring-code-comment-color: rgb(var(--ring-code-comment-components)); /* #707070 */\n --ring-code-meta-components: 112, 112, 112;\n --ring-code-meta-color: rgb(var(--ring-code-meta-components)); /* #707070 */\n --ring-code-keyword-components: 0, 0, 128;\n --ring-code-keyword-color: rgb(var(--ring-code-keyword-components)); /* #000080 */\n --ring-code-tag-background-components: 239, 239, 239;\n --ring-code-tag-background-color: rgb(var(--ring-code-tag-background-components)); /* #efefef */\n --ring-code-tag-color: var(--ring-code-keyword-color);\n --ring-code-tag-font-weight: bold;\n --ring-code-field-components: 102, 14, 122;\n --ring-code-field-color: rgb(var(--ring-code-field-components)); /* #660e7a */\n --ring-code-attribute-components: 0, 0, 255;\n --ring-code-attribute-color: rgb(var(--ring-code-attribute-components)); /* #00f */\n --ring-code-number-color: var(--ring-code-attribute-color);\n --ring-code-string-components: 0, 122, 0;\n --ring-code-string-color: rgb(var(--ring-code-string-components)); /* #007a00 */\n --ring-code-addition-components: 170, 222, 170;\n --ring-code-addition-color: rgb(var(--ring-code-addition-components)); /* #aadeaa */\n --ring-code-deletion-components: 200, 200, 200;\n --ring-code-deletion-color: rgb(var(--ring-code-deletion-components)); /* #c8c8c8 */\n\n /* Metrics */\n --ring-border-radius: 4px;\n --ring-border-radius-small: 2px;\n --ring-font-size-larger: 15px;\n --ring-font-size: 14px;\n --ring-font-size-smaller: 12px;\n --ring-line-height-taller: 21px;\n --ring-line-height: 20px;\n --ring-line-height-lower: 18px;\n --ring-line-height-lowest: 16px;\n --ring-ease: 0.3s ease-out;\n --ring-fast-ease: 0.15s ease-out;\n --ring-font-family: system-ui, -apple-system, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Arial, sans-serif;\n --ring-font-family-monospace:\n Menlo,\n "Bitstream Vera Sans Mono",\n "Ubuntu Mono",\n Consolas,\n "Courier New",\n Courier,\n monospace;\n\n /* Common z-index-values */\n\n /* Invisible element is an absolutely positioned element which should be below */\n /* all other elements on the page */\n --ring-invisible-element-z-index: -1;\n\n /* z-index for position: fixed elements */\n --ring-fixed-z-index: 1;\n\n /* Elements that should overlay all other elements on the page */\n --ring-overlay-z-index: 5;\n\n /* Alerts should de displayed above overlays */\n --ring-alert-z-index: 6;\n}\n',"",{version:3,sources:["webpack://./node_modules/@jetbrains/ring-ui/components/global/variables.css"],names:[],mappings:"AAAA,mCAAmC;;AAEnC;;EAEE,gBAAgB;;EAEhB,YAAY;EACZ,qCAAqC;EACrC,mDAAmD,EAAE,YAAY;EACjE,wCAAwC;EACxC,yDAAyD,EAAE,YAAY;EACvE,qCAAqC;EACrC,mDAAmD,EAAE,YAAY;EACjE,+CAA+C;EAC/C,uEAAuE,EAAE,SAAS;EAClF,gDAAgD;EAChD,yEAAyE,EAAE,YAAY;EACvF,yDAAyD;EACzD,2FAA2F,EAAE,YAAY;EACzG,2DAA2D;EAC3D,+FAA+F,EAAE,YAAY,EAAE,uBAAuB;EACtI,8CAA8C;EAC9C,qEAAqE,EAAE,YAAY;EACnF,6CAA6C;EAC7C,mEAAmE,EAAE,YAAY;EACjF,0DAA0D;EAC1D,qDAAqD;EACrD,mCAAmC;EACnC,mDAAmD,EAAE,YAAY;EACjE,0DAA0D;EAC1D,0DAA0D,EAAE,YAAY;EACxE,yCAAyC;EACzC,+DAA+D,EAAE,YAAY;EAC7E,yCAAyC;EACzC,+DAA+D,EAAE,YAAY;EAC7E,2CAA2C;EAC3C,mEAAmE,EAAE,YAAY;EACjF,4CAA4C;EAC5C,mEAAmE,EAAE,YAAY;EACjF,6CAA6C;EAC7C,mEAAmE,EAAE,YAAY;EACjF,yCAAyC;EACzC,iDAAiD;EACjD,8EAA8E;EAC9E,yEAAyE;EACzE,oFAAoF;EACpF,2EAA2E;EAC3E,8CAA8C;EAC9C,qEAAqE,EAAE,YAAY;EACnF,mEAAmE;EACnE,8DAA8D;EAC9D,mDAAmD;EACnD,qFAAqF,EAAE,YAAY;EACnG,iHAAiH;EACjH,mHAAmH;;EAEnH,SAAS;EACT,uCAAuC;EACvC,uDAAuD,EAAE,YAAY;EACrE,mCAAmC;EACnC,mDAAmD,EAAE,YAAY;EACjE,mCAAmC;EACnC,mDAAmD,EAAE,YAAY;EACjE,yCAAyC;EACzC,+DAA+D,EAAE,YAAY;EAC7E,oCAAoC;EACpC,qDAAqD,EAAE,YAAY;EACnE,qCAAqC;EACrC,yDAAyD,EAAE,YAAY;EACvE,sCAAsC;EACtC,yDAAyD,EAAE,YAAY;EACvE,kCAAkC;EAClC,mDAAmD,EAAE,YAAY;EACjE,gDAAgD;EAChD,2CAA2C;EAC3C,+DAA+D,EAAE,SAAS;EAC1E,4CAA4C;EAC5C,0CAA0C;EAC1C,6DAA6D,EAAE,YAAY;EAC3E,yCAAyC;EACzC,2DAA2D,EAAE,SAAS;;EAEtE,eAAe;EACf,mDAAmD;EACnD,+EAA+E,EAAE,SAAS;EAC1F,iDAAiD;EACjD,2EAA2E,EAAE,SAAS;EACtF,mDAAmD;EACnD,+EAA+E,EAAE,YAAY;EAC7F,oDAAoD;EACpD,iFAAiF,EAAE,YAAY;EAC/F,iDAAiD;EACjD,2EAA2E,EAAE,YAAY;EACzF,sDAAsD;EACtD,qFAAqF,EAAE,SAAS;EAChG,+CAA+C;EAC/C,uEAAuE,EAAE,YAAY;EACrF,qDAAqD;EACrD,mFAAmF,EAAE,YAAY;EACjG,mDAAmD;EACnD,+EAA+E,EAAE,YAAY;EAC7F,mDAAmD;EACnD,+EAA+E,EAAE,YAAY;EAC7F,iDAAiD;EACjD,2EAA2E,EAAE,YAAY;EACzF,oDAAoD;EACpD,iFAAiF,EAAE,YAAY;EAC/F,6DAA6D;EAC7D,mGAAmG,EAAE,YAAY;EACjH,qDAAqD;EACrD,mFAAmF,EAAE,YAAY;EACjG,wDAAwD;EACxD,qFAAqF,EAAE,YAAY;EACnG,yDAAyD;EACzD,6FAA6F,EAAE,YAAY;EAC3G,0FAA0F,EAAE,cAAc;;EAE1G,SAAS;EACT,kEAAkE;EAClE,+BAA+B;EAC/B,mDAAmD,EAAE,SAAS;EAC9D,6CAA6C;EAC7C,mEAAmE,EAAE,YAAY;EACjF,0CAA0C;EAC1C,6DAA6D,EAAE,YAAY;EAC3E,yCAAyC;EACzC,mEAAmE,EAAE,YAAY;EACjF,oDAAoD;EACpD,iFAAiF,EAAE,YAAY;EAC/F,qDAAqD;EACrD,iCAAiC;EACjC,0CAA0C;EAC1C,+DAA+D,EAAE,YAAY;EAC7E,2CAA2C;EAC3C,uEAAuE,EAAE,SAAS;EAClF,0DAA0D;EAC1D,wCAAwC;EACxC,iEAAiE,EAAE,YAAY;EAC/E,8CAA8C;EAC9C,qEAAqE,EAAE,YAAY;EACnF,8CAA8C;EAC9C,qEAAqE,EAAE,YAAY;;EAEnF,YAAY;EACZ,yBAAyB;EACzB,+BAA+B;EAC/B,6BAA6B;EAC7B,sBAAsB;EACtB,8BAA8B;EAC9B,+BAA+B;EAC/B,wBAAwB;EACxB,8BAA8B;EAC9B,+BAA+B;EAC/B,0BAA0B;EAC1B,gCAAgC;EAChC,+HAAgD;EAChD;;;;;;;aAOW;;EAEX,0BAA0B;;EAE1B,gFAAgF;EAChF,mCAAmC;EACnC,oCAAoC;;EAEpC,yCAAyC;EACzC,uBAAuB;;EAEvB,gEAAgE;EAChE,yBAAyB;;EAEzB,8CAA8C;EAC9C,uBAAuB;AACzB",sourcesContent:['/* stylelint-disable color-no-hex */\n\n.light,\n:root {\n --ring-unit: 8px;\n\n /* Element */\n --ring-line-components: 223, 229, 235;\n --ring-line-color: rgb(var(--ring-line-components)); /* #dfe5eb */\n --ring-borders-components: 197, 209, 219;\n --ring-borders-color: rgb(var(--ring-borders-components)); /* #c5d1db */\n --ring-icon-components: 184, 209, 229;\n --ring-icon-color: rgb(var(--ring-icon-components)); /* #b8d1e5 */\n --ring-icon-secondary-components: 153, 153, 153;\n --ring-icon-secondary-color: rgb(var(--ring-icon-secondary-components)); /* #999 */\n --ring-border-disabled-components: 232, 232, 232;\n --ring-border-disabled-color: rgb(var(--ring-border-disabled-components)); /* #e8e8e8 */\n --ring-border-selected-disabled-components: 212, 212, 212;\n --ring-border-selected-disabled-color: rgb(var(--ring-border-selected-disabled-components)); /* #d4d4d4 */\n --ring-border-unselected-disabled-components: 232, 232, 232;\n --ring-border-unselected-disabled-color: rgb(var(--ring-border-unselected-disabled-components)); /* #e8e8e8 */ /* TODO remove in 6.0 */\n --ring-icon-disabled-components: 212, 212, 212;\n --ring-icon-disabled-color: rgb(var(--ring-icon-disabled-components)); /* #d4d4d4 */\n --ring-border-hover-components: 128, 198, 255;\n --ring-border-hover-color: rgb(var(--ring-border-hover-components)); /* #80c6ff */\n --ring-icon-hover-components: var(--ring-link-hover-color);\n --ring-icon-hover-color: var(--ring-link-hover-color);\n --ring-main-components: 0, 128, 229;\n --ring-main-color: rgb(var(--ring-main-components)); /* #0080e5 */\n --ring-action-link-components: var(--ring-main-components);\n --ring-action-link-color: rgb(var(--ring-main-components)); /* #0080e5 */\n --ring-main-hover-components: 0, 112, 204;\n --ring-main-hover-color: rgb(var(--ring-main-hover-components)); /* #0070cc */\n --ring-icon-error-components: 219, 88, 96;\n --ring-icon-error-color: rgb(var(--ring-icon-error-components)); /* #db5860 */\n --ring-icon-warning-components: 237, 162, 0;\n --ring-icon-warning-color: rgb(var(--ring-icon-warning-components)); /* #eda200 */\n --ring-icon-success-components: 89, 168, 105;\n --ring-icon-success-color: rgb(var(--ring-icon-success-components)); /* #59a869 */\n --ring-pale-control-components: 207, 219, 229;\n --ring-pale-control-color: rgb(var(--ring-pale-control-components)); /* #cfdbe5 */\n --ring-popup-border-components: 0, 28, 54;\n --ring-popup-border-color: var(--ring-line-color);\n --ring-popup-shadow-components: rgba(var(--ring-popup-border-components), 0.1);\n --ring-popup-shadow-color: rgba(var(--ring-popup-border-components), 0.1);\n --ring-popup-secondary-shadow-color: rgba(var(--ring-popup-border-components), 0.04);\n --ring-message-shadow-color: rgba(var(--ring-popup-border-components), 0.3);\n --ring-pinned-shadow-components: 115, 117, 119;\n --ring-pinned-shadow-color: rgb(var(--ring-pinned-shadow-components)); /* #737577 */\n --ring-button-danger-hover-components: var(--ring-icon-error-color);\n --ring-button-danger-hover-color: var(--ring-icon-error-color);\n --ring-button-primary-border-components: 0, 98, 178;\n --ring-button-primary-border-color: rgb(var(--ring-button-primary-border-components)); /* #0062b2 */\n --ring-popup-shadow: 0 2px 8px var(--ring-popup-shadow-color), 0 1px 2px var(--ring-popup-secondary-shadow-color);\n --ring-dialog-shadow: 0 4px 24px var(--ring-popup-shadow-color), 0 2px 6px var(--ring-popup-secondary-shadow-color);\n\n /* Text */\n --ring-search-components: 102, 158, 204;\n --ring-search-color: rgb(var(--ring-search-components)); /* #669ecc */\n --ring-hint-components: 64, 99, 128;\n --ring-hint-color: rgb(var(--ring-hint-components)); /* #406380 */\n --ring-link-components: 15, 91, 153;\n --ring-link-color: rgb(var(--ring-link-components)); /* #0f5b99 */\n --ring-link-hover-components: 255, 0, 140;\n --ring-link-hover-color: rgb(var(--ring-link-hover-components)); /* #ff008c */\n --ring-error-components: 169, 15, 26;\n --ring-error-color: rgb(var(--ring-error-components)); /* #a90f1a */\n --ring-warning-components: 178, 92, 0;\n --ring-warning-color: rgb(var(--ring-warning-components)); /* #b25c00 */\n --ring-success-components: 12, 117, 35;\n --ring-success-color: rgb(var(--ring-success-components)); /* #0c7523 */\n --ring-text-components: 31, 35, 38;\n --ring-text-color: rgb(var(--ring-text-components)); /* #1f2326 */\n --ring-active-text-color: var(--ring-text-color);\n --ring-white-text-components: 255, 255, 255;\n --ring-white-text-color: rgb(var(--ring-white-text-components)); /* #fff */\n --ring-heading-color: var(--ring-text-color);\n --ring-secondary-components: 115, 117, 119;\n --ring-secondary-color: rgb(var(--ring-secondary-components)); /* #737577 */\n --ring-disabled-components: 153, 153, 153;\n --ring-disabled-color: rgb(var(--ring-disabled-components)); /* #999 */\n\n /* Background */\n --ring-content-background-components: 255, 255, 255;\n --ring-content-background-color: rgb(var(--ring-content-background-components)); /* #fff */\n --ring-popup-background-components: 255, 255, 255;\n --ring-popup-background-color: rgb(var(--ring-popup-background-components)); /* #fff */\n --ring-sidebar-background-components: 247, 249, 250;\n --ring-sidebar-background-color: rgb(var(--ring-sidebar-background-components)); /* #f7f9fa */\n --ring-selected-background-components: 212, 237, 255;\n --ring-selected-background-color: rgb(var(--ring-selected-background-components)); /* #d4edff */\n --ring-hover-background-components: 235, 246, 255;\n --ring-hover-background-color: rgb(var(--ring-hover-background-components)); /* #ebf6ff */\n --ring-navigation-background-components: 255, 255, 255;\n --ring-navigation-background-color: rgb(var(--ring-navigation-background-components)); /* #fff */\n --ring-tag-background-components: 230, 236, 242;\n --ring-tag-background-color: rgb(var(--ring-tag-background-components)); /* #e6ecf2 */\n --ring-tag-hover-background-components: 211, 218, 224;\n --ring-tag-hover-background-color: rgb(var(--ring-tag-hover-background-components)); /* #d3dae0 */\n --ring-removed-background-components: 255, 213, 203;\n --ring-removed-background-color: rgb(var(--ring-removed-background-components)); /* #ffd5cb */\n --ring-warning-background-components: 250, 236, 205;\n --ring-warning-background-color: rgb(var(--ring-warning-background-components)); /* #faeccd */\n --ring-added-background-components: 216, 240, 216;\n --ring-added-background-color: rgb(var(--ring-added-background-components)); /* #d8f0d8 */\n --ring-disabled-background-components: 245, 245, 245;\n --ring-disabled-background-color: rgb(var(--ring-disabled-background-components)); /* #f5f5f5 */\n --ring-disabled-selected-background-components: 232, 232, 232;\n --ring-disabled-selected-background-color: rgb(var(--ring-disabled-selected-background-components)); /* #e8e8e8 */\n --ring-button-danger-active-components: 255, 231, 232;\n --ring-button-danger-active-color: rgb(var(--ring-button-danger-active-components)); /* #ffe7e8 */\n --ring-button-loader-background-components: 51, 163, 255;\n --ring-button-loader-background: rgb(var(--ring-button-loader-background-components)); /* #33a3ff */\n --ring-button-primary-background-components: 26, 152, 255;\n --ring-button-primary-background-color: rgb(var(--ring-button-primary-background-components)); /* #1a98ff */\n --ring-table-loader-background-color: rgba(var(--ring-content-background-components), 0.5); /* #ffffff80 */\n\n /* Code */\n --ring-code-background-color: var(--ring-content-background-color);\n --ring-code-components: 0, 0, 0;\n --ring-code-color: rgb(var(--ring-code-components)); /* #000 */\n --ring-code-comment-components: 112, 112, 112;\n --ring-code-comment-color: rgb(var(--ring-code-comment-components)); /* #707070 */\n --ring-code-meta-components: 112, 112, 112;\n --ring-code-meta-color: rgb(var(--ring-code-meta-components)); /* #707070 */\n --ring-code-keyword-components: 0, 0, 128;\n --ring-code-keyword-color: rgb(var(--ring-code-keyword-components)); /* #000080 */\n --ring-code-tag-background-components: 239, 239, 239;\n --ring-code-tag-background-color: rgb(var(--ring-code-tag-background-components)); /* #efefef */\n --ring-code-tag-color: var(--ring-code-keyword-color);\n --ring-code-tag-font-weight: bold;\n --ring-code-field-components: 102, 14, 122;\n --ring-code-field-color: rgb(var(--ring-code-field-components)); /* #660e7a */\n --ring-code-attribute-components: 0, 0, 255;\n --ring-code-attribute-color: rgb(var(--ring-code-attribute-components)); /* #00f */\n --ring-code-number-color: var(--ring-code-attribute-color);\n --ring-code-string-components: 0, 122, 0;\n --ring-code-string-color: rgb(var(--ring-code-string-components)); /* #007a00 */\n --ring-code-addition-components: 170, 222, 170;\n --ring-code-addition-color: rgb(var(--ring-code-addition-components)); /* #aadeaa */\n --ring-code-deletion-components: 200, 200, 200;\n --ring-code-deletion-color: rgb(var(--ring-code-deletion-components)); /* #c8c8c8 */\n\n /* Metrics */\n --ring-border-radius: 4px;\n --ring-border-radius-small: 2px;\n --ring-font-size-larger: 15px;\n --ring-font-size: 14px;\n --ring-font-size-smaller: 12px;\n --ring-line-height-taller: 21px;\n --ring-line-height: 20px;\n --ring-line-height-lower: 18px;\n --ring-line-height-lowest: 16px;\n --ring-ease: 0.3s ease-out;\n --ring-fast-ease: 0.15s ease-out;\n --ring-font-family: system-ui, Arial, sans-serif;\n --ring-font-family-monospace:\n Menlo,\n "Bitstream Vera Sans Mono",\n "Ubuntu Mono",\n Consolas,\n "Courier New",\n Courier,\n monospace;\n\n /* Common z-index-values */\n\n /* Invisible element is an absolutely positioned element which should be below */\n /* all other elements on the page */\n --ring-invisible-element-z-index: -1;\n\n /* z-index for position: fixed elements */\n --ring-fixed-z-index: 1;\n\n /* Elements that should overlay all other elements on the page */\n --ring-overlay-z-index: 5;\n\n /* Alerts should de displayed above overlays */\n --ring-alert-z-index: 6;\n}\n'],sourceRoot:""}]),a.locals={light:"light_f331"};const l=a},9173:(e,n,t)=>{"use strict";t.d(n,{A:()=>l});var r=t(1404),o=t.n(r),i=t(7156),a=t.n(i)()(o());a.push([e.id,"/* stylelint-disable color-no-hex */\n\n.ring-ui-theme-dark,\n.dark_d4a9,\n:root.dark_d4a9 {\n --ring-line-components: 71, 81, 89;\n --ring-line-color: rgb(var(--ring-line-components)); /* #475159 */\n --ring-borders-components: 64, 99, 128;\n --ring-borders-color: rgb(var(--ring-borders-components)); /* #406380 */\n --ring-icon-components: 128, 146, 157;\n --ring-icon-color: rgb(var(--ring-icon-components)); /* #80929d */\n --ring-icon-secondary-components: 128, 146, 157;\n --ring-icon-secondary-color: rgb(var(--ring-icon-secondary-components)); /* #80929d */\n --ring-border-disabled-components: 54, 54, 54;\n --ring-border-disabled-color: rgb(var(--ring-border-disabled-components)); /* #363636 */\n --ring-border-selected-disabled-components: 54, 54, 54;\n --ring-border-selected-disabled-color: rgb(var(--ring-border-selected-disabled-components)); /* #363636 */\n --ring-border-unselected-disabled-components: 54, 54, 54;\n --ring-border-unselected-disabled-color: rgb(var(--ring-border-unselected-disabled-components)); /* #363636 */ /* TODO remove in 6.0 */\n --ring-icon-disabled-components: 80, 82, 83;\n --ring-icon-disabled-color: rgb(var(--ring-icon-disabled-components)); /* #505253 */\n --ring-border-hover-components: 112, 177, 230;\n --ring-border-hover-color: rgb(var(--ring-border-hover-components)); /* #70b1e6 */\n --ring-main-components: 0, 142, 255;\n --ring-main-color: rgb(var(--ring-main-components)); /* #008eff */\n --ring-action-link-components: var(--ring-main-components);\n --ring-action-link-color: rgb(var(--ring-main-components)); /* #008eff */\n --ring-main-hover-components: 0, 126, 229;\n --ring-main-hover-color: rgb(var(--ring-main-hover-components)); /* #007ee5 */\n --ring-icon-error-components: 219, 88, 96;\n --ring-icon-error-color: rgb(var(--ring-icon-error-components)); /* #db5860 */\n --ring-icon-warning-components: 237, 162, 0;\n --ring-icon-warning-color: rgb(var(--ring-icon-warning-components)); /* #eda200 */\n --ring-icon-success-components: 71, 212, 100;\n --ring-icon-success-color: rgb(var(--ring-icon-success-components)); /* #47d464 */\n --ring-popup-border-components: 0, 42, 76;\n --ring-popup-border-color: rgba(var(--ring-popup-border-components), 0.1);\n --ring-popup-shadow-color: rgba(var(--ring-popup-border-components), 0.15);\n --ring-message-shadow-color: rgba(var(--ring-popup-border-components), 0.3);\n --ring-pinned-shadow-components: 0, 0, 0;\n --ring-pinned-shadow-color: rgb(var(--ring-pinned-shadow-components)); /* #000 */\n --ring-button-danger-hover-color: var(--ring-error-color);\n --ring-button-primary-border-components: 128, 198, 255;\n --ring-button-primary-border-color: rgb(var(--ring-button-primary-border-components)); /* #80c6ff */\n\n /* Text */\n --ring-hint-components: 128, 146, 157;\n --ring-hint-color: rgb(var(--ring-hint-components)); /* #80929d */\n --ring-link-components: 112, 177, 230;\n --ring-link-color: rgb(var(--ring-link-components)); /* #70b1e6 */\n --ring-error-components: 219, 88, 96;\n --ring-error-color: rgb(var(--ring-error-components)); /* #db5860 */\n --ring-warning-components: 237, 162, 0;\n --ring-warning-color: rgb(var(--ring-warning-components)); /* #eda200 */\n --ring-success-components: 71, 212, 100;\n --ring-success-color: rgb(var(--ring-success-components)); /* #47d464 */\n --ring-text-components: 187, 187, 187;\n --ring-text-color: rgb(var(--ring-text-components)); /* #bbb */\n --ring-active-text-components: 255, 255, 255;\n --ring-active-text-color: rgb(var(--ring-active-text-components)); /* #fff */\n --ring-heading-color: var(--ring-text-color);\n --ring-secondary-components: 128, 146, 157;\n --ring-secondary-color: rgb(var(--ring-secondary-components)); /* #80929d */\n --ring-disabled-components: 81, 95, 104;\n --ring-disabled-color: rgb(var(--ring-disabled-components)); /* #515F68 */\n\n /* Background */\n --ring-content-background-components: 35, 39, 43;\n --ring-content-background-color: rgb(var(--ring-content-background-components)); /* #23272b */\n --ring-popup-background-components: 17, 19, 20;\n --ring-popup-background-color: rgb(var(--ring-popup-background-components)); /* #111314 */\n --ring-sidebar-background-components: 40, 52, 61;\n --ring-sidebar-background-color: rgb(var(--ring-sidebar-background-components)); /* #28343d */\n --ring-selected-background-components: 6, 38, 64;\n --ring-selected-background-color: rgb(var(--ring-selected-background-components)); /* #062640 */\n --ring-hover-background-components: 11, 26, 38;\n --ring-hover-background-color: rgb(var(--ring-hover-background-components)); /* #0b1a26 */\n --ring-navigation-background-components: 17, 19, 20;\n --ring-navigation-background-color: rgb(var(--ring-navigation-background-components)); /* #111314 */\n --ring-tag-background-components: 62, 77, 89;\n --ring-tag-background-color: rgb(var(--ring-tag-background-components)); /* #3e4d59 */\n --ring-tag-hover-background-components: 51, 62, 71;\n --ring-tag-hover-background-color: rgb(var(--ring-tag-hover-background-components)); /* #333e47 */\n --ring-removed-background-components: 143, 82, 71;\n --ring-removed-background-color: rgb(var(--ring-removed-background-components)); /* #8f5247 */\n --ring-warning-background-components: 89, 61, 1;\n --ring-warning-background-color: rgb(var(--ring-warning-background-components)); /* #593d01 */\n --ring-added-background-components: 54, 89, 71;\n --ring-added-background-color: rgb(var(--ring-added-background-components)); /* #365947 */\n --ring-disabled-background-components: 44, 47, 51;\n --ring-disabled-background-color: rgb(var(--ring-disabled-background-components)); /* #2C2F33 */\n --ring-disabled-selected-background-components: 44, 47, 51;\n --ring-disabled-selected-background-color: rgb(var(--ring-disabled-selected-background-components)); /* #2C2F33 */\n --ring-button-danger-active-components: 38, 8, 10;\n --ring-button-danger-active-color: rgb(var(--ring-button-danger-active-components)); /* #26080a */\n --ring-button-primary-background-components: 0, 126, 229;\n --ring-button-primary-background-color: rgb(var(--ring-button-primary-background-components)); /* #007ee5 */\n --ring-table-loader-background-color: rgba(var(--ring-content-background-components), 0.5); /* #23272b80 */\n\n /* Code */\n --ring-code-background-components: 43, 43, 43;\n --ring-code-background-color: rgb(var(--ring-code-background-components)); /* #2b2b2b */\n --ring-code-components: 169, 183, 198;\n --ring-code-color: rgb(var(--ring-code-components)); /* #a9b7c6 */\n --ring-code-meta-components: 187, 181, 41;\n --ring-code-meta-color: rgb(var(--ring-code-meta-components)); /* #bbb529 */\n --ring-code-keyword-components: 204, 120, 50;\n --ring-code-keyword-color: rgb(var(--ring-code-keyword-components)); /* #cc7832 */\n --ring-code-tag-background-components: 43, 43, 43;\n --ring-code-tag-background-color: rgb(var(--ring-code-tag-background-components)); /* #2b2b2b */\n --ring-code-tag-components: 232, 191, 106;\n --ring-code-tag-color: rgb(var(--ring-code-tag-components)); /* #e8bf6a */\n --ring-code-tag-font-weight: normal;\n --ring-code-field-components: 152, 118, 170;\n --ring-code-field-color: rgb(var(--ring-code-tag-font-weight)); /* #9876aa */\n --ring-code-attribute-components: 186, 186, 186;\n --ring-code-attribute-color: rgb(var(--ring-code-attribute-components)); /* #bababa */\n --ring-code-number-components: 104, 151, 187;\n --ring-code-number-color: rgb(var(--ring-code-number-components)); /* #6897bb */\n --ring-code-string-components: 106, 135, 89;\n --ring-code-string-color: rgb(var(--ring-code-string-components)); /* #6a8759 */\n --ring-code-addition-components: 68, 113, 82;\n --ring-code-addition-color: rgb(var(--ring-code-addition-components)); /* #447152 */\n --ring-code-deletion-components: 101, 110, 118;\n --ring-code-deletion-color: rgb(var(--ring-code-deletion-components)); /* #656e76 */\n\n color-scheme: dark;\n}\n","",{version:3,sources:["webpack://./node_modules/@jetbrains/ring-ui/components/global/variables_dark.css"],names:[],mappings:"AAAA,mCAAmC;;AAEnC;;;EAGE,kCAAkC;EAClC,mDAAmD,EAAE,YAAY;EACjE,sCAAsC;EACtC,yDAAyD,EAAE,YAAY;EACvE,qCAAqC;EACrC,mDAAmD,EAAE,YAAY;EACjE,+CAA+C;EAC/C,uEAAuE,EAAE,YAAY;EACrF,6CAA6C;EAC7C,yEAAyE,EAAE,YAAY;EACvF,sDAAsD;EACtD,2FAA2F,EAAE,YAAY;EACzG,wDAAwD;EACxD,+FAA+F,EAAE,YAAY,EAAE,uBAAuB;EACtI,2CAA2C;EAC3C,qEAAqE,EAAE,YAAY;EACnF,6CAA6C;EAC7C,mEAAmE,EAAE,YAAY;EACjF,mCAAmC;EACnC,mDAAmD,EAAE,YAAY;EACjE,0DAA0D;EAC1D,0DAA0D,EAAE,YAAY;EACxE,yCAAyC;EACzC,+DAA+D,EAAE,YAAY;EAC7E,yCAAyC;EACzC,+DAA+D,EAAE,YAAY;EAC7E,2CAA2C;EAC3C,mEAAmE,EAAE,YAAY;EACjF,4CAA4C;EAC5C,mEAAmE,EAAE,YAAY;EACjF,yCAAyC;EACzC,yEAAyE;EACzE,0EAA0E;EAC1E,2EAA2E;EAC3E,wCAAwC;EACxC,qEAAqE,EAAE,SAAS;EAChF,yDAAyD;EACzD,sDAAsD;EACtD,qFAAqF,EAAE,YAAY;;EAEnG,SAAS;EACT,qCAAqC;EACrC,mDAAmD,EAAE,YAAY;EACjE,qCAAqC;EACrC,mDAAmD,EAAE,YAAY;EACjE,oCAAoC;EACpC,qDAAqD,EAAE,YAAY;EACnE,sCAAsC;EACtC,yDAAyD,EAAE,YAAY;EACvE,uCAAuC;EACvC,yDAAyD,EAAE,YAAY;EACvE,qCAAqC;EACrC,mDAAmD,EAAE,SAAS;EAC9D,4CAA4C;EAC5C,iEAAiE,EAAE,SAAS;EAC5E,4CAA4C;EAC5C,0CAA0C;EAC1C,6DAA6D,EAAE,YAAY;EAC3E,uCAAuC;EACvC,2DAA2D,EAAE,YAAY;;EAEzE,eAAe;EACf,gDAAgD;EAChD,+EAA+E,EAAE,YAAY;EAC7F,8CAA8C;EAC9C,2EAA2E,EAAE,YAAY;EACzF,gDAAgD;EAChD,+EAA+E,EAAE,YAAY;EAC7F,gDAAgD;EAChD,iFAAiF,EAAE,YAAY;EAC/F,8CAA8C;EAC9C,2EAA2E,EAAE,YAAY;EACzF,mDAAmD;EACnD,qFAAqF,EAAE,YAAY;EACnG,4CAA4C;EAC5C,uEAAuE,EAAE,YAAY;EACrF,kDAAkD;EAClD,mFAAmF,EAAE,YAAY;EACjG,iDAAiD;EACjD,+EAA+E,EAAE,YAAY;EAC7F,+CAA+C;EAC/C,+EAA+E,EAAE,YAAY;EAC7F,8CAA8C;EAC9C,2EAA2E,EAAE,YAAY;EACzF,iDAAiD;EACjD,iFAAiF,EAAE,YAAY;EAC/F,0DAA0D;EAC1D,mGAAmG,EAAE,YAAY;EACjH,iDAAiD;EACjD,mFAAmF,EAAE,YAAY;EACjG,wDAAwD;EACxD,6FAA6F,EAAE,YAAY;EAC3G,0FAA0F,EAAE,cAAc;;EAE1G,SAAS;EACT,6CAA6C;EAC7C,yEAAyE,EAAE,YAAY;EACvF,qCAAqC;EACrC,mDAAmD,EAAE,YAAY;EACjE,yCAAyC;EACzC,6DAA6D,EAAE,YAAY;EAC3E,4CAA4C;EAC5C,mEAAmE,EAAE,YAAY;EACjF,iDAAiD;EACjD,iFAAiF,EAAE,YAAY;EAC/F,yCAAyC;EACzC,2DAA2D,EAAE,YAAY;EACzE,mCAAmC;EACnC,2CAA2C;EAC3C,8DAA8D,EAAE,YAAY;EAC5E,+CAA+C;EAC/C,uEAAuE,EAAE,YAAY;EACrF,4CAA4C;EAC5C,iEAAiE,EAAE,YAAY;EAC/E,2CAA2C;EAC3C,iEAAiE,EAAE,YAAY;EAC/E,4CAA4C;EAC5C,qEAAqE,EAAE,YAAY;EACnF,8CAA8C;EAC9C,qEAAqE,EAAE,YAAY;;EAEnF,kBAAkB;AACpB",sourcesContent:["/* stylelint-disable color-no-hex */\n\n:global(.ring-ui-theme-dark),\n.dark,\n:root.dark {\n --ring-line-components: 71, 81, 89;\n --ring-line-color: rgb(var(--ring-line-components)); /* #475159 */\n --ring-borders-components: 64, 99, 128;\n --ring-borders-color: rgb(var(--ring-borders-components)); /* #406380 */\n --ring-icon-components: 128, 146, 157;\n --ring-icon-color: rgb(var(--ring-icon-components)); /* #80929d */\n --ring-icon-secondary-components: 128, 146, 157;\n --ring-icon-secondary-color: rgb(var(--ring-icon-secondary-components)); /* #80929d */\n --ring-border-disabled-components: 54, 54, 54;\n --ring-border-disabled-color: rgb(var(--ring-border-disabled-components)); /* #363636 */\n --ring-border-selected-disabled-components: 54, 54, 54;\n --ring-border-selected-disabled-color: rgb(var(--ring-border-selected-disabled-components)); /* #363636 */\n --ring-border-unselected-disabled-components: 54, 54, 54;\n --ring-border-unselected-disabled-color: rgb(var(--ring-border-unselected-disabled-components)); /* #363636 */ /* TODO remove in 6.0 */\n --ring-icon-disabled-components: 80, 82, 83;\n --ring-icon-disabled-color: rgb(var(--ring-icon-disabled-components)); /* #505253 */\n --ring-border-hover-components: 112, 177, 230;\n --ring-border-hover-color: rgb(var(--ring-border-hover-components)); /* #70b1e6 */\n --ring-main-components: 0, 142, 255;\n --ring-main-color: rgb(var(--ring-main-components)); /* #008eff */\n --ring-action-link-components: var(--ring-main-components);\n --ring-action-link-color: rgb(var(--ring-main-components)); /* #008eff */\n --ring-main-hover-components: 0, 126, 229;\n --ring-main-hover-color: rgb(var(--ring-main-hover-components)); /* #007ee5 */\n --ring-icon-error-components: 219, 88, 96;\n --ring-icon-error-color: rgb(var(--ring-icon-error-components)); /* #db5860 */\n --ring-icon-warning-components: 237, 162, 0;\n --ring-icon-warning-color: rgb(var(--ring-icon-warning-components)); /* #eda200 */\n --ring-icon-success-components: 71, 212, 100;\n --ring-icon-success-color: rgb(var(--ring-icon-success-components)); /* #47d464 */\n --ring-popup-border-components: 0, 42, 76;\n --ring-popup-border-color: rgba(var(--ring-popup-border-components), 0.1);\n --ring-popup-shadow-color: rgba(var(--ring-popup-border-components), 0.15);\n --ring-message-shadow-color: rgba(var(--ring-popup-border-components), 0.3);\n --ring-pinned-shadow-components: 0, 0, 0;\n --ring-pinned-shadow-color: rgb(var(--ring-pinned-shadow-components)); /* #000 */\n --ring-button-danger-hover-color: var(--ring-error-color);\n --ring-button-primary-border-components: 128, 198, 255;\n --ring-button-primary-border-color: rgb(var(--ring-button-primary-border-components)); /* #80c6ff */\n\n /* Text */\n --ring-hint-components: 128, 146, 157;\n --ring-hint-color: rgb(var(--ring-hint-components)); /* #80929d */\n --ring-link-components: 112, 177, 230;\n --ring-link-color: rgb(var(--ring-link-components)); /* #70b1e6 */\n --ring-error-components: 219, 88, 96;\n --ring-error-color: rgb(var(--ring-error-components)); /* #db5860 */\n --ring-warning-components: 237, 162, 0;\n --ring-warning-color: rgb(var(--ring-warning-components)); /* #eda200 */\n --ring-success-components: 71, 212, 100;\n --ring-success-color: rgb(var(--ring-success-components)); /* #47d464 */\n --ring-text-components: 187, 187, 187;\n --ring-text-color: rgb(var(--ring-text-components)); /* #bbb */\n --ring-active-text-components: 255, 255, 255;\n --ring-active-text-color: rgb(var(--ring-active-text-components)); /* #fff */\n --ring-heading-color: var(--ring-text-color);\n --ring-secondary-components: 128, 146, 157;\n --ring-secondary-color: rgb(var(--ring-secondary-components)); /* #80929d */\n --ring-disabled-components: 81, 95, 104;\n --ring-disabled-color: rgb(var(--ring-disabled-components)); /* #515F68 */\n\n /* Background */\n --ring-content-background-components: 35, 39, 43;\n --ring-content-background-color: rgb(var(--ring-content-background-components)); /* #23272b */\n --ring-popup-background-components: 17, 19, 20;\n --ring-popup-background-color: rgb(var(--ring-popup-background-components)); /* #111314 */\n --ring-sidebar-background-components: 40, 52, 61;\n --ring-sidebar-background-color: rgb(var(--ring-sidebar-background-components)); /* #28343d */\n --ring-selected-background-components: 6, 38, 64;\n --ring-selected-background-color: rgb(var(--ring-selected-background-components)); /* #062640 */\n --ring-hover-background-components: 11, 26, 38;\n --ring-hover-background-color: rgb(var(--ring-hover-background-components)); /* #0b1a26 */\n --ring-navigation-background-components: 17, 19, 20;\n --ring-navigation-background-color: rgb(var(--ring-navigation-background-components)); /* #111314 */\n --ring-tag-background-components: 62, 77, 89;\n --ring-tag-background-color: rgb(var(--ring-tag-background-components)); /* #3e4d59 */\n --ring-tag-hover-background-components: 51, 62, 71;\n --ring-tag-hover-background-color: rgb(var(--ring-tag-hover-background-components)); /* #333e47 */\n --ring-removed-background-components: 143, 82, 71;\n --ring-removed-background-color: rgb(var(--ring-removed-background-components)); /* #8f5247 */\n --ring-warning-background-components: 89, 61, 1;\n --ring-warning-background-color: rgb(var(--ring-warning-background-components)); /* #593d01 */\n --ring-added-background-components: 54, 89, 71;\n --ring-added-background-color: rgb(var(--ring-added-background-components)); /* #365947 */\n --ring-disabled-background-components: 44, 47, 51;\n --ring-disabled-background-color: rgb(var(--ring-disabled-background-components)); /* #2C2F33 */\n --ring-disabled-selected-background-components: 44, 47, 51;\n --ring-disabled-selected-background-color: rgb(var(--ring-disabled-selected-background-components)); /* #2C2F33 */\n --ring-button-danger-active-components: 38, 8, 10;\n --ring-button-danger-active-color: rgb(var(--ring-button-danger-active-components)); /* #26080a */\n --ring-button-primary-background-components: 0, 126, 229;\n --ring-button-primary-background-color: rgb(var(--ring-button-primary-background-components)); /* #007ee5 */\n --ring-table-loader-background-color: rgba(var(--ring-content-background-components), 0.5); /* #23272b80 */\n\n /* Code */\n --ring-code-background-components: 43, 43, 43;\n --ring-code-background-color: rgb(var(--ring-code-background-components)); /* #2b2b2b */\n --ring-code-components: 169, 183, 198;\n --ring-code-color: rgb(var(--ring-code-components)); /* #a9b7c6 */\n --ring-code-meta-components: 187, 181, 41;\n --ring-code-meta-color: rgb(var(--ring-code-meta-components)); /* #bbb529 */\n --ring-code-keyword-components: 204, 120, 50;\n --ring-code-keyword-color: rgb(var(--ring-code-keyword-components)); /* #cc7832 */\n --ring-code-tag-background-components: 43, 43, 43;\n --ring-code-tag-background-color: rgb(var(--ring-code-tag-background-components)); /* #2b2b2b */\n --ring-code-tag-components: 232, 191, 106;\n --ring-code-tag-color: rgb(var(--ring-code-tag-components)); /* #e8bf6a */\n --ring-code-tag-font-weight: normal;\n --ring-code-field-components: 152, 118, 170;\n --ring-code-field-color: rgb(var(--ring-code-tag-font-weight)); /* #9876aa */\n --ring-code-attribute-components: 186, 186, 186;\n --ring-code-attribute-color: rgb(var(--ring-code-attribute-components)); /* #bababa */\n --ring-code-number-components: 104, 151, 187;\n --ring-code-number-color: rgb(var(--ring-code-number-components)); /* #6897bb */\n --ring-code-string-components: 106, 135, 89;\n --ring-code-string-color: rgb(var(--ring-code-string-components)); /* #6a8759 */\n --ring-code-addition-components: 68, 113, 82;\n --ring-code-addition-color: rgb(var(--ring-code-addition-components)); /* #447152 */\n --ring-code-deletion-components: 101, 110, 118;\n --ring-code-deletion-color: rgb(var(--ring-code-deletion-components)); /* #656e76 */\n\n color-scheme: dark;\n}\n"],sourceRoot:""}]),a.locals={dark:"dark_d4a9"};const l=a},5066:(e,n,t)=>{"use strict";t.r(n),t.d(n,{default:()=>u});var r=t(1404),o=t.n(r),i=t(7156),a=t.n(i),l=t(9106),c=t(5280),s=a()(o());s.i(c.A),s.i(l.default,"",!0),s.push([e.id,'.icon_aaa7 {\n display: inline-block;\n\n fill: currentColor;\n}\n\n.glyph_f986 {\n display: inline-flex;\n\n margin-right: -1px;\n margin-left: -1px;\n\n pointer-events: none;\n}\n\n.glyph_f986[width="10"] {\n vertical-align: -1px;\n }\n\n.glyph_f986[width="14"] {\n margin-right: -2px;\n margin-left: 0;\n\n vertical-align: -3px;\n }\n\n.glyph_f986[width="16"] {\n vertical-align: -3px;\n }\n\n.glyph_f986[width="20"] {\n vertical-align: -2px;\n }\n\n.glyph_f986.compatibilityMode_d631 {\n width: 16px;\n height: 16px;\n margin-right: 0;\n margin-left: 0;\n }\n\n/* HACK: This media query hack makes styles applied for WebKit browsers only */\n/* stylelint-disable-next-line media-feature-name-no-vendor-prefix */\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n .glyph_f986 {\n width: auto; /* Safari size bug workaround, see https://youtrack.jetbrains.com/issue/RG-1983 */\n }\n}\n\n.gray_f6a8 {\n color: var(--ring-icon-secondary-color);\n}\n\n.hover_fc27 {\n color: var(--ring-icon-hover-color);\n}\n\n.green_bfb1 {\n color: var(--ring-icon-success-color);\n}\n\n.magenta_b045 {\n color: var(--ring-link-hover-color);\n}\n\n.red_a7ec {\n color: var(--ring-icon-error-color);\n}\n\n.blue_ec1e {\n color: var(--ring-main-color);\n}\n\n.white_c896 {\n color: var(--ring-white-text-color);\n}\n\n.loading_c5e2 {\n animation-name: icon-loading_fe22;\n animation-duration: 1200ms;\n animation-iteration-count: infinite;\n}\n\n@keyframes icon-loading_fe22 {\n 0% {\n transform: scale(1);\n }\n\n 50% {\n transform: scale(0.9);\n\n opacity: 0.5;\n }\n\n 100% {\n transform: scale(1);\n }\n}\n',"",{version:3,sources:["webpack://./node_modules/@jetbrains/ring-ui/components/icon/icon.css"],names:[],mappings:"AAIA;EACE,qBAAqB;;EAErB,kBAAkB;AACpB;;AAEA;EACE,oBAAoB;;EAEpB,kBAAkB;EAClB,iBAAiB;;EAEjB,oBAAoB;AA2BtB;;AAzBE;IACE,oBAAoB;EACtB;;AAEA;IACE,kBAAkB;IAClB,cAAc;;IAEd,oBAAoB;EACtB;;AAEA;IACE,oBAAoB;EACtB;;AAEA;IACE,oBAAoB;EACtB;;AAEA;IACE,WAAqB;IACrB,YAAsB;IACtB,eAAe;IACf,cAAc;EAChB;;AAGF,8EAA8E;AAC9E,oEAAoE;AACpE;EACE;IACE,WAAW,EAAE,iFAAiF;EAChG;AACF;;AAEA;EACE,uCAAuC;AACzC;;AAEA;EACE,mCAAmC;AACrC;;AAEA;EACE,qCAAqC;AACvC;;AAEA;EACE,mCAAmC;AACrC;;AAEA;EACE,mCAAmC;AACrC;;AAEA;EACE,6BAA6B;AAC/B;;AAEA;EACE,mCAAmC;AACrC;;AAEA;EACE,iCAA4B;EAC5B,0BAA0B;EAC1B,mCAAmC;AACrC;;AAEA;EACE;IACE,mBAAmB;EACrB;;EAEA;IACE,qBAAqB;;IAErB,YAAY;EACd;;EAEA;IACE,mBAAmB;EACrB;AACF",sourcesContent:['@import "../global/variables.css";\n\n@value unit from "../global/global.css";\n\n.icon {\n display: inline-block;\n\n fill: currentColor;\n}\n\n.glyph {\n display: inline-flex;\n\n margin-right: -1px;\n margin-left: -1px;\n\n pointer-events: none;\n\n &[width="10"] {\n vertical-align: -1px;\n }\n\n &[width="14"] {\n margin-right: -2px;\n margin-left: 0;\n\n vertical-align: -3px;\n }\n\n &[width="16"] {\n vertical-align: -3px;\n }\n\n &[width="20"] {\n vertical-align: -2px;\n }\n\n &.compatibilityMode {\n width: calc(unit * 2);\n height: calc(unit * 2);\n margin-right: 0;\n margin-left: 0;\n }\n}\n\n/* HACK: This media query hack makes styles applied for WebKit browsers only */\n/* stylelint-disable-next-line media-feature-name-no-vendor-prefix */\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n .glyph {\n width: auto; /* Safari size bug workaround, see https://youtrack.jetbrains.com/issue/RG-1983 */\n }\n}\n\n.gray {\n color: var(--ring-icon-secondary-color);\n}\n\n.hover {\n color: var(--ring-icon-hover-color);\n}\n\n.green {\n color: var(--ring-icon-success-color);\n}\n\n.magenta {\n color: var(--ring-link-hover-color);\n}\n\n.red {\n color: var(--ring-icon-error-color);\n}\n\n.blue {\n color: var(--ring-main-color);\n}\n\n.white {\n color: var(--ring-white-text-color);\n}\n\n.loading {\n animation-name: icon-loading;\n animation-duration: 1200ms;\n animation-iteration-count: infinite;\n}\n\n@keyframes icon-loading {\n 0% {\n transform: scale(1);\n }\n\n 50% {\n transform: scale(0.9);\n\n opacity: 0.5;\n }\n\n 100% {\n transform: scale(1);\n }\n}\n'],sourceRoot:""}]),s.locals={unit:`${l.default.locals.unit}`,icon:"icon_aaa7",glyph:"glyph_f986",compatibilityMode:"compatibilityMode_d631",gray:"gray_f6a8",hover:"hover_fc27",green:"green_bfb1",magenta:"magenta_b045",red:"red_a7ec",blue:"blue_ec1e",white:"white_c896",loading:"loading_c5e2","icon-loading":"icon-loading_fe22"};const u=s},8976:(e,n,t)=>{"use strict";t.r(n),t.d(n,{default:()=>u});var r=t(1404),o=t.n(r),i=t(7156),a=t.n(i),l=t(9106),c=t(5280),s=a()(o());s.i(c.A),s.i(l.default,"",!0),s.push([e.id,":root {\n --ring-input-xs: 96px;\n --ring-input-s: 96px;\n --ring-input-m: 240px;\n --ring-input-l: 400px;\n}\n\n/**\n * @name Input Sizes\n */\n\n/* XS */\n\n.ring-input-size_xs.ring-input-size_xs {\n display: inline-block;\n\n width: 96px;\n\n width: var(--ring-input-xs);\n}\n\n.ring-input-size_xs.ring-input-size_xs ~ .ring-error-bubble {\n left: 98px;\n left: calc(var(--ring-input-xs) + 2px);\n}\n\n/* S */\n\n.ring-input-size_s.ring-input-size_s {\n display: inline-block;\n\n width: 96px;\n\n width: var(--ring-input-s);\n}\n\n.ring-input-size_s.ring-input-size_s ~ .ring-error-bubble {\n left: 98px;\n left: calc(var(--ring-input-s) + 2px);\n}\n\n/* M */\n\n.ring-input-size_m.ring-input-size_m {\n display: inline-block;\n\n width: 240px;\n\n width: var(--ring-input-m);\n}\n\n.ring-input-size_m.ring-input-size_m ~ .ring-error-bubble {\n left: 242px;\n left: calc(var(--ring-input-m) + 2px);\n}\n\n.ring-input-size_md.ring-input-size_md {\n display: inline-block;\n\n width: 240px;\n\n width: var(--ring-input-m);\n}\n\n.ring-input-size_md.ring-input-size_md ~ .ring-error-bubble {\n left: 242px;\n left: calc(var(--ring-input-m) + 2px);\n}\n\n/* L */\n\n.ring-input-size_l.ring-input-size_l {\n display: inline-block;\n\n width: 400px;\n\n width: var(--ring-input-l);\n}\n\n.ring-input-size_l.ring-input-size_l ~ .ring-error-bubble {\n left: 402px;\n left: calc(var(--ring-input-l) + 2px);\n}\n\n.ring-input-height_s.ring-input-height_s {\n --ring-input-padding-block: 1px;\n}\n\n.ring-input-height_m.ring-input-height_m {\n --ring-input-padding-block: 3px;\n}\n\n.ring-input-height_l.ring-input-height_l {\n --ring-input-padding-block: 5px;\n}\n","",{version:3,sources:["webpack://./node_modules/@jetbrains/ring-ui/components/input-size/input-size.css"],names:[],mappings:"AAIA;EACE,qBAAgC;EAChC,oBAA+B;EAC/B,qBAA+B;EAC/B,qBAA+B;AACjC;;AAEA;;EAEE;;AAEF,OAAO;;AAEP;EACE,qBAAqB;;EAErB,WAA2B;;EAA3B,2BAA2B;AAC7B;;AAEA;EACE,UAAsC;EAAtC,sCAAsC;AACxC;;AAEA,MAAM;;AAEN;EACE,qBAAqB;;EAErB,WAA0B;;EAA1B,0BAA0B;AAC5B;;AAEA;EACE,UAAqC;EAArC,qCAAqC;AACvC;;AAEA,MAAM;;AAEN;EACE,qBAAqB;;EAErB,YAA0B;;EAA1B,0BAA0B;AAC5B;;AAEA;EACE,WAAqC;EAArC,qCAAqC;AACvC;;AAEA;EACE,qBAAqB;;EAErB,YAA0B;;EAA1B,0BAA0B;AAC5B;;AAEA;EACE,WAAqC;EAArC,qCAAqC;AACvC;;AAEA,MAAM;;AAEN;EACE,qBAAqB;;EAErB,YAA0B;;EAA1B,0BAA0B;AAC5B;;AAEA;EACE,WAAqC;EAArC,qCAAqC;AACvC;;AAEA;EACE,+BAA+B;AACjC;;AAEA;EACE,+BAA+B;AACjC;;AAEA;EACE,+BAA+B;AACjC",sourcesContent:['@import "../global/variables.css";\n\n@value unit from "../global/global.css";\n\n:root {\n --ring-input-xs: calc(unit * 12);\n --ring-input-s: calc(unit * 12);\n --ring-input-m: calc(unit * 30);\n --ring-input-l: calc(unit * 50);\n}\n\n/**\n * @name Input Sizes\n */\n\n/* XS */\n\n:global(.ring-input-size_xs.ring-input-size_xs) {\n display: inline-block;\n\n width: var(--ring-input-xs);\n}\n\n:global(.ring-input-size_xs.ring-input-size_xs ~ .ring-error-bubble) {\n left: calc(var(--ring-input-xs) + 2px);\n}\n\n/* S */\n\n:global(.ring-input-size_s.ring-input-size_s) {\n display: inline-block;\n\n width: var(--ring-input-s);\n}\n\n:global(.ring-input-size_s.ring-input-size_s ~ .ring-error-bubble) {\n left: calc(var(--ring-input-s) + 2px);\n}\n\n/* M */\n\n:global(.ring-input-size_m.ring-input-size_m) {\n display: inline-block;\n\n width: var(--ring-input-m);\n}\n\n:global(.ring-input-size_m.ring-input-size_m ~ .ring-error-bubble) {\n left: calc(var(--ring-input-m) + 2px);\n}\n\n:global(.ring-input-size_md.ring-input-size_md) {\n display: inline-block;\n\n width: var(--ring-input-m);\n}\n\n:global(.ring-input-size_md.ring-input-size_md ~ .ring-error-bubble) {\n left: calc(var(--ring-input-m) + 2px);\n}\n\n/* L */\n\n:global(.ring-input-size_l.ring-input-size_l) {\n display: inline-block;\n\n width: var(--ring-input-l);\n}\n\n:global(.ring-input-size_l.ring-input-size_l ~ .ring-error-bubble) {\n left: calc(var(--ring-input-l) + 2px);\n}\n\n:global(.ring-input-height_s.ring-input-height_s) {\n --ring-input-padding-block: 1px;\n}\n\n:global(.ring-input-height_m.ring-input-height_m) {\n --ring-input-padding-block: 3px;\n}\n\n:global(.ring-input-height_l.ring-input-height_l) {\n --ring-input-padding-block: 5px;\n}\n'],sourceRoot:""}]),s.locals={unit:`${l.default.locals.unit}`};const u=s},8266:(e,n,t)=>{"use strict";t.r(n),t.d(n,{default:()=>p});var r=t(1404),o=t.n(r),i=t(7156),a=t.n(i),l=t(9106),c=t(5280),s=t(9892),u=a()(o());u.i(c.A),u.i(s.default),u.i(l.default,"",!0),u.push([e.id,'.outerContainer_cb70 {\n --ring-input-icon-offset: 20px;\n --ring-input-padding-inline: 8px;\n --ring-input-background-color: var(--ring-content-background-color);\n}\n\n.borderless_f79b {\n /* stylelint-disable-next-line length-zero-no-unit */\n --ring-input-padding-inline: 0px;\n}\n\n.container_ee33 {\n position: relative;\n\n box-sizing: border-box;\n\n font-size: var(--ring-font-size);\n line-height: var(--ring-line-height);\n}\n\n.container_ee33 * {\n box-sizing: border-box;\n }\n\n.input_f220 {\n --ring-input-padding-start: var(--ring-input-padding-inline);\n --ring-input-padding-end: var(--ring-input-padding-inline);\n\n width: 100%;\n\n margin: 0;\n padding-top: var(--ring-input-padding-block);\n padding-right: var(--ring-input-padding-end);\n padding-bottom: var(--ring-input-padding-block);\n padding-left: var(--ring-input-padding-start);\n\n transition: border-color var(--ring-ease);\n\n color: var(--ring-text-color);\n border: 1px solid var(--ring-borders-color);\n border-radius: var(--ring-border-radius);\n outline: none;\n background-color: var(--ring-input-background-color);\n\n font: inherit;\n\n caret-color: var(--ring-main-color);\n}\n\n[dir="rtl"] .input_f220 {\n padding-right: var(--ring-input-padding-start);\n padding-left: var(--ring-input-padding-end);\n }\n\n@media (hover: hover), (-moz-touch-enabled: 0), (-ms-high-contrast: none), (-ms-high-contrast: active) {.input_f220:hover {\n transition: none;\n\n border-color: var(--ring-border-hover-color);\n }}\n\n.error_ff90 .input_f220 {\n border-color: var(--ring-icon-error-color);\n }\n\n.input_f220:focus {\n transition: none;\n\n border-color: var(--ring-main-color);\n }\n\n.input_f220[disabled] {\n color: var(--ring-disabled-color);\n border-color: var(--ring-border-disabled-color);\n background-color: var(--ring-disabled-background-color);\n\n -webkit-text-fill-color: var(--ring-disabled-color); /* Required for Safari, see RG-2063 for details */\n }\n\n/*\n Kill yellow/blue webkit autocomplete\n https://css-tricks.com/snippets/css/change-autocomplete-styles-webkit-browsers/\n */\n\n@media (hover: hover), (-moz-touch-enabled: 0), (-ms-high-contrast: none), (-ms-high-contrast: active) {.input_f220:-webkit-autofill:hover {\n -webkit-transition: background-color 50000s ease-in-out 0s;\n transition: background-color 50000s ease-in-out 0s;\n }}\n\n.input_f220:-webkit-autofill,\n .input_f220:-webkit-autofill:focus {\n -webkit-transition: background-color 50000s ease-in-out 0s;\n transition: background-color 50000s ease-in-out 0s;\n }\n\n.borderless_f79b .input_f220 {\n border-color: transparent;\n background-color: transparent;\n}\n\n.withIcon_f066 .input_f220 {\n --ring-input-padding-start: calc(var(--ring-input-padding-inline) + var(--ring-input-icon-offset));\n}\n\n.clearable_fd1e .input_f220 {\n --ring-input-padding-end: calc(var(--ring-input-padding-inline) + var(--ring-input-icon-offset));\n}\n\n.icon_e49c {\n position: absolute;\n top: calc(var(--ring-input-padding-block) + 1px);\n left: var(--ring-input-padding-inline);\n\n pointer-events: none;\n\n color: var(--ring-icon-secondary-color);\n}\n\n[dir="rtl"] .icon_e49c {\n right: 8px;\n left: auto;\n }\n\n.clear_ffc3 {\n position: absolute;\n top: calc(var(--ring-input-padding-block) + 2px);\n right: var(--ring-input-padding-inline);\n\n height: auto;\n\n padding-right: 0;\n\n line-height: inherit;\n}\n\n.empty_cc0d .clear_ffc3 {\n display: none;\n }\n\n[dir="rtl"] .clear_ffc3 {\n right: auto;\n left: 8px;\n }\n\ntextarea.input_f220 {\n overflow: hidden;\n\n box-sizing: border-box;\n\n resize: none;\n}\n\n.input_f220::-moz-placeholder {\n color: var(--ring-disabled-color);\n}\n\n.input_f220::placeholder {\n color: var(--ring-disabled-color);\n}\n\n.input_f220::-webkit-search-cancel-button {\n -webkit-appearance: none;\n}\n\n.errorText_e447 {\n margin-top: 4px;\n\n color: var(--ring-error-color);\n\n font-size: var(--ring-font-size-smaller);\n line-height: var(--ring-line-height-lowest);\n}\n\n.sizeS_c560 {\n width: 96px;\n}\n\n.sizeM_aee6 {\n width: 240px;\n}\n\n.sizeL_b0ca {\n width: 400px;\n}\n\n.sizeFULL_f4f9 {\n width: 100%;\n}\n\n.heightS_a68d {\n --ring-input-padding-block: 1px;\n}\n\n.heightM_bc35 {\n --ring-input-padding-block: 3px;\n}\n\n.heightL_f82d {\n --ring-input-padding-block: 5px;\n}\n',"",{version:3,sources:["webpack://./node_modules/@jetbrains/ring-ui/components/input/input.css",""],names:[],mappings:"AAKA;EACE,8BAA0C;EAC1C,gCAAiC;EACjC,mEAAmE;AACrE;;AAEA;EACE,oDAAoD;EACpD,gCAAgC;AAClC;;AAEA;EACE,kBAAkB;;EAElB,sBAAsB;;EAEtB,gCAAgC;EAChC,oCAAoC;AAKtC;;AAHE;IACE,sBAAsB;EACxB;;AAGF;EACE,4DAA4D;EAC5D,0DAA0D;;EAE1D,WAAW;;EAEX,SAAS;EACT,4CAA4C;EAC5C,4CAA4C;EAC5C,+CAA+C;EAC/C,6CAA6C;;EAE7C,yCAAyC;;EAEzC,6BAA6B;EAC7B,2CAA2C;EAC3C,wCAAwC;EACxC,aAAa;EACb,oDAAoD;;EAEpD,aAAa;;EAEb,mCAAmC;AA0CrC;;AAxCE;IACE,8CAA8C;IAC9C,2CAA2C;EAC7C;;ACxDF,wGAAA;IAAA,iBAAA;;IAAA,6CAAA;GAAA,CAAA;;ADgEE;IACE,0CAA0C;EAC5C;;AAEA;IACE,gBAAgB;;IAEhB,oCAAoC;EACtC;;AAEA;IACE,iCAAiC;IACjC,+CAA+C;IAC/C,uDAAuD;;IAEvD,mDAAmD,EAAE,iDAAiD;EACxG;;AAEA;;;GAGC;;ACrFH,wGAAA;MAAA,2DAAA;MAAA,mDAAA;KAAA,CAAA;;ADuFI;;MAGE,0DAAkD;MAAlD,kDAAkD;IACpD;;AAIJ;EACE,yBAAyB;EACzB,6BAA6B;AAC/B;;AAEA;EACE,kGAAkG;AACpG;;AAEA;EACE,gGAAgG;AAClG;;AAEA;EACE,kBAAkB;EAClB,gDAAgD;EAChD,sCAAsC;;EAEtC,oBAAoB;;EAEpB,uCAAuC;AAMzC;;AAJE;IACE,UAAW;IACX,UAAU;EACZ;;AAGF;EACE,kBAAkB;EAClB,gDAAgD;EAChD,uCAAuC;;EAEvC,YAAY;;EAEZ,gBAAgB;;EAEhB,oBAAoB;AAUtB;;AARE;IACE,aAAa;EACf;;AAEA;IACE,WAAW;IACX,SAAU;EACZ;;AAGF;EACE,gBAAgB;;EAEhB,sBAAsB;;EAEtB,YAAY;AACd;;AAEA;EACE,iCAAiC;AACnC;;AAFA;EACE,iCAAiC;AACnC;;AAEA;EACE,wBAAwB;AAC1B;;AAEA;EACE,eAA0B;;EAE1B,8BAA8B;;EAE9B,wCAAwC;EACxC,2CAA2C;AAC7C;;AAEA;EACE,WAAsB;AACxB;;AAEA;EACE,YAAsB;AACxB;;AAEA;EACE,YAAsB;AACxB;;AAEA;EACE,WAAW;AACb;;AAEA;EACE,+BAA+B;AACjC;;AAEA;EACE,+BAA+B;AACjC;;AAEA;EACE,+BAA+B;AACjC",sourcesContent:['@import "../global/variables.css";\n@import "../button/button.css";\n\n@value unit from "../global/global.css";\n\n.outerContainer {\n --ring-input-icon-offset: calc(unit * 2.5);\n --ring-input-padding-inline: unit;\n --ring-input-background-color: var(--ring-content-background-color);\n}\n\n.borderless {\n /* stylelint-disable-next-line length-zero-no-unit */\n --ring-input-padding-inline: 0px;\n}\n\n.container {\n position: relative;\n\n box-sizing: border-box;\n\n font-size: var(--ring-font-size);\n line-height: var(--ring-line-height);\n\n & * {\n box-sizing: border-box;\n }\n}\n\n.input {\n --ring-input-padding-start: var(--ring-input-padding-inline);\n --ring-input-padding-end: var(--ring-input-padding-inline);\n\n width: 100%;\n\n margin: 0;\n padding-top: var(--ring-input-padding-block);\n padding-right: var(--ring-input-padding-end);\n padding-bottom: var(--ring-input-padding-block);\n padding-left: var(--ring-input-padding-start);\n\n transition: border-color var(--ring-ease);\n\n color: var(--ring-text-color);\n border: 1px solid var(--ring-borders-color);\n border-radius: var(--ring-border-radius);\n outline: none;\n background-color: var(--ring-input-background-color);\n\n font: inherit;\n\n caret-color: var(--ring-main-color);\n\n [dir="rtl"] & {\n padding-right: var(--ring-input-padding-start);\n padding-left: var(--ring-input-padding-end);\n }\n\n &:hover {\n transition: none;\n\n border-color: var(--ring-border-hover-color);\n }\n\n .error & {\n border-color: var(--ring-icon-error-color);\n }\n\n &:focus {\n transition: none;\n\n border-color: var(--ring-main-color);\n }\n\n &[disabled] {\n color: var(--ring-disabled-color);\n border-color: var(--ring-border-disabled-color);\n background-color: var(--ring-disabled-background-color);\n\n -webkit-text-fill-color: var(--ring-disabled-color); /* Required for Safari, see RG-2063 for details */\n }\n\n /*\n Kill yellow/blue webkit autocomplete\n https://css-tricks.com/snippets/css/change-autocomplete-styles-webkit-browsers/\n */\n &:-webkit-autofill {\n &,\n &:hover,\n &:focus {\n transition: background-color 50000s ease-in-out 0s;\n }\n }\n}\n\n.borderless .input {\n border-color: transparent;\n background-color: transparent;\n}\n\n.withIcon .input {\n --ring-input-padding-start: calc(var(--ring-input-padding-inline) + var(--ring-input-icon-offset));\n}\n\n.clearable .input {\n --ring-input-padding-end: calc(var(--ring-input-padding-inline) + var(--ring-input-icon-offset));\n}\n\n.icon {\n position: absolute;\n top: calc(var(--ring-input-padding-block) + 1px);\n left: var(--ring-input-padding-inline);\n\n pointer-events: none;\n\n color: var(--ring-icon-secondary-color);\n\n [dir="rtl"] & {\n right: unit;\n left: auto;\n }\n}\n\n.clear {\n position: absolute;\n top: calc(var(--ring-input-padding-block) + 2px);\n right: var(--ring-input-padding-inline);\n\n height: auto;\n\n padding-right: 0;\n\n line-height: inherit;\n\n .empty & {\n display: none;\n }\n\n [dir="rtl"] & {\n right: auto;\n left: unit;\n }\n}\n\ntextarea.input {\n overflow: hidden;\n\n box-sizing: border-box;\n\n resize: none;\n}\n\n.input::placeholder {\n color: var(--ring-disabled-color);\n}\n\n.input::-webkit-search-cancel-button {\n -webkit-appearance: none;\n}\n\n.errorText {\n margin-top: calc(unit / 2);\n\n color: var(--ring-error-color);\n\n font-size: var(--ring-font-size-smaller);\n line-height: var(--ring-line-height-lowest);\n}\n\n.sizeS {\n width: calc(unit * 12);\n}\n\n.sizeM {\n width: calc(unit * 30);\n}\n\n.sizeL {\n width: calc(unit * 50);\n}\n\n.sizeFULL {\n width: 100%;\n}\n\n.heightS {\n --ring-input-padding-block: 1px;\n}\n\n.heightM {\n --ring-input-padding-block: 3px;\n}\n\n.heightL {\n --ring-input-padding-block: 5px;\n}\n',null],sourceRoot:""}]),u.locals={unit:`${l.default.locals.unit}`,outerContainer:"outerContainer_cb70",borderless:"borderless_f79b",container:"container_ee33",input:"input_f220",error:"error_ff90",withIcon:"withIcon_f066",clearable:"clearable_fd1e",icon:"icon_e49c",clear:"clear_ffc3",empty:"empty_cc0d",errorText:"errorText_e447",sizeS:"sizeS_c560",sizeM:"sizeM_aee6",sizeL:"sizeL_b0ca",sizeFULL:"sizeFULL_f4f9",heightS:"heightS_a68d",heightM:"heightM_bc35",heightL:"heightL_f82d"};const p=u},6960:(e,n,t)=>{"use strict";t.r(n),t.d(n,{default:()=>s});var r=t(1404),o=t.n(r),i=t(7156),a=t.n(i),l=t(5280),c=a()(o());c.i(l.A),c.push([e.id,".link_e6e5 {\n cursor: pointer;\n transition: color var(--ring-fast-ease);\n\n color: var(--ring-link-color);\n\n outline: none;\n}\n\n@media (hover: hover), (-moz-touch-enabled: 0), (-ms-high-contrast: none), (-ms-high-contrast: active) {.link_e6e5:hover {\n transition: none;\n\n color: var(--ring-link-hover-color);\n }}\n\n@media (hover: hover), (-moz-touch-enabled: 0), (-ms-high-contrast: none), (-ms-high-contrast: active) {.link_e6e5:hover {\n text-decoration: none;\n }}\n\n.link_e6e5 {\n text-decoration: none;\n }\n\n.link_e6e5.hover_bed7 {\n transition: none;\n\n color: var(--ring-link-hover-color);\n }\n\n@media (hover: hover), (-moz-touch-enabled: 0), (-ms-high-contrast: none), (-ms-high-contrast: active) {.link_e6e5:hover .inner_e3ba {\n border-width: 0;\n border-bottom: 2px solid;\n border-image-source: linear-gradient(currentcolor 50%, transparent 50%);\n border-image-slice: 0 0 100% 0;\n }}\n\n.link_e6e5.active_f804 {\n color: inherit;\n }\n\n@media (hover: hover), (-moz-touch-enabled: 0), (-ms-high-contrast: none), (-ms-high-contrast: active) {.link_e6e5.compatibilityUnderlineMode_e7a0:hover {\n text-decoration: underline;\n\n /* stylelint-disable-next-line selector-max-specificity */\n }\n .link_e6e5.compatibilityUnderlineMode_e7a0:hover .inner_e3ba {\n border: none;\n }}\n\n@media (hover: hover), (-moz-touch-enabled: 0), (-ms-high-contrast: none), (-ms-high-contrast: active) {.link_e6e5.pseudo_d9ae:hover {\n text-decoration: none;\n\n /* stylelint-disable-next-line selector-max-specificity */\n }\n .link_e6e5.pseudo_d9ae:hover .inner_e3ba {\n border: none;\n }}\n\n.link_e6e5:focus-visible {\n box-shadow: 0 0 0 2px var(--ring-border-hover-color);\n }\n\n@media (min-resolution: 2dppx) {@media (hover: hover), (-moz-touch-enabled: 0), (-ms-high-contrast: none), (-ms-high-contrast: active) {.link_e6e5:hover .inner_e3ba {\n border-bottom-width: 1px;\n }}\n}\n\n.text_e98a {\n border-radius: var(--ring-border-radius);\n}\n\n@media (hover: hover), (-moz-touch-enabled: 0), (-ms-high-contrast: none), (-ms-high-contrast: active) {.inherit_d267:not(:hover) {\n color: inherit;\n}}\n\n.pseudo_d9ae {\n margin: 0;\n padding: 0;\n\n text-align: left;\n\n border: 0;\n\n background: transparent;\n\n font: inherit;\n}\n\n.pseudo_d9ae::-moz-focus-inner {\n padding: 0;\n\n border: 0;\n }\n","",{version:3,sources:["webpack://./node_modules/@jetbrains/ring-ui/components/link/link.css",""],names:[],mappings:"AAEA;EACE,eAAe;EACf,uCAAuC;;EAEvC,6BAA6B;;EA2C7B,aAAa;AAKf;;ACtDA,wGAAA;IAAA,iBAAA;;IAAA,oCAAA;GAAA,CAAA;;AAAA,wGAAA;IAAA,sBAAA;GAAA,CAAA;;ADQE;IAEE,qBAAqB;EACvB;;AAEA;IAEE,gBAAgB;;IAEhB,mCAAmC;EACrC;;AClBF,wGAAA;IAAA,gBAAA;IAAA,yBAAA;IAAA,wEAAA;IAAA,+BAAA;GAAA,CAAA;;AD2BE;IACE,cAAc;EAChB;;AC7BF,wGAAA;IAAA,2BAAA;;IAAA,0DAAA;GAAA;IAAA;MAAA,aAAA;KAAA,CAAA;;AAAA,wGAAA;IAAA,sBAAA;;IAAA,0DAAA;GAAA;IAAA;MAAA,aAAA;KAAA,CAAA;;ADmDE;IACE,oDAAoD;EACtD;;AAGF,gCCxDA,wGAAA;IAAA,yBAAA;GAAA,CAAA;AD4DA;;AAEA;EACE,wCAAwC;AAC1C;;AChEA,wGAAA;EAAA,eAAA;CAAA,CAAA;;ADsEA;EACE,SAAS;EACT,UAAU;;EAEV,gBAAgB;;EAEhB,SAAS;;EAET,uBAAuB;;EAEvB,aAAa;AAOf;;AALE;IACE,UAAU;;IAEV,SAAS;EACX",sourcesContent:['@import "../global/variables.css";\n\n.link {\n cursor: pointer;\n transition: color var(--ring-fast-ease);\n\n color: var(--ring-link-color);\n\n &,\n &:hover {\n text-decoration: none;\n }\n\n &:hover,\n &.hover {\n transition: none;\n\n color: var(--ring-link-hover-color);\n }\n\n &:hover .inner {\n border-width: 0;\n border-bottom: 2px solid;\n border-image-source: linear-gradient(currentcolor 50%, transparent 50%);\n border-image-slice: 0 0 100% 0;\n }\n\n &.active {\n color: inherit;\n }\n\n &.compatibilityUnderlineMode:hover {\n text-decoration: underline;\n\n /* stylelint-disable-next-line selector-max-specificity */\n & .inner {\n border: none;\n }\n }\n\n &.pseudo:hover {\n text-decoration: none;\n\n /* stylelint-disable-next-line selector-max-specificity */\n & .inner {\n border: none;\n }\n }\n\n outline: none;\n\n &:focus-visible {\n box-shadow: 0 0 0 2px var(--ring-border-hover-color);\n }\n}\n\n@media (min-resolution: 2dppx) {\n .link:hover .inner {\n border-bottom-width: 1px;\n }\n}\n\n.text {\n border-radius: var(--ring-border-radius);\n}\n\n.inherit:not(:hover) {\n color: inherit;\n}\n\n.pseudo {\n margin: 0;\n padding: 0;\n\n text-align: left;\n\n border: 0;\n\n background: transparent;\n\n font: inherit;\n\n &::-moz-focus-inner {\n padding: 0;\n\n border: 0;\n }\n}\n',null],sourceRoot:""}]),c.locals={link:"link_e6e5",hover:"hover_bed7",inner:"inner_e3ba",active:"active_f804",compatibilityUnderlineMode:"compatibilityUnderlineMode_e7a0",pseudo:"pseudo_d9ae",text:"text_e98a",inherit:"inherit_d267"};const s=c},480:(e,n,t)=>{"use strict";t.r(n),t.d(n,{default:()=>u});var r=t(1404),o=t.n(r),i=t(7156),a=t.n(i),l=t(9106),c=t(5280),s=a()(o());s.i(c.A),s.i(l.default,"",!0),s.push([e.id,'.list_a01c {\n position: relative;\n\n z-index: 1;\n\n border-radius: var(--ring-border-radius);\n\n line-height: normal;\n}\n\n.simpleInner_a4f8 {\n overflow: auto;\n}\n\n.scrolling_a910 {\n pointer-events: none;\n}\n\n.separator_c26e {\n display: block;\n\n min-height: 8px;\n\n margin-top: 8px;\n padding: 0 16px 1px;\n\n text-align: right;\n white-space: nowrap;\n\n color: var(--ring-secondary-color);\n border-top: 1px solid var(--ring-line-color);\n\n font-size: var(--ring-font-size-smaller);\n line-height: var(--ring-line-height-lower);\n}\n\n.separator_first_ec9e {\n margin-top: 0;\n padding-top: 0;\n\n border: none;\n}\n\n.item_eadd {\n display: block;\n\n box-sizing: border-box;\n\n width: 100%;\n\n text-align: left;\n vertical-align: bottom;\n white-space: nowrap;\n text-decoration: none;\n\n outline: none;\n\n font-size: var(--ring-font-size);\n}\n\n.item_eadd.item_eadd {\n padding: 3px 16px 5px;\n\n line-height: 24px;\n}\n\n.itemContainer_f365 {\n position: relative;\n}\n\n.compact_efa8 {\n line-height: 16px;\n}\n\n.error_aa15 {\n cursor: default;\n}\n\n@media (hover: hover), (-moz-touch-enabled: 0), (-ms-high-contrast: none), (-ms-high-contrast: active) {.error_aa15:hover {\n color: var(--ring-error-color);\n }}\n\n/* Override ring-link */\n\n.error_aa15,\n .error_aa15:focus,\n .error_aa15:visited {\n color: var(--ring-error-color);\n }\n\n.add_a8da {\n padding: 8px 16px;\n\n line-height: 32px;\n}\n\n.top_c4d5 {\n display: flex;\n align-items: baseline;\n flex-direction: row;\n}\n\n.left_ea6b {\n align-self: center;\n flex-shrink: 0;\n}\n\n.label_dac9 {\n overflow: hidden;\n flex-grow: 1;\n flex-shrink: 1;\n\n text-align: left;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n\n[dir="rtl"] .label_dac9 {\n text-align: right;\n direction: ltr;\n }\n\n.description_efcc {\n overflow: hidden;\n flex-shrink: 100;\n\n padding-left: 8px;\n\n text-align: right;\n white-space: nowrap;\n text-overflow: ellipsis;\n\n color: var(--ring-secondary-color);\n\n font-size: var(--ring-font-size-smaller);\n font-weight: 400;\n line-height: var(--ring-line-height-lowest);\n}\n\n.right_df77 {\n display: flex;\n align-items: center;\n align-self: center;\n flex-direction: row;\n flex-shrink: 0;\n}\n\n.details_a2b7 {\n margin-bottom: 6px;\n\n white-space: normal;\n\n color: var(--ring-secondary-color);\n\n font-size: var(--ring-font-size-smaller);\n line-height: var(--ring-line-height-lowest);\n}\n\n.padded_a74d {\n margin-left: 20px;\n}\n\n/* Override :last-child */\n.hint_d29d.hint_d29d {\n margin-bottom: 0;\n\n border-top: 1px solid var(--ring-line-color);\n background-color: var(--ring-sidebar-background-color);\n\n font-size: var(--ring-font-size-smaller);\n}\n\n.action_d10e {\n cursor: pointer;\n\n color: var(--ring-text-color);\n}\n\n/* override link */\n.actionLink_a4c7.actionLink_a4c7 {\n transition: none;\n}\n\n.hover_a4cd:not(.error_aa15) {\n background-color: var(--ring-selected-background-color);\n}\n\n.icon_f1f3 {\n display: inline-block;\n\n width: 20px;\n height: 20px;\n margin-left: 16px;\n\n background-repeat: no-repeat;\n background-position: center;\n\n background-size: contain;\n}\n\n.highlight_e4dd {\n color: var(--ring-link-hover-color);\n}\n\n.service_a4fc {\n color: var(--ring-secondary-color);\n}\n\n.glyph_dfd5 {\n float: left;\n\n width: 20px;\n\n margin-right: 8px;\n\n color: var(--ring-icon-secondary-color);\n}\n\n.avatar_f258 {\n\n top: 0;\n\n height: 20px;\n\n -o-object-fit: cover;\n\n object-fit: cover;\n -o-object-position: center;\n object-position: center;\n}\n\n.rightGlyph_fb77 {\n\n float: right;\n\n margin-right: 0;\n margin-left: 16px;\n}\n\n.checkboxContainer_c949 {\n position: absolute;\n top: 7px;\n left: 19px;\n\n width: 20px;\n height: 20px;\n margin-right: 8px;\n}\n\n.compact_efa8 .checkboxContainer_c949 {\n top: 0;\n\n width: 16px;\n height: 16px;\n}\n\n.title_e1bf {\n display: block;\n\n margin-top: 10px;\n margin-bottom: 6px;\n padding: 8px 16px 0;\n\n text-align: left;\n}\n\n[dir="rtl"] .title_e1bf {\n text-align: right;\n direction: ltr;\n }\n\n.title_first_ac55 {\n margin-top: 0;\n}\n\n.text_fe0e {\n letter-spacing: 1.5px;\n text-transform: uppercase;\n\n color: var(--ring-secondary-color);\n\n font-size: var(--ring-font-size-smaller);\n}\n\n.fade_d35c {\n position: absolute;\n bottom: 0;\n\n width: 100%;\n height: 24px;\n\n pointer-events: none;\n\n background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--ring-content-background-color));\n}\n\n.disabled_c3d8 {\n pointer-events: none;\n\n color: var(--ring-disabled-color);\n}\n',"",{version:3,sources:["webpack://./node_modules/@jetbrains/ring-ui/components/list/list.css",""],names:[],mappings:"AAKA;EACE,kBAAkB;;EAElB,UAAU;;EAEV,wCAAwC;;EAExC,mBAAmB;AACrB;;AAEA;EACE,cAAc;AAChB;;AAEA;EACE,oBAAoB;AACtB;;AAEA;EACE,cAAc;;EAEd,eAAuB;;EAEvB,eAAuB;EACvB,mBAA6B;;EAE7B,iBAAiB;EACjB,mBAAmB;;EAEnB,kCAAkC;EAClC,4CAA4C;;EAE5C,wCAAwC;EACxC,0CAA0C;AAC5C;;AAEA;EACE,aAAa;EACb,cAAc;;EAEd,YAAY;AACd;;AAEA;EACE,cAAc;;EAEd,sBAAsB;;EAEtB,WAAW;;EAEX,gBAAgB;EAChB,sBAAsB;EACtB,mBAAmB;EACnB,qBAAqB;;EAErB,aAAa;;EAEb,gCAAgC;AAClC;;AAEA;EACE,qBAA+B;;EAE/B,iBAA2B;AAC7B;;AAEA;EACE,kBAAkB;AACpB;;AAEA;EACE,iBAA2B;AAC7B;;AAEA;EACE,eAAe;AASjB;;ACzFA,wGAAA;IAAA,+BAAA;GAAA,CAAA;;ADkFE,uBAAuB;;AACvB;;;IAIE,8BAA8B;EAChC;;AAGF;EACE,iBAA4B;;EAE5B,iBAA2B;AAC7B;;AAEA;EACE,aAAa;EACb,qBAAqB;EACrB,mBAAmB;AACrB;;AAEA;EACE,kBAAkB;EAClB,cAAc;AAChB;;AAEA;EACE,gBAAgB;EAChB,YAAY;EACZ,cAAc;;EAEd,gBAAgB;EAChB,mBAAmB;EACnB,uBAAuB;AAMzB;;AAJE;IACE,iBAAiB;IACjB,cAAc;EAChB;;AAGF;EACE,gBAAgB;EAChB,gBAAgB;;EAEhB,iBAAkB;;EAElB,iBAAiB;EACjB,mBAAmB;EACnB,uBAAuB;;EAEvB,kCAAkC;;EAElC,wCAAwC;EACxC,gBAAgB;EAChB,2CAA2C;AAC7C;;AAEA;EACE,aAAa;EACb,mBAAmB;EACnB,kBAAkB;EAClB,mBAAmB;EACnB,cAAc;AAChB;;AAEA;EACE,kBAAkB;;EAElB,mBAAmB;;EAEnB,kCAAkC;;EAElC,wCAAwC;EACxC,2CAA2C;AAC7C;;AAEA;EACE,iBAAiB;AACnB;;AAEA,yBAAyB;AACzB;EACE,gBAAgB;;EAEhB,4CAA4C;EAC5C,sDAAsD;;EAEtD,wCAAwC;AAC1C;;AAEA;EACE,eAAe;;EAEf,6BAA6B;AAC/B;;AAEA,kBAAkB;AAClB;EACE,gBAAgB;AAClB;;AAEA;EACE,uDAAuD;AACzD;;AAEA;EACE,qBAAqB;;EAErB,WAAW;EACX,YAAY;EACZ,iBAA2B;;EAE3B,4BAA4B;EAC5B,2BAA2B;;EAE3B,wBAAwB;AAC1B;;AAEA;EACE,mCAAmC;AACrC;;AAEA;EACE,kCAAkC;AACpC;;AAEA;EACE,WAAW;;EAEX,WAAW;;EAEX,iBAAkB;;EAElB,uCAAuC;AACzC;;AAEA;;EAGE,MAAM;;EAEN,YAAY;;EAEZ,oBAAiB;;KAAjB,iBAAiB;EACjB,0BAAuB;KAAvB,uBAAuB;AACzB;;AAEA;;EAGE,YAAY;;EAEZ,eAAe;EACf,iBAA2B;AAC7B;;AAEA;EACE,kBAAkB;EAClB,QAAQ;EACR,UAAU;;EAEV,WAAW;EACX,YAAY;EACZ,iBAAkB;AACpB;;AAEA;EACE,MAAM;;EAEN,WAAqB;EACrB,YAAsB;AACxB;;AAEA;EACE,cAAc;;EAEd,gBAAgB;EAChB,kBAAkB;EAClB,mBAAqC;;EAErC,gBAAgB;AAMlB;;AAJE;IACE,iBAAiB;IACjB,cAAc;EAChB;;AAGF;EACE,aAAa;AACf;;AAEA;EACE,qBAAqB;EACrB,yBAAyB;;EAEzB,kCAAkC;;EAElC,wCAAwC;AAC1C;;AAEA;EACE,kBAAkB;EAClB,SAAS;;EAET,WAAW;EACX,YAAsB;;EAEtB,oBAAoB;;EAEpB,oGAAoG;AACtG;;AAEA;EACE,oBAAoB;;EAEpB,iCAAiC;AACnC",sourcesContent:['@import "../global/variables.css";\n\n@value unit from "../global/global.css";\n@value listSpacing: unit;\n\n.list {\n position: relative;\n\n z-index: 1;\n\n border-radius: var(--ring-border-radius);\n\n line-height: normal;\n}\n\n.simpleInner {\n overflow: auto;\n}\n\n.scrolling {\n pointer-events: none;\n}\n\n.separator {\n display: block;\n\n min-height: listSpacing;\n\n margin-top: listSpacing;\n padding: 0 calc(unit * 2) 1px;\n\n text-align: right;\n white-space: nowrap;\n\n color: var(--ring-secondary-color);\n border-top: 1px solid var(--ring-line-color);\n\n font-size: var(--ring-font-size-smaller);\n line-height: var(--ring-line-height-lower);\n}\n\n.separator_first {\n margin-top: 0;\n padding-top: 0;\n\n border: none;\n}\n\n.item {\n display: block;\n\n box-sizing: border-box;\n\n width: 100%;\n\n text-align: left;\n vertical-align: bottom;\n white-space: nowrap;\n text-decoration: none;\n\n outline: none;\n\n font-size: var(--ring-font-size);\n}\n\n.item.item {\n padding: 3px calc(unit * 2) 5px;\n\n line-height: calc(unit * 3);\n}\n\n.itemContainer {\n position: relative;\n}\n\n.compact {\n line-height: calc(unit * 2);\n}\n\n.error {\n cursor: default;\n\n /* Override ring-link */\n &,\n &:hover,\n &:focus,\n &:visited {\n color: var(--ring-error-color);\n }\n}\n\n.add {\n padding: unit calc(2 * unit);\n\n line-height: calc(4 * unit);\n}\n\n.top {\n display: flex;\n align-items: baseline;\n flex-direction: row;\n}\n\n.left {\n align-self: center;\n flex-shrink: 0;\n}\n\n.label {\n overflow: hidden;\n flex-grow: 1;\n flex-shrink: 1;\n\n text-align: left;\n white-space: nowrap;\n text-overflow: ellipsis;\n\n [dir="rtl"] & {\n text-align: right;\n direction: ltr;\n }\n}\n\n.description {\n overflow: hidden;\n flex-shrink: 100;\n\n padding-left: unit;\n\n text-align: right;\n white-space: nowrap;\n text-overflow: ellipsis;\n\n color: var(--ring-secondary-color);\n\n font-size: var(--ring-font-size-smaller);\n font-weight: 400;\n line-height: var(--ring-line-height-lowest);\n}\n\n.right {\n display: flex;\n align-items: center;\n align-self: center;\n flex-direction: row;\n flex-shrink: 0;\n}\n\n.details {\n margin-bottom: 6px;\n\n white-space: normal;\n\n color: var(--ring-secondary-color);\n\n font-size: var(--ring-font-size-smaller);\n line-height: var(--ring-line-height-lowest);\n}\n\n.padded {\n margin-left: 20px;\n}\n\n/* Override :last-child */\n.hint.hint {\n margin-bottom: 0;\n\n border-top: 1px solid var(--ring-line-color);\n background-color: var(--ring-sidebar-background-color);\n\n font-size: var(--ring-font-size-smaller);\n}\n\n.action {\n cursor: pointer;\n\n color: var(--ring-text-color);\n}\n\n/* override link */\n.actionLink.actionLink {\n transition: none;\n}\n\n.hover:not(.error) {\n background-color: var(--ring-selected-background-color);\n}\n\n.icon {\n display: inline-block;\n\n width: 20px;\n height: 20px;\n margin-left: calc(unit * 2);\n\n background-repeat: no-repeat;\n background-position: center;\n\n background-size: contain;\n}\n\n.highlight {\n color: var(--ring-link-hover-color);\n}\n\n.service {\n color: var(--ring-secondary-color);\n}\n\n.glyph {\n float: left;\n\n width: 20px;\n\n margin-right: unit;\n\n color: var(--ring-icon-secondary-color);\n}\n\n.avatar {\n composes: glyph;\n\n top: 0;\n\n height: 20px;\n\n object-fit: cover;\n object-position: center;\n}\n\n.rightGlyph {\n composes: glyph;\n\n float: right;\n\n margin-right: 0;\n margin-left: calc(unit * 2);\n}\n\n.checkboxContainer {\n position: absolute;\n top: 7px;\n left: 19px;\n\n width: 20px;\n height: 20px;\n margin-right: unit;\n}\n\n.compact .checkboxContainer {\n top: 0;\n\n width: calc(unit * 2);\n height: calc(unit * 2);\n}\n\n.title {\n display: block;\n\n margin-top: 10px;\n margin-bottom: 6px;\n padding: listSpacing calc(unit * 2) 0;\n\n text-align: left;\n\n [dir="rtl"] & {\n text-align: right;\n direction: ltr;\n }\n}\n\n.title_first {\n margin-top: 0;\n}\n\n.text {\n letter-spacing: 1.5px;\n text-transform: uppercase;\n\n color: var(--ring-secondary-color);\n\n font-size: var(--ring-font-size-smaller);\n}\n\n.fade {\n position: absolute;\n bottom: 0;\n\n width: 100%;\n height: calc(unit * 3);\n\n pointer-events: none;\n\n background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--ring-content-background-color));\n}\n\n.disabled {\n pointer-events: none;\n\n color: var(--ring-disabled-color);\n}\n',null],sourceRoot:""}]),s.locals={unit:`${l.default.locals.unit}`,listSpacing:"8px",list:"list_a01c",simpleInner:"simpleInner_a4f8",scrolling:"scrolling_a910",separator:"separator_c26e",separator_first:"separator_first_ec9e",item:"item_eadd",itemContainer:"itemContainer_f365",compact:"compact_efa8",error:"error_aa15",add:"add_a8da",top:"top_c4d5",left:"left_ea6b",label:"label_dac9",description:"description_efcc",right:"right_df77",details:"details_a2b7",padded:"padded_a74d",hint:"hint_d29d",action:"action_d10e",actionLink:"actionLink_a4c7",hover:"hover_a4cd",icon:"icon_f1f3",highlight:"highlight_e4dd",service:"service_a4fc",glyph:"glyph_dfd5",avatar:"avatar_f258 glyph_dfd5",rightGlyph:"rightGlyph_fb77 glyph_dfd5",checkboxContainer:"checkboxContainer_c949",title:"title_e1bf",title_first:"title_first_ac55",text:"text_fe0e",fade:"fade_d35c",disabled:"disabled_c3d8"};const u=s},1586:(e,n,t)=>{"use strict";t.r(n),t.d(n,{default:()=>p});var r=t(1404),o=t.n(r),i=t(7156),a=t.n(i),l=t(9173),c=t(9106),s=t(5280),u=a()(o());u.i(s.A),u.i(l.A,"",!0),u.i(c.default,"",!0),u.push([e.id,`:root {\n /* stylelint-disable-next-line color-no-hex */\n --ring-loader-inline-stops: #ff00eb, #bd3bff, #008eff, #58ba00, #f48700, #ff00eb;\n}\n\n.${l.A.locals.dark},\n.ring-ui-theme-dark {\n /* stylelint-disable-next-line color-no-hex */\n --ring-loader-inline-stops: #ff2eef, #d178ff, #289fff, #88d444, #ffe000, #ff2eef;\n}\n\n@keyframes spin_ad60 {\n 0% {\n transform: rotate(0);\n }\n\n 100% {\n transform: rotate(360deg);\n }\n}\n\n@keyframes pulse_c906 {\n 0% {\n transform: scale(1);\n }\n\n 100% {\n transform: scale(1.41667);\n }\n}\n\n.loader_d294,\n.ring-loader-inline {\n /* needed for better backward-compatibility */\n\n position: relative;\n\n display: inline-block;\n\n overflow: hidden;\n\n transform: rotate(0);\n animation: spin_ad60 1s linear infinite;\n vertical-align: -3px;\n\n border-radius: 8px;\n}\n\n.loader_d294,\n .ring-loader-inline,\n .loader_d294::after,\n .ring-loader-inline::after {\n transform-origin: 50% 50%;\n }\n\n.loader_d294::after, .ring-loader-inline::after {\n display: block;\n\n width: 16px;\n height: 16px;\n\n content: "";\n animation: pulse_c906 0.85s cubic-bezier(0.68, 0, 0.74, 0.74) infinite alternate;\n\n background-image: conic-gradient(#ff00eb, #bd3bff, #008eff, #58ba00, #f48700, #ff00eb);\n\n background-image: conic-gradient(var(--ring-loader-inline-stops));\n -webkit-mask-image: radial-gradient(8px, transparent 71.875%, var(--ring-content-background-color) 71.875%);\n mask-image: radial-gradient(8px, transparent 71.875%, var(--ring-content-background-color) 71.875%);\n }\n\n.children_ece6 {\n margin-left: 4px;\n}\n`,"",{version:3,sources:["webpack://./node_modules/@jetbrains/ring-ui/components/loader-inline/loader-inline.css"],names:[],mappings:"AAKA;EACE,6CAA6C;EAC7C,gFAAgF;AAClF;;AAEA;;EAEE,6CAA6C;EAC7C,gFAAgF;AAClF;;AAEA;EACE;IACE,oBAAoB;EACtB;;EAEA;IACE,yBAAyB;EAC3B;AACF;;AAEA;EACE;IACE,mBAAmB;EACrB;;EAEA;IACE,yBAA+B;EACjC;AACF;;AAEA;;EAEE,6CAA6C;;EAE7C,kBAAkB;;EAElB,qBAAqB;;EAErB,gBAAgB;;EAEhB,oBAAoB;EACpB,uCAAkC;EAClC,oBAAoB;;EAEpB,kBAAmB;AAmBrB;;AAjBE;;;;IAEE,yBAAyB;EAC3B;;AAEA;IACE,cAAc;;IAEd,WAAqB;IACrB,YAAsB;;IAEtB,WAAW;IACX,gFAA2E;;IAE3E,sFAAiE;;IAAjE,iEAAiE;IACjE,2GAAoG;YAApG,mGAAoG;EACtG;;AAGF;EACE,gBAA2B;AAC7B",sourcesContent:['@import "../global/variables.css";\n\n@value dark from "../global/variables_dark.css";\n@value unit from "../global/global.css";\n\n:root {\n /* stylelint-disable-next-line color-no-hex */\n --ring-loader-inline-stops: #ff00eb, #bd3bff, #008eff, #58ba00, #f48700, #ff00eb;\n}\n\n.dark,\n:global(.ring-ui-theme-dark) {\n /* stylelint-disable-next-line color-no-hex */\n --ring-loader-inline-stops: #ff2eef, #d178ff, #289fff, #88d444, #ffe000, #ff2eef;\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0);\n }\n\n 100% {\n transform: rotate(360deg);\n }\n}\n\n@keyframes pulse {\n 0% {\n transform: scale(1);\n }\n\n 100% {\n transform: scale(calc(17 / 12));\n }\n}\n\n.loader,\n:global(.ring-loader-inline) {\n /* needed for better backward-compatibility */\n\n position: relative;\n\n display: inline-block;\n\n overflow: hidden;\n\n transform: rotate(0);\n animation: spin 1s linear infinite;\n vertical-align: -3px;\n\n border-radius: unit;\n\n &,\n &::after {\n transform-origin: 50% 50%;\n }\n\n &::after {\n display: block;\n\n width: calc(unit * 2);\n height: calc(unit * 2);\n\n content: "";\n animation: pulse 0.85s cubic-bezier(0.68, 0, 0.74, 0.74) infinite alternate;\n\n background-image: conic-gradient(var(--ring-loader-inline-stops));\n mask-image: radial-gradient(unit, transparent 71.875%, var(--ring-content-background-color) 71.875%);\n }\n}\n\n.children {\n margin-left: calc(unit / 2);\n}\n'],sourceRoot:""}]),u.locals={dark:`${l.A.locals.dark}`,unit:`${c.default.locals.unit}`,loader:"loader_d294",spin:"spin_ad60",pulse:"pulse_c906",children:"children_ece6"};const p=u},8890:(e,n,t)=>{"use strict";t.r(n),t.d(n,{default:()=>u});var r=t(1404),o=t.n(r),i=t(7156),a=t.n(i),l=t(9106),c=t(5280),s=a()(o());s.i(c.A),s.i(l.default,"",!0),s.push([e.id,".popup_f35e {\n\n position: fixed;\n z-index: var(--ring-overlay-z-index);\n top: -100vh;\n left: -100vw;\n\n overflow-y: auto;\n\n box-sizing: border-box;\n\n border: 1px solid var(--ring-popup-border-color);\n border-radius: var(--ring-border-radius);\n\n background-color: var(--ring-popup-background-color);\n box-shadow: var(--ring-popup-shadow);\n}\n\n.hidden_c587 {\n display: none;\n}\n\n.showing_b07a {\n opacity: 0;\n}\n\n.attached_ea95 {\n border-top: 0;\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n","",{version:3,sources:["webpack://./node_modules/@jetbrains/ring-ui/components/popup/popup.css"],names:[],mappings:"AAEA;;EAGE,eAAe;EACf,oCAAoC;EACpC,WAAW;EACX,YAAY;;EAEZ,gBAAgB;;EAEhB,sBAAsB;;EAEtB,gDAAgD;EAChD,wCAAwC;;EAExC,oDAAoD;EACpD,oCAAoC;AACtC;;AAEA;EACE,aAAa;AACf;;AAEA;EACE,UAAU;AACZ;;AAEA;EACE,aAAa;EACb,yBAAyB;EACzB,0BAA0B;AAC5B",sourcesContent:['@import "../global/variables.css";\n\n.popup {\n composes: font from "../global/global.css";\n\n position: fixed;\n z-index: var(--ring-overlay-z-index);\n top: -100vh;\n left: -100vw;\n\n overflow-y: auto;\n\n box-sizing: border-box;\n\n border: 1px solid var(--ring-popup-border-color);\n border-radius: var(--ring-border-radius);\n\n background-color: var(--ring-popup-background-color);\n box-shadow: var(--ring-popup-shadow);\n}\n\n.hidden {\n display: none;\n}\n\n.showing {\n opacity: 0;\n}\n\n.attached {\n border-top: 0;\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n'],sourceRoot:""}]),s.locals={popup:`popup_f35e ${l.default.locals.font}`,hidden:"hidden_c587",showing:"showing_b07a",attached:"attached_ea95"};const u=s},4481:(e,n,t)=>{"use strict";t.r(n),t.d(n,{default:()=>u});var r=t(1404),o=t.n(r),i=t(7156),a=t.n(i),l=t(9106),c=t(5280),s=a()(o());s.i(c.A),s.i(l.default,"",!0),s.push([e.id,'@media (hover: hover), (-moz-touch-enabled: 0), (-ms-high-contrast: none), (-ms-high-contrast: active) {.filterWithTagsFocused_ffbf.filterWithTagsFocused_ffbf:hover {\n border-color: var(--ring-main-color);\n}}\n\n.filterWithTags_ff56 {\n overflow: hidden;\n\n margin: 16px 8px 0;\n padding: 3px;\n\n text-align: left;\n\n border: 1px solid var(--ring-borders-color);\n border-radius: var(--ring-border-radius);\n}\n\n.filterWithTags_ff56 .filterWrapper_dd63 {\n padding-right: 0;\n padding-left: 0;\n\n border-bottom: none;\n }\n\n@media (hover: hover), (-moz-touch-enabled: 0), (-ms-high-contrast: none), (-ms-high-contrast: active) {.filterWithTags_ff56:hover {\n border-color: var(--ring-border-hover-color);\n }}\n\n.filterWithTagsFocused_ffbf {\n border-color: var(--ring-main-color);\n}\n\n.filterWithTagsInput_ab94 {\n padding: 0;\n\n border: none;\n}\n\n.filter_deda {\n flex-grow: 1;\n\n width: 0;\n}\n\n.popup_f21d {\n overscroll-behavior: contain;\n}\n\n.filterWrapper_dd63 {\n position: relative;\n\n display: flex;\n\n margin: 0;\n padding-right: 8px;\n padding-left: 44px;\n\n border-bottom: 1px solid var(--ring-borders-color);\n}\n\n[dir="rtl"] .filterWrapper_dd63 {\n padding-right: 44px;\n padding-left: 8px;\n }\n\n.filterIcon_b648 {\n position: absolute;\n top: 7px;\n left: 16px;\n\n color: var(--ring-icon-color);\n}\n\n[dir="rtl"] .filterIcon_b648 {\n right: 16px;\n left: auto;\n }\n\n.bottomLine_c880 {\n text-align: center;\n}\n\n.bottomLine_c880.bottomLineOverItem_dfb4 {\n position: relative;\n\n z-index: var(--ring-fixed-z-index);\n\n margin-top: -36px;\n\n background-color: var(--ring-content-background-color);\n }\n\n.message_ccdf {\n display: inline-block;\n\n margin: 8px 0;\n padding: 0 16px;\n}\n\n.selectAll_ff5e {\n display: flex;\n justify-content: space-between;\n\n padding: 8px 16px 0;\n}\n',"",{version:3,sources:["","webpack://./node_modules/@jetbrains/ring-ui/components/select/select-popup.css"],names:[],mappings:"AAAA,wGAAA;EAAA,qCAAA;CAAA,CAAA;;ACIA;EACE,gBAAgB;;EAEhB,kBAA6B;EAC7B,YAAY;;EAEZ,gBAAgB;;EAEhB,2CAA2C;EAC3C,wCAAwC;AAY1C;;AAVE;IACE,gBAAgB;IAChB,eAAe;;IAEf,mBAAmB;EACrB;;ADpBF,wGAAA;IAAA,6CAAA;GAAA,CAAA;;AC2BA;EAEE,oCAAoC;AACtC;;AAEA;EACE,UAAU;;EAEV,YAAY;AACd;;AAEA;EACE,YAAY;;EAEZ,QAAQ;AACV;;AAEA;EACE,4BAA4B;AAC9B;;AAEA;EACE,kBAAkB;;EAElB,aAAa;;EAEb,SAAS;EACT,kBAAmB;EACnB,kBAA8B;;EAE9B,kDAAkD;AAMpD;;AAJE;IACE,mBAA+B;IAC/B,iBAAkB;EACpB;;AAGF;EACE,kBAAkB;EAClB,QAAQ;EACR,UAAoB;;EAEpB,6BAA6B;AAM/B;;AAJE;IACE,WAAqB;IACrB,UAAU;EACZ;;AAGF;EACE,kBAAkB;AAWpB;;AATE;IACE,kBAAkB;;IAElB,kCAAkC;;IAElC,iBAAiB;;IAEjB,sDAAsD;EACxD;;AAGF;EACE,qBAAqB;;EAErB,aAAc;EACd,eAAyB;AAC3B;;AAEA;EACE,aAAa;EACb,8BAA8B;;EAE9B,mBAAmB;AACrB",sourcesContent:[null,'@import "../global/variables.css";\n\n@value unit from "../global/global.css";\n\n.filterWithTags {\n overflow: hidden;\n\n margin: calc(unit * 2) unit 0;\n padding: 3px;\n\n text-align: left;\n\n border: 1px solid var(--ring-borders-color);\n border-radius: var(--ring-border-radius);\n\n & .filterWrapper {\n padding-right: 0;\n padding-left: 0;\n\n border-bottom: none;\n }\n\n &:hover {\n border-color: var(--ring-border-hover-color);\n }\n}\n\n.filterWithTagsFocused,\n.filterWithTagsFocused.filterWithTagsFocused:hover {\n border-color: var(--ring-main-color);\n}\n\n.filterWithTagsInput {\n padding: 0;\n\n border: none;\n}\n\n.filter {\n flex-grow: 1;\n\n width: 0;\n}\n\n.popup {\n overscroll-behavior: contain;\n}\n\n.filterWrapper {\n position: relative;\n\n display: flex;\n\n margin: 0;\n padding-right: unit;\n padding-left: calc(unit * 5.5);\n\n border-bottom: 1px solid var(--ring-borders-color);\n\n [dir="rtl"] & {\n padding-right: calc(unit * 5.5);\n padding-left: unit;\n }\n}\n\n.filterIcon {\n position: absolute;\n top: 7px;\n left: calc(unit * 2);\n\n color: var(--ring-icon-color);\n\n [dir="rtl"] & {\n right: calc(unit * 2);\n left: auto;\n }\n}\n\n.bottomLine {\n text-align: center;\n\n &.bottomLineOverItem {\n position: relative;\n\n z-index: var(--ring-fixed-z-index);\n\n margin-top: -36px;\n\n background-color: var(--ring-content-background-color);\n }\n}\n\n.message {\n display: inline-block;\n\n margin: unit 0;\n padding: 0 calc(2 * unit);\n}\n\n.selectAll {\n display: flex;\n justify-content: space-between;\n\n padding: 8px 16px 0;\n}\n'],sourceRoot:""}]),s.locals={unit:`${l.default.locals.unit}`,filterWithTagsFocused:"filterWithTagsFocused_ffbf",filterWithTags:"filterWithTags_ff56",filterWrapper:"filterWrapper_dd63",filterWithTagsInput:"filterWithTagsInput_ab94",filter:"filter_deda",popup:"popup_f21d",filterIcon:"filterIcon_b648",bottomLine:"bottomLine_c880",bottomLineOverItem:"bottomLineOverItem_dfb4",message:"message_ccdf",selectAll:"selectAll_ff5e"};const u=s},2636:(e,n,t)=>{"use strict";t.r(n),t.d(n,{default:()=>p});var r=t(1404),o=t.n(r),i=t(7156),a=t.n(i),l=t(9106),c=t(9892),s=t(5280),u=a()(o());u.i(s.A),u.i(l.default,"",!0),u.i(c.default,"",!0),u.push([e.id,'@media (hover: hover), (-moz-touch-enabled: 0), (-ms-high-contrast: none), (-ms-high-contrast: active) {.select_e2a5:hover .value_b3a3,\n.select_e2a5:hover .icons_c4a9 {\n transition: none;\n\n color: var(--ring-main-color);\n}}\n\n.select_e2a5 {\n position: relative;\n\n display: inline-block;\n\n white-space: nowrap;\n\n color: var(--ring-text-color);\n}\n\n.toolbar_d3be {\n border-top: 1px solid var(--ring-line-color);\n}\n\n.button_ef00 {\n width: 100%;\n padding: 0;\n\n text-align: left;\n}\n\n[dir="rtl"] .button_ef00 {\n text-align: right;\n direction: ltr;\n }\n\n.toolbar_d3be .button_ef00 {\n height: 32px;\n margin: 8px 0;\n }\n\n.button_ef00.buttonSpaced_f316 {\n padding: 0 16px;\n }\n\n.icons_c4a9 {\n position: absolute;\n top: 0;\n right: 5px;\n bottom: 0;\n\n transition: color var(--ring-ease);\n\n color: var(--ring-icon-secondary-color);\n\n line-height: normal;\n}\n\n.inputMode_a6f6 .icons_c4a9 {\n font-size: var(--ring-font-size);\n }\n\n.selectedIcon_a62c {\n\n position: relative;\n top: 3px;\n\n display: inline-block;\n\n width: 16px;\n height: 16px;\n margin: 0 4px;\n\n background-repeat: no-repeat;\n background-position: center;\n\n background-size: contain;\n}\n\n.clearIcon_c750 {\n padding: 0 3px;\n\n vertical-align: -2px;\n}\n\n.sizeS_e8c3 {\n width: 96px;\n}\n\n.sizeM_ed34 {\n width: 240px;\n}\n\n.sizeL_c053 {\n width: 400px;\n}\n\n.sizeFULL_c585 {\n width: 100%;\n}\n\n.sizeAUTO_a07c {\n max-width: 100%;\n}\n\n.buttonMode_dd69 {\n position: relative;\n\n cursor: pointer;\n}\n\n.value_b3a3 {\n\n display: inline-block;\n\n box-sizing: border-box;\n width: 100%;\n height: 33px;\n padding: 0 0 3px;\n\n cursor: pointer;\n transition: color var(--ring-ease), border-color var(--ring-ease);\n text-align: left;\n vertical-align: top;\n\n color: var(--ring-text-color);\n\n border: none;\n border-bottom: 1px solid var(--ring-borders-color);\n outline: none;\n background: transparent;\n}\n\n.value_b3a3:focus {\n border-color: var(--ring-main-color);\n }\n\n.value_b3a3.open_f1b1,\n .value_b3a3:active {\n border-color: transparent;\n }\n\n.value_b3a3::-moz-focus-inner {\n padding: 0;\n\n border: 0;\n outline: 0;\n }\n\n.buttonContainer_b2b9 {\n position: relative;\n\n font-size: var(--ring-font-size);\n}\n\n.buttonValue_b4ad {\n\n display: block;\n\n width: 100%;\n padding-left: 8px;\n\n text-align: left;\n vertical-align: -8px;\n}\n\n.buttonValue_b4ad:focus-visible {\n box-shadow: inset 0 0 0 1px var(--ring-main-color);\n}\n\n.buttonValueOpen_d9d3.buttonValueOpen_d9d3 {\n box-shadow: inset 0 0 0 1px var(--ring-main-color);\n}\n\n.buttonValueEmpty_e6b3.buttonValueEmpty_e6b3 {\n color: var(--ring-disabled-color);\n}\n\n.heightS_b721 .buttonValue_b4ad {\n font-size: var(--ring-font-size);\n}\n\n.label_e56f {\n position: relative;\n\n color: var(--ring-secondary-color);\n}\n\n:focus-visible + .icons_c4a9,\n.value_b3a3:focus,\n.value_b3a3:focus + .icons_c4a9,\n.open_f1b1,\n.open_f1b1 + .icons_c4a9,\n.buttonValueOpen_d9d3 + .icons_c4a9 {\n transition: none;\n\n color: var(--ring-main-color);\n}\n\n.disabled_b89f {\n pointer-events: none;\n\n color: var(--ring-disabled-color);\n}\n\n.disabled_b89f .value_b3a3 {\n color: var(--ring-disabled-color);\n border-bottom-style: dashed;\n }\n\n.avatar_f4dd {\n margin-right: 4px;\n\n vertical-align: -5px;\n}\n\n.popup_acec {\n min-width: 240px;\n max-width: 320px;\n}\n\n.chevron_d51f.chevron_d51f {\n padding: 0 3px;\n\n transition: none;\n vertical-align: -1px;\n\n color: inherit;\n}\n\n.chevronIcon_f6cf.chevronIcon_f6cf {\n transition: none;\n\n color: inherit;\n}\n',"",{version:3,sources:["","webpack://./node_modules/@jetbrains/ring-ui/components/select/select.css"],names:[],mappings:"AAAA,wGAAA;;EAAA,iBAAA;;EAAA,8BAAA;CAAA,CAAA;;ACKA;EACE,kBAAkB;;EAElB,qBAAqB;;EAErB,mBAAmB;;EAEnB,6BAA6B;AAC/B;;AAEA;EACE,4CAA4C;AAC9C;;AAEA;EACE,WAAW;EACX,UAAU;;EAEV,gBAAgB;AAelB;;AAbE;IACE,iBAAiB;IACjB,cAAc;EAChB;;AAEA;IACE,YAAsB;IACtB,aAAc;EAChB;;AAEA;IACE,eAAyB;EAC3B;;AAGF;EACE,kBAAkB;EAClB,MAAM;EACN,UAAU;EACV,SAAS;;EAET,kCAAkC;;EAElC,uCAAuC;;EAEvC,mBAAmB;AAKrB;;AAHE;IACE,gCAAgC;EAClC;;AAGF;;EAGE,kBAAkB;EAClB,QAAQ;;EAER,qBAAqB;;EAErB,WAAqB;EACrB,YAAsB;EACtB,aAAa;;EAEb,4BAA4B;EAC5B,2BAA2B;;EAE3B,wBAAwB;AAC1B;;AAEA;EACE,cAAc;;EAEd,oBAAoB;AACtB;;AAEA;EACE,WAAsB;AACxB;;AAEA;EACE,YAAsB;AACxB;;AAEA;EACE,YAAsB;AACxB;;AAEA;EACE,WAAW;AACb;;AAEA;EACE,eAAe;AACjB;;AAEA;EACE,kBAAkB;;EAElB,eAAe;AACjB;;AAEA;;EAIE,qBAAqB;;EAErB,sBAAsB;EACtB,WAAW;EACX,YAA4B;EAC5B,gBAAgB;;EAEhB,eAAe;EACf,iEAAiE;EACjE,gBAAgB;EAChB,mBAAmB;;EAEnB,6BAA6B;;EAE7B,YAAY;EACZ,kDAAkD;EAClD,aAAa;EACb,uBAAuB;AAiBzB;;AAfE;IACE,oCAAoC;EACtC;;AAEA;;IAEE,yBAAyB;EAC3B;;AAEA;IACE,UAAU;;IAEV,SAAS;IACT,UAAU;EACZ;;AAGF;EACE,kBAAkB;;EAElB,gCAAgC;AAClC;;AAEA;;EAGE,cAAc;;EAEd,WAAW;EACX,iBAAkB;;EAElB,gBAAgB;EAChB,oBAA8B;AAChC;;AAEA;EACE,kDAAgD;AAClD;;AAEA;EACE,kDAAgD;AAClD;;AAEA;EACE,iCAAiC;AACnC;;AAEA;EACE,gCAAgC;AAClC;;AAEA;EACE,kBAAkB;;EAElB,kCAAkC;AACpC;;AAEA;;;;;;EAQE,gBAAgB;;EAEhB,6BAA6B;AAC/B;;AAEA;EACE,oBAAoB;;EAEpB,iCAAiC;AAMnC;;AAJE;IACE,iCAAiC;IACjC,2BAA2B;EAC7B;;AAGF;EACE,iBAAiB;;EAEjB,oBAAoB;AACtB;;AAEA;EACE,gBAA0B;EAC1B,gBAA0B;AAC5B;;AAEA;EACE,cAAc;;EAEd,gBAAgB;EAChB,oBAAoB;;EAEpB,cAAc;AAChB;;AAEA;EACE,gBAAgB;;EAEhB,cAAc;AAChB",sourcesContent:[null,'@import "../global/variables.css";\n\n@value unit from "../global/global.css";\n@value button-shadow from "../button/button.css";\n\n.select {\n position: relative;\n\n display: inline-block;\n\n white-space: nowrap;\n\n color: var(--ring-text-color);\n}\n\n.toolbar {\n border-top: 1px solid var(--ring-line-color);\n}\n\n.button {\n width: 100%;\n padding: 0;\n\n text-align: left;\n\n [dir="rtl"] & {\n text-align: right;\n direction: ltr;\n }\n\n .toolbar & {\n height: calc(4 * unit);\n margin: unit 0;\n }\n\n &.buttonSpaced {\n padding: 0 calc(2 * unit);\n }\n}\n\n.icons {\n position: absolute;\n top: 0;\n right: 5px;\n bottom: 0;\n\n transition: color var(--ring-ease);\n\n color: var(--ring-icon-secondary-color);\n\n line-height: normal;\n\n .inputMode & {\n font-size: var(--ring-font-size);\n }\n}\n\n.selectedIcon {\n composes: resetButton from "../global/global.css";\n\n position: relative;\n top: 3px;\n\n display: inline-block;\n\n width: calc(2 * unit);\n height: calc(2 * unit);\n margin: 0 4px;\n\n background-repeat: no-repeat;\n background-position: center;\n\n background-size: contain;\n}\n\n.clearIcon {\n padding: 0 3px;\n\n vertical-align: -2px;\n}\n\n.sizeS {\n width: calc(unit * 12);\n}\n\n.sizeM {\n width: calc(unit * 30);\n}\n\n.sizeL {\n width: calc(unit * 50);\n}\n\n.sizeFULL {\n width: 100%;\n}\n\n.sizeAUTO {\n max-width: 100%;\n}\n\n.buttonMode {\n position: relative;\n\n cursor: pointer;\n}\n\n.value {\n composes: ellipsis from "../global/global.css";\n composes: font from "../global/global.css";\n\n display: inline-block;\n\n box-sizing: border-box;\n width: 100%;\n height: calc(unit * 4 + 1px);\n padding: 0 0 3px;\n\n cursor: pointer;\n transition: color var(--ring-ease), border-color var(--ring-ease);\n text-align: left;\n vertical-align: top;\n\n color: var(--ring-text-color);\n\n border: none;\n border-bottom: 1px solid var(--ring-borders-color);\n outline: none;\n background: transparent;\n\n &:focus {\n border-color: var(--ring-main-color);\n }\n\n &.open,\n &:active {\n border-color: transparent;\n }\n\n &::-moz-focus-inner {\n padding: 0;\n\n border: 0;\n outline: 0;\n }\n}\n\n.buttonContainer {\n position: relative;\n\n font-size: var(--ring-font-size);\n}\n\n.buttonValue {\n composes: ellipsis from "../global/global.css";\n\n display: block;\n\n width: 100%;\n padding-left: unit;\n\n text-align: left;\n vertical-align: calc(0 - unit);\n}\n\n.buttonValue:focus-visible {\n box-shadow: button-shadow var(--ring-main-color);\n}\n\n.buttonValueOpen.buttonValueOpen {\n box-shadow: button-shadow var(--ring-main-color);\n}\n\n.buttonValueEmpty.buttonValueEmpty {\n color: var(--ring-disabled-color);\n}\n\n.heightS .buttonValue {\n font-size: var(--ring-font-size);\n}\n\n.label {\n position: relative;\n\n color: var(--ring-secondary-color);\n}\n\n.select:hover .value,\n.select:hover .icons,\n:focus-visible + .icons,\n.value:focus,\n.value:focus + .icons,\n.open,\n.open + .icons,\n.buttonValueOpen + .icons {\n transition: none;\n\n color: var(--ring-main-color);\n}\n\n.disabled {\n pointer-events: none;\n\n color: var(--ring-disabled-color);\n\n & .value {\n color: var(--ring-disabled-color);\n border-bottom-style: dashed;\n }\n}\n\n.avatar {\n margin-right: 4px;\n\n vertical-align: -5px;\n}\n\n.popup {\n min-width: calc(unit * 30);\n max-width: calc(unit * 40);\n}\n\n.chevron.chevron {\n padding: 0 3px;\n\n transition: none;\n vertical-align: -1px;\n\n color: inherit;\n}\n\n.chevronIcon.chevronIcon {\n transition: none;\n\n color: inherit;\n}\n'],sourceRoot:""}]),u.locals={unit:`${l.default.locals.unit}`,"button-shadow":`${c.default.locals["button-shadow"]}`,select:"select_e2a5",value:`value_b3a3 ${l.default.locals.ellipsis} ${l.default.locals.font}`,icons:"icons_c4a9",toolbar:"toolbar_d3be",button:"button_ef00",buttonSpaced:"buttonSpaced_f316",inputMode:"inputMode_a6f6",selectedIcon:`selectedIcon_a62c ${l.default.locals.resetButton}`,clearIcon:"clearIcon_c750",sizeS:"sizeS_e8c3",sizeM:"sizeM_ed34",sizeL:"sizeL_c053",sizeFULL:"sizeFULL_c585",sizeAUTO:"sizeAUTO_a07c",buttonMode:"buttonMode_dd69",open:"open_f1b1",buttonContainer:"buttonContainer_b2b9",buttonValue:`buttonValue_b4ad ${l.default.locals.ellipsis}`,buttonValueOpen:"buttonValueOpen_d9d3",buttonValueEmpty:"buttonValueEmpty_e6b3",heightS:"heightS_b721",label:"label_e56f",disabled:"disabled_b89f",avatar:"avatar_f4dd",popup:"popup_acec",chevron:"chevron_d51f",chevronIcon:"chevronIcon_f6cf"};const p=u},8102:(e,n,t)=>{"use strict";t.r(n),t.d(n,{default:()=>s});var r=t(1404),o=t.n(r),i=t(7156),a=t.n(i),l=t(5280),c=a()(o());c.i(l.A),c.push([e.id,".trapButton_c32e {\n position: absolute;\n left: -9999px;\n}\n","",{version:3,sources:["webpack://./node_modules/@jetbrains/ring-ui/components/tab-trap/tab-trap.css"],names:[],mappings:"AAEA;EACE,kBAAkB;EAClB,aAAa;AACf",sourcesContent:['@import "../global/variables.css";\n\n.trapButton {\n position: absolute;\n left: -9999px;\n}\n'],sourceRoot:""}]),c.locals={trapButton:"trapButton_c32e"};const s=c},4561:(e,n,t)=>{"use strict";t.r(n),t.d(n,{default:()=>u});var r=t(1404),o=t.n(r),i=t(7156),a=t.n(i),l=t(9106),c=t(5280),s=a()(o());s.i(c.A),s.i(l.default,"",!0),s.push([e.id,'@media (hover: hover), (-moz-touch-enabled: 0), (-ms-high-contrast: none), (-ms-high-contrast: active) {.tag_b7aa:hover,\n.tagAngled_c869:hover::before {\n transition: none;\n\n background-color: var(--ring-tag-hover-background-color);\n}}\n\n.tag_b7aa {\n\n position: relative;\n z-index: 1;\n\n display: inline-flex;\n\n box-sizing: border-box;\n max-width: 100%;\n height: 20px;\n\n padding: 0 8px;\n\n cursor: pointer;\n\n vertical-align: top;\n\n color: var(--ring-text-color);\n\n border: none;\n border-radius: var(--ring-border-radius);\n\n font-size: 12px;\n line-height: var(--ring-line-height);\n}\n\n.tag_b7aa,\n.tagAngled_c869::before {\n transition: background-color var(--ring-ease);\n\n background-color: var(--ring-tag-background-color);\n}\n\n.withRemove_c0a5 {\n padding-right: 22px;\n}\n\n.container_cb34 {\n position: relative;\n\n display: inline-block;\n\n max-width: calc(100% - 4px);\n\n margin-right: 4px;\n\n white-space: nowrap;\n}\n\n.focused_fd92,\n.tag_b7aa:focus-visible {\n position: relative;\n\n outline: none;\n box-shadow: 0 0 0 2px var(--ring-border-hover-color);\n}\n\n.focused_fd92,\n.focused_fd92.tagAngled_c869::before,\n.tag_b7aa:focus-visible,\n.tagAngled_c869:focus-visible::before {\n transition: none;\n\n background-color: var(--ring-tag-hover-background-color);\n}\n\n.tagAngled_c869 {\n /* it needs to fix vertical alignment broken by "overflow: hidden". Remove this class, when IE11 will be deprecated */\n\n margin-bottom: -5px !important;\n\n margin-left: 8px;\n padding-left: 4px;\n\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.tagAngled_c869::before {\n position: absolute;\n z-index: -1;\n top: 0;\n left: 0;\n\n box-sizing: border-box;\n width: 12px;\n height: 12px;\n\n content: "";\n transform: scaleY(1.177) rotate(45deg);\n transform-origin: 0 0;\n\n border: none;\n }\n\n.tagAngled_c869.focused_fd92,\n .tagAngled_c869:focus {\n box-shadow: 0 0 0 1px var(--ring-border-hover-color) inset, 0 0 0 1px var(--ring-border-hover-color);\n }\n\n.tagAngled_c869:focus::before {\n box-shadow:\n 1px -1px var(--ring-border-hover-color) inset,\n -0.8px 0.8px 0 0.5px var(--ring-border-hover-color);\n }\n\n.content_a838 {\n}\n\n.disabled_b740.tag_b7aa,\n.disabled_b740.tagAngled_c869::before {\n pointer-events: none;\n\n color: var(--ring-disabled-color);\n background-color: var(--ring-disabled-background-color);\n}\n\n.remove_eff8 {\n position: absolute;\n z-index: 1;\n top: 2px;\n right: 0;\n\n height: auto;\n padding: 0 4px;\n\n line-height: 16px;\n}\n\n.removeIcon_accf.removeIcon_accf {\n color: var(--ring-icon-secondary-color);\n}\n\n.icon_e877 {\n margin-right: 6px;\n\n color: var(--ring-icon-secondary-color);\n}\n\n.icon_e877 svg {\n vertical-align: -3px;\n }\n\n.avatarContainer_ee1b {\n display: inline-block;\n overflow: hidden;\n\n box-sizing: border-box;\n width: 20px;\n height: 20px;\n margin-right: 4px;\n margin-left: -8px;\n\n vertical-align: top;\n\n border-top-left-radius: var(--ring-border-radius);\n border-bottom-left-radius: var(--ring-border-radius);\n}\n\n.customIcon_ac93 {\n max-width: 16px;\n max-height: 16px;\n\n margin-right: 4px;\n\n vertical-align: bottom;\n}\n\n.avatarIcon_a8ff {\n width: 20px;\n\n margin-right: -4px;\n\n -o-object-fit: contain;\n\n object-fit: contain;\n -o-object-position: center;\n object-position: center;\n}\n',"",{version:3,sources:["","webpack://./node_modules/@jetbrains/ring-ui/components/tag/tag.css"],names:[],mappings:"AAAA,wGAAA;;EAAA,iBAAA;;EAAA,yDAAA;CAAA,CAAA;;ACKA;;EAGE,kBAAkB;EAClB,UAAU;;EAEV,oBAAoB;;EAEpB,sBAAsB;EACtB,eAAe;EACf,YAAkB;;EAElB,cAAe;;EAEf,eAAe;;EAEf,mBAAmB;;EAEnB,6BAA6B;;EAE7B,YAAY;EACZ,wCAAwC;;EAExC,eAAe;EACf,oCAAoC;AACtC;;AAEA;;EAEE,6CAA6C;;EAE7C,kDAAkD;AACpD;;AAEA;EACE,mBAAmB;AACrB;;AAEA;EACE,kBAAkB;;EAElB,qBAAqB;;EAErB,2BAAgC;;EAEhC,iBAA4B;;EAE5B,mBAAmB;AACrB;;AAEA;;EAEE,kBAAkB;;EAElB,aAAa;EACb,oDAAoD;AACtD;;AAEA;;;;EAME,gBAAgB;;EAEhB,wDAAwD;AAC1D;;AAEA;EACE,qHAAqH;;EAErH,8BAA8B;;EAE9B,gBAAiB;EACjB,iBAA4B;;EAE5B,yBAAyB;EACzB,4BAA4B;AA6B9B;;AA3BE;IACE,kBAAkB;IAClB,WAAW;IACX,MAAM;IACN,OAAO;;IAEP,sBAAsB;IACtB,WAAW;IACX,YAAY;;IAEZ,WAAW;IACX,sCAAsC;IACtC,qBAAqB;;IAErB,YAAY;EACd;;AAEA;;IAEE,oGAAoG;EACtG;;AAEA;IACE;;yDAEqD;EACvD;;AAGF;AAEA;;AAEA;;EAEE,oBAAoB;;EAEpB,iCAAiC;EACjC,uDAAuD;AACzD;;AAEA;EACE,kBAAkB;EAClB,UAAU;EACV,QAAQ;EACR,QAAQ;;EAER,YAAY;EACZ,cAAyB;;EAEzB,iBAA2B;AAC7B;;AAEA;EACE,uCAAuC;AACzC;;AAEA;EACE,iBAAiB;;EAEjB,uCAAuC;AAKzC;;AAHE;IACE,oBAAoB;EACtB;;AAGF;EACE,qBAAqB;EACrB,gBAAgB;;EAEhB,sBAAsB;EACtB,WAAiB;EACjB,YAAkB;EAClB,iBAA4B;EAC5B,iBAA2B;;EAE3B,mBAAmB;;EAEnB,iDAAiD;EACjD,oDAAoD;AACtD;;AAEA;EACE,eAAyB;EACzB,gBAA0B;;EAE1B,iBAA4B;;EAE5B,sBAAsB;AACxB;;AAEA;EACE,WAAiB;;EAEjB,kBAAkB;;EAElB,sBAAmB;;KAAnB,mBAAmB;EACnB,0BAAuB;KAAvB,uBAAuB;AACzB",sourcesContent:[null,'@import "../global/variables.css";\n\n@value unit from "../global/global.css";\n@value max-height: 20px;\n\n.tag {\n composes: resetButton from "../global/global.css";\n\n position: relative;\n z-index: 1;\n\n display: inline-flex;\n\n box-sizing: border-box;\n max-width: 100%;\n height: max-height;\n\n padding: 0 unit;\n\n cursor: pointer;\n\n vertical-align: top;\n\n color: var(--ring-text-color);\n\n border: none;\n border-radius: var(--ring-border-radius);\n\n font-size: 12px;\n line-height: var(--ring-line-height);\n}\n\n.tag,\n.tagAngled::before {\n transition: background-color var(--ring-ease);\n\n background-color: var(--ring-tag-background-color);\n}\n\n.withRemove {\n padding-right: 22px;\n}\n\n.container {\n position: relative;\n\n display: inline-block;\n\n max-width: calc(100% - unit / 2);\n\n margin-right: calc(unit / 2);\n\n white-space: nowrap;\n}\n\n.focused,\n.tag:focus-visible {\n position: relative;\n\n outline: none;\n box-shadow: 0 0 0 2px var(--ring-border-hover-color);\n}\n\n.focused,\n.focused.tagAngled::before,\n.tag:focus-visible,\n.tagAngled:focus-visible::before,\n.tag:hover,\n.tagAngled:hover::before {\n transition: none;\n\n background-color: var(--ring-tag-hover-background-color);\n}\n\n.tagAngled {\n /* it needs to fix vertical alignment broken by "overflow: hidden". Remove this class, when IE11 will be deprecated */\n\n margin-bottom: -5px !important;\n\n margin-left: unit;\n padding-left: calc(unit / 2);\n\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n\n &::before {\n position: absolute;\n z-index: -1;\n top: 0;\n left: 0;\n\n box-sizing: border-box;\n width: 12px;\n height: 12px;\n\n content: "";\n transform: scaleY(1.177) rotate(45deg);\n transform-origin: 0 0;\n\n border: none;\n }\n\n &.focused,\n &:focus {\n box-shadow: 0 0 0 1px var(--ring-border-hover-color) inset, 0 0 0 1px var(--ring-border-hover-color);\n }\n\n &:focus::before {\n box-shadow:\n 1px -1px var(--ring-border-hover-color) inset,\n -0.8px 0.8px 0 0.5px var(--ring-border-hover-color);\n }\n}\n\n.content {\n composes: ellipsis from "../global/global.css";\n}\n\n.disabled.tag,\n.disabled.tagAngled::before {\n pointer-events: none;\n\n color: var(--ring-disabled-color);\n background-color: var(--ring-disabled-background-color);\n}\n\n.remove {\n position: absolute;\n z-index: 1;\n top: 2px;\n right: 0;\n\n height: auto;\n padding: 0 calc(unit / 2);\n\n line-height: calc(unit * 2);\n}\n\n.removeIcon.removeIcon {\n color: var(--ring-icon-secondary-color);\n}\n\n.icon {\n margin-right: 6px;\n\n color: var(--ring-icon-secondary-color);\n\n & svg {\n vertical-align: -3px;\n }\n}\n\n.avatarContainer {\n display: inline-block;\n overflow: hidden;\n\n box-sizing: border-box;\n width: max-height;\n height: max-height;\n margin-right: calc(unit / 2);\n margin-left: calc(0 - unit);\n\n vertical-align: top;\n\n border-top-left-radius: var(--ring-border-radius);\n border-bottom-left-radius: var(--ring-border-radius);\n}\n\n.customIcon {\n max-width: calc(unit * 2);\n max-height: calc(unit * 2);\n\n margin-right: calc(unit / 2);\n\n vertical-align: bottom;\n}\n\n.avatarIcon {\n width: max-height;\n\n margin-right: -4px;\n\n object-fit: contain;\n object-position: center;\n}\n'],sourceRoot:""}]),s.locals={unit:`${l.default.locals.unit}`,"max-height":"20px",tag:`tag_b7aa ${l.default.locals.resetButton}`,tagAngled:"tagAngled_c869",withRemove:"withRemove_c0a5",container:"container_cb34",focused:"focused_fd92",content:`content_a838 ${l.default.locals.ellipsis}`,disabled:"disabled_b740",remove:"remove_eff8",removeIcon:"removeIcon_accf",icon:"icon_e877",avatarContainer:"avatarContainer_ee1b",customIcon:"customIcon_ac93",avatarIcon:"avatarIcon_a8ff"};const u=s},6162:(e,n,t)=>{"use strict";t.r(n),t.d(n,{default:()=>s});var r=t(1404),o=t.n(r),i=t(7156),a=t.n(i),l=t(5280),c=a()(o());c.i(l.A),c.push([e.id,".text_f1dc {\n color: var(--ring-text-color);\n}\n\n.sizeS_b3aa {\n font-size: var(--ring-font-size-smaller);\n}\n\n.sizeM_ae72 {\n font-size: var(--ring-font-size);\n}\n\n.sizeL_f259 {\n font-size: var(--ring-font-size-larger);\n}\n\n.info_c0a4 {\n color: var(--ring-secondary-color);\n}\n","",{version:3,sources:["webpack://./node_modules/@jetbrains/ring-ui/components/text/text.css"],names:[],mappings:"AAEA;EACE,6BAA6B;AAC/B;;AAEA;EACE,wCAAwC;AAC1C;;AAEA;EACE,gCAAgC;AAClC;;AAEA;EACE,uCAAuC;AACzC;;AAEA;EACE,kCAAkC;AACpC",sourcesContent:['@import "../global/variables.css";\n\n.text {\n color: var(--ring-text-color);\n}\n\n.sizeS {\n font-size: var(--ring-font-size-smaller);\n}\n\n.sizeM {\n font-size: var(--ring-font-size);\n}\n\n.sizeL {\n font-size: var(--ring-font-size-larger);\n}\n\n.info {\n color: var(--ring-secondary-color);\n}\n'],sourceRoot:""}]),c.locals={text:"text_f1dc",sizeS:"sizeS_b3aa",sizeM:"sizeM_ae72",sizeL:"sizeL_f259",info:"info_c0a4"};const s=c},938:(e,n,t)=>{"use strict";t.r(n),t.d(n,{default:()=>u});var r=t(1404),o=t.n(r),i=t(7156),a=t.n(i),l=t(9106),c=t(5280),s=a()(o());s.i(c.A),s.i(l.default,"",!0),s.push([e.id,".tooltip_fbfb {\n max-width: 400px;\n padding: 8px;\n\n text-align: left;\n\n color: var(--ring-text-color);\n}\n\n.long_b7a5 {\n padding: 8px 12px;\n\n font-size: var(--ring-font-size-smaller);\n line-height: var(--ring-line-height-lowest);\n}\n","",{version:3,sources:["webpack://./node_modules/@jetbrains/ring-ui/components/tooltip/tooltip.css"],names:[],mappings:"AAIA;EACE,gBAA0B;EAC1B,YAAa;;EAEb,gBAAgB;;EAEhB,6BAA6B;AAC/B;;AAEA;EACE,iBAA8B;;EAE9B,wCAAwC;EACxC,2CAA2C;AAC7C",sourcesContent:['@import "../global/variables.css";\n\n@value unit from "../global/global.css";\n\n.tooltip {\n max-width: calc(unit * 50);\n padding: unit;\n\n text-align: left;\n\n color: var(--ring-text-color);\n}\n\n.long {\n padding: unit calc(unit * 1.5);\n\n font-size: var(--ring-font-size-smaller);\n line-height: var(--ring-line-height-lowest);\n}\n'],sourceRoot:""}]),s.locals={unit:`${l.default.locals.unit}`,tooltip:"tooltip_fbfb",long:"long_b7a5"};const u=s},7156:e=>{"use strict";e.exports=function(e){var n=[];return n.toString=function(){return this.map((function(n){var t="",r=void 0!==n[5];return n[4]&&(t+="@supports (".concat(n[4],") {")),n[2]&&(t+="@media ".concat(n[2]," {")),r&&(t+="@layer".concat(n[5].length>0?" ".concat(n[5]):""," {")),t+=e(n),r&&(t+="}"),n[2]&&(t+="}"),n[4]&&(t+="}"),t})).join("")},n.i=function(e,t,r,o,i){"string"==typeof e&&(e=[[null,e,void 0]]);var a={};if(r)for(var l=0;l0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=i),t&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=t):u[2]=t),o&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=o):u[4]="".concat(o)),n.push(u))}},n}},1404:e=>{"use strict";e.exports=function(e){var n=e[1],t=e[3];if(!t)return n;if("function"==typeof btoa){var r=btoa(unescape(encodeURIComponent(JSON.stringify(t)))),o="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(r),i="/*# ".concat(o," */");return[n].concat([i]).join("\n")}return[n].join("\n")}},4504:(e,n,t)=>{var r=t(8298),o=t(5163),i=t(2729),a=t(9986),l=t(9742),c=t(6291),s=t(7222);s=s.__esModule?s.default:s;var u={};u.styleTagTransform=c,u.setAttributes=a,u.insert=i.bind(null,"head"),u.domAPI=o,u.insertStyleElement=l;r(s,u);e.exports=s&&s.locals||{}},9102:(e,n,t)=>{var r=t(8298),o=t(5163),i=t(2729),a=t(9986),l=t(9742),c=t(6291),s=t(9892);s=s.__esModule?s.default:s;var u={};u.styleTagTransform=c,u.setAttributes=a,u.insert=i.bind(null,"head"),u.domAPI=o,u.insertStyleElement=l;r(s,u);e.exports=s&&s.locals||{}},6860:(e,n,t)=>{var r=t(8298),o=t(5163),i=t(2729),a=t(9986),l=t(9742),c=t(6291),s=t(1866);s=s.__esModule?s.default:s;var u={};u.styleTagTransform=c,u.setAttributes=a,u.insert=i.bind(null,"head"),u.domAPI=o,u.insertStyleElement=l;r(s,u);e.exports=s&&s.locals||{}},3912:(e,n,t)=>{var r=t(8298),o=t(5163),i=t(2729),a=t(9986),l=t(9742),c=t(6291),s=t(5486);s=s.__esModule?s.default:s;var u={};u.styleTagTransform=c,u.setAttributes=a,u.insert=i.bind(null,"head"),u.domAPI=o,u.insertStyleElement=l;r(s,u);e.exports=s&&s.locals||{}},8764:(e,n,t)=>{var r=t(8298),o=t(5163),i=t(2729),a=t(9986),l=t(9742),c=t(6291),s=t(6506);s=s.__esModule?s.default:s;var u={};u.styleTagTransform=c,u.setAttributes=a,u.insert=i.bind(null,"head"),u.domAPI=o,u.insertStyleElement=l;r(s,u);e.exports=s&&s.locals||{}},6620:(e,n,t)=>{var r=t(8298),o=t(5163),i=t(2729),a=t(9986),l=t(9742),c=t(6291),s=t(9106);s=s.__esModule?s.default:s;var u={};u.styleTagTransform=c,u.setAttributes=a,u.insert=i.bind(null,"head"),u.domAPI=o,u.insertStyleElement=l;r(s,u);e.exports=s&&s.locals||{}},9468:(e,n,t)=>{var r=t(8298),o=t(5163),i=t(2729),a=t(9986),l=t(9742),c=t(6291),s=t(5066);s=s.__esModule?s.default:s;var u={};u.styleTagTransform=c,u.setAttributes=a,u.insert=i.bind(null,"head"),u.domAPI=o,u.insertStyleElement=l;r(s,u);e.exports=s&&s.locals||{}},274:(e,n,t)=>{var r=t(8298),o=t(5163),i=t(2729),a=t(9986),l=t(9742),c=t(6291),s=t(8976);s=s.__esModule?s.default:s;var u={};u.styleTagTransform=c,u.setAttributes=a,u.insert=i.bind(null,"head"),u.domAPI=o,u.insertStyleElement=l;r(s,u);e.exports=s&&s.locals||{}},5924:(e,n,t)=>{var r=t(8298),o=t(5163),i=t(2729),a=t(9986),l=t(9742),c=t(6291),s=t(8266);s=s.__esModule?s.default:s;var u={};u.styleTagTransform=c,u.setAttributes=a,u.insert=i.bind(null,"head"),u.domAPI=o,u.insertStyleElement=l;r(s,u);e.exports=s&&s.locals||{}},7826:(e,n,t)=>{var r=t(8298),o=t(5163),i=t(2729),a=t(9986),l=t(9742),c=t(6291),s=t(6960);s=s.__esModule?s.default:s;var u={};u.styleTagTransform=c,u.setAttributes=a,u.insert=i.bind(null,"head"),u.domAPI=o,u.insertStyleElement=l;r(s,u);e.exports=s&&s.locals||{}},1914:(e,n,t)=>{var r=t(8298),o=t(5163),i=t(2729),a=t(9986),l=t(9742),c=t(6291),s=t(480);s=s.__esModule?s.default:s;var u={};u.styleTagTransform=c,u.setAttributes=a,u.insert=i.bind(null,"head"),u.domAPI=o,u.insertStyleElement=l;r(s,u);e.exports=s&&s.locals||{}},8130:(e,n,t)=>{var r=t(8298),o=t(5163),i=t(2729),a=t(9986),l=t(9742),c=t(6291),s=t(1586);s=s.__esModule?s.default:s;var u={};u.styleTagTransform=c,u.setAttributes=a,u.insert=i.bind(null,"head"),u.domAPI=o,u.insertStyleElement=l;r(s,u);e.exports=s&&s.locals||{}},1564:(e,n,t)=>{var r=t(8298),o=t(5163),i=t(2729),a=t(9986),l=t(9742),c=t(6291),s=t(8890);s=s.__esModule?s.default:s;var u={};u.styleTagTransform=c,u.setAttributes=a,u.insert=i.bind(null,"head"),u.domAPI=o,u.insertStyleElement=l;r(s,u);e.exports=s&&s.locals||{}},5103:(e,n,t)=>{var r=t(8298),o=t(5163),i=t(2729),a=t(9986),l=t(9742),c=t(6291),s=t(4481);s=s.__esModule?s.default:s;var u={};u.styleTagTransform=c,u.setAttributes=a,u.insert=i.bind(null,"head"),u.domAPI=o,u.insertStyleElement=l;r(s,u);e.exports=s&&s.locals||{}},3006:(e,n,t)=>{var r=t(8298),o=t(5163),i=t(2729),a=t(9986),l=t(9742),c=t(6291),s=t(2636);s=s.__esModule?s.default:s;var u={};u.styleTagTransform=c,u.setAttributes=a,u.insert=i.bind(null,"head"),u.domAPI=o,u.insertStyleElement=l;r(s,u);e.exports=s&&s.locals||{}},9344:(e,n,t)=>{var r=t(8298),o=t(5163),i=t(2729),a=t(9986),l=t(9742),c=t(6291),s=t(8102);s=s.__esModule?s.default:s;var u={};u.styleTagTransform=c,u.setAttributes=a,u.insert=i.bind(null,"head"),u.domAPI=o,u.insertStyleElement=l;r(s,u);e.exports=s&&s.locals||{}},4512:(e,n,t)=>{var r=t(8298),o=t(5163),i=t(2729),a=t(9986),l=t(9742),c=t(6291),s=t(4561);s=s.__esModule?s.default:s;var u={};u.styleTagTransform=c,u.setAttributes=a,u.insert=i.bind(null,"head"),u.domAPI=o,u.insertStyleElement=l;r(s,u);e.exports=s&&s.locals||{}},6932:(e,n,t)=>{var r=t(8298),o=t(5163),i=t(2729),a=t(9986),l=t(9742),c=t(6291),s=t(6162);s=s.__esModule?s.default:s;var u={};u.styleTagTransform=c,u.setAttributes=a,u.insert=i.bind(null,"head"),u.domAPI=o,u.insertStyleElement=l;r(s,u);e.exports=s&&s.locals||{}},8132:(e,n,t)=>{var r=t(8298),o=t(5163),i=t(2729),a=t(9986),l=t(9742),c=t(6291),s=t(938);s=s.__esModule?s.default:s;var u={};u.styleTagTransform=c,u.setAttributes=a,u.insert=i.bind(null,"head"),u.domAPI=o,u.insertStyleElement=l;r(s,u);e.exports=s&&s.locals||{}},8298:e=>{"use strict";var n=[];function t(e){for(var t=-1,r=0;r{"use strict";var n={};e.exports=function(e,t){var r=function(e){if(void 0===n[e]){var t=document.querySelector(e);if(window.HTMLIFrameElement&&t instanceof window.HTMLIFrameElement)try{t=t.contentDocument.head}catch(e){t=null}n[e]=t}return n[e]}(e);if(!r)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");r.appendChild(t)}},9742:e=>{"use strict";e.exports=function(e){var n=document.createElement("style");return e.setAttributes(n,e.attributes),e.insert(n,e.options),n}},9986:(e,n,t)=>{"use strict";e.exports=function(e){var n=t.nc;n&&e.setAttribute("nonce",n)}},5163:e=>{"use strict";e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var n=e.insertStyleElement(e);return{update:function(t){!function(e,n,t){var r="";t.supports&&(r+="@supports (".concat(t.supports,") {")),t.media&&(r+="@media ".concat(t.media," {"));var o=void 0!==t.layer;o&&(r+="@layer".concat(t.layer.length>0?" ".concat(t.layer):""," {")),r+=t.css,o&&(r+="}"),t.media&&(r+="}"),t.supports&&(r+="}");var i=t.sourceMap;i&&"undefined"!=typeof btoa&&(r+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(i))))," */")),n.styleTagTransform(r,e,n.options)}(n,e,t)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(n)}}}},6291:e=>{"use strict";e.exports=function(e,n){if(n.styleSheet)n.styleSheet.cssText=e;else{for(;n.firstChild;)n.removeChild(n.firstChild);n.appendChild(document.createTextNode(e))}}},9511:(e,n,t)=>{"use strict";var r=t(6556)("ArrayBuffer.prototype.byteLength",!0),o=t(4670);e.exports=function(e){return o(e)?r?r(e):e.byteLength:NaN}},3144:(e,n,t)=>{"use strict";var r=t(6743),o=t(1002),i=t(76),a=t(7119);e.exports=a||r.call(i,o)},2205:(e,n,t)=>{"use strict";var r=t(6743),o=t(1002),i=t(3144);e.exports=function(){return i(r,o,arguments)}},1002:e=>{"use strict";e.exports=Function.prototype.apply},76:e=>{"use strict";e.exports=Function.prototype.call},3126:(e,n,t)=>{"use strict";var r=t(6743),o=t(9675),i=t(76),a=t(3144);e.exports=function(e){if(e.length<1||"function"!=typeof e[0])throw new o("a function is required");return a(r,i,e)}},7119:e=>{"use strict";e.exports="undefined"!=typeof Reflect&&Reflect&&Reflect.apply},8075:(e,n,t)=>{"use strict";var r=t(453),o=t(487),i=o(r("String.prototype.indexOf"));e.exports=function(e,n){var t=r(e,!!n);return"function"==typeof t&&i(e,".prototype.")>-1?o(t):t}},487:(e,n,t)=>{"use strict";var r=t(6897),o=t(3036),i=t(3126),a=t(2205);e.exports=function(e){var n=i(arguments),t=e.length-(arguments.length-1);return r(n,1+(t>0?t:0),!0)},o?o(e.exports,"apply",{value:a}):e.exports.apply=a},6556:(e,n,t)=>{"use strict";var r=t(453),o=t(3126),i=o([r("%String.prototype.indexOf%")]);e.exports=function(e,n){var t=r(e,!!n);return"function"==typeof t&&i(e,".prototype.")>-1?o([t]):t}},5888:(e,n,t)=>{"use strict";e.exports=function(e,n){var t=this,r=t.constructor;return t.options=Object.assign({storeInstancesGlobally:!0},n||{}),t.callbacks={},t.directMap={},t.sequenceLevels={},t.resetTimer=null,t.ignoreNextKeyup=!1,t.ignoreNextKeypress=!1,t.nextExpectedAction=!1,t.element=e,t.addEvents(),t.options.storeInstancesGlobally&&r.instances.push(t),t},e.exports.prototype.bind=t(1210),e.exports.prototype.bindMultiple=t(4382),e.exports.prototype.unbind=t(3709),e.exports.prototype.trigger=t(3149),e.exports.prototype.reset=t(6726),e.exports.prototype.stopCallback=t(4446),e.exports.prototype.handleKey=t(4320),e.exports.prototype.addEvents=t(6687),e.exports.prototype.bindSingle=t(2214),e.exports.prototype.getKeyInfo=t(4174),e.exports.prototype.pickBestAction=t(6004),e.exports.prototype.getReverseMap=t(5193),e.exports.prototype.getMatches=t(9132),e.exports.prototype.resetSequences=t(3229),e.exports.prototype.fireCallback=t(7922),e.exports.prototype.bindSequence=t(3256),e.exports.prototype.resetSequenceTimer=t(602),e.exports.prototype.detach=t(3502),e.exports.instances=[],e.exports.reset=t(6255),e.exports.REVERSE_MAP=null},6687:(e,n,t)=>{"use strict";e.exports=function(){var e=this,n=t(2904),r=e.element;e.eventHandler=t(8178).bind(e),n(r,"keypress",e.eventHandler),n(r,"keydown",e.eventHandler),n(r,"keyup",e.eventHandler)}},1210:e=>{"use strict";e.exports=function(e,n,t){return e=e instanceof Array?e:[e],this.bindMultiple(e,n,t),this}},4382:e=>{"use strict";e.exports=function(e,n,t){for(var r=0;r{"use strict";e.exports=function(e,n,r,o){var i=this;function a(n){return function(){i.nextExpectedAction=n,++i.sequenceLevels[e],i.resetSequenceTimer()}}function l(n){var a;i.fireCallback(r,n,e),"keyup"!==o&&(a=t(3970),i.ignoreNextKeyup=a(n)),setTimeout((function(){i.resetSequences()}),10)}i.sequenceLevels[e]=0;for(var c=0;c{"use strict";e.exports=function(e,n,t,r,o){var i=this;i.directMap[e+":"+t]=n;var a,l=(e=e.replace(/\s+/g," ")).split(" ");l.length>1?i.bindSequence(e,l,n,t):(a=i.getKeyInfo(e,t),i.callbacks[a.key]=i.callbacks[a.key]||[],i.getMatches(a.key,a.modifiers,{type:a.action},r,e,o),i.callbacks[a.key][r?"unshift":"push"]({callback:n,modifiers:a.modifiers,action:a.action,seq:r,level:o,combo:e}))}},3502:(e,n,t)=>{var r=t(2904).off;e.exports=function(){var e=this,n=e.element;r(n,"keypress",e.eventHandler),r(n,"keydown",e.eventHandler),r(n,"keyup",e.eventHandler)}},2904:e=>{function n(e,n,t,r){return!e.addEventListener&&(n="on"+n),(e.addEventListener||e.attachEvent).call(e,n,t,r),t}e.exports=n,e.exports.on=n,e.exports.off=function(e,n,t,r){return!e.removeEventListener&&(n="on"+n),(e.removeEventListener||e.detachEvent).call(e,n,t,r),t}},7922:(e,n,t)=>{"use strict";e.exports=function(e,n,r,o){this.stopCallback(n,n.target||n.srcElement,r,o)||!1===e(n,r)&&(t(2156)(n),t(1849)(n))}},4174:(e,n,t)=>{"use strict";e.exports=function(e,n){var r,o,i,a,l,c,s=[];for(r=t(7486)(e),a=t(7641),l=t(7984),c=t(5962),i=0;i{"use strict";e.exports=function(e,n,r,o,i,a){var l,c,s,u,p=this,f=[],d=r.type;"keypress"!==d||r.code&&"Arrow"===r.code.slice(0,5)||(p.callbacks["any-character"]||[]).forEach((function(e){f.push(e)}));if(!p.callbacks[e])return f;for(s=t(5962),"keyup"===d&&s(e)&&(n=[e]),l=0;l{"use strict";e.exports=function(){var e,n=this.constructor;if(!n.REVERSE_MAP)for(var r in n.REVERSE_MAP={},e=t(6814))r>95&&r<112||e.hasOwnProperty(r)&&(n.REVERSE_MAP[e[r]]=r);return n.REVERSE_MAP}},4320:(e,n,t)=>{"use strict";e.exports=function(e,n,r){var o,i,a,l,c=this,s={},u=0,p=!1;for(o=c.getMatches(e,n,r),i=0;i{"use strict";e.exports=function(e){var n,r=this;"number"!=typeof e.which&&(e.which=e.keyCode);var o=t(3970)(e);void 0!==o&&("keyup"!==e.type||r.ignoreNextKeyup!==o?(n=t(5273),r.handleKey(o,n(e),e)):r.ignoreNextKeyup=!1)}},7238:e=>{"use strict";e.exports=function(e,n){return e.sort().join(",")===n.sort().join(",")}},6004:e=>{"use strict";e.exports=function(e,n,t){return t||(t=this.getReverseMap()[e]?"keydown":"keypress"),"keypress"===t&&n.length&&(t="keydown"),t}},6726:e=>{"use strict";e.exports=function(){return this.callbacks={},this.directMap={},this}},602:e=>{"use strict";e.exports=function(){var e=this;clearTimeout(e.resetTimer),e.resetTimer=setTimeout((function(){e.resetSequences()}),1e3)}},3229:e=>{"use strict";e.exports=function(e){var n=this;e=e||{};var t,r=!1;for(t in n.sequenceLevels)e[t]?r=!0:n.sequenceLevels[t]=0;r||(n.nextExpectedAction=!1)}},4446:e=>{"use strict";e.exports=function(e,n){if((" "+n.className+" ").indexOf(" combokeys ")>-1)return!1;var t=n.tagName.toLowerCase();return"input"===t||"select"===t||"textarea"===t||n.isContentEditable}},3149:e=>{"use strict";e.exports=function(e,n){return this.directMap[e+":"+n]&&this.directMap[e+":"+n]({},e),this}},3709:e=>{"use strict";e.exports=function(e,n){return this.bind(e,(function(){}),n)}},6255:e=>{"use strict";e.exports=function(){this.instances.forEach((function(e){e.reset()}))}},3970:(e,n,t)=>{"use strict";e.exports=function(e){var n,r;if(n=t(6814),r=t(4082),"keypress"===e.type){var o=String.fromCharCode(e.which);return e.shiftKey||(o=o.toLowerCase()),o}return void 0!==n[e.which]?n[e.which]:void 0!==r[e.which]?r[e.which]:String.fromCharCode(e.which).toLowerCase()}},5273:e=>{"use strict";e.exports=function(e){var n=[];return e.shiftKey&&n.push("shift"),e.altKey&&n.push("alt"),e.ctrlKey&&n.push("ctrl"),e.metaKey&&n.push("meta"),n}},5962:e=>{"use strict";e.exports=function(e){return"shift"===e||"ctrl"===e||"alt"===e||"meta"===e}},7486:e=>{"use strict";e.exports=function(e){return"+"===e?["+"]:e.split("+")}},2156:e=>{"use strict";e.exports=function(e){e.preventDefault?e.preventDefault():e.returnValue=!1}},7984:e=>{"use strict";e.exports={"~":"`","!":"1","@":"2","#":"3",$:"4","%":"5","^":"6","&":"7","*":"8","(":"9",")":"0",_:"-","+":"=",":":";",'"':"'","<":",",">":".","?":"/","|":"\\"}},7641:e=>{"use strict";e.exports={option:"alt",command:"meta",return:"enter",escape:"esc",mod:/Mac|iPod|iPhone|iPad/.test(navigator.platform)?"meta":"ctrl"}},4082:e=>{"use strict";e.exports={106:"*",107:"plus",109:"minus",110:".",111:"/",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'"}},6814:e=>{"use strict";e.exports={8:"backspace",9:"tab",13:"enter",16:"shift",17:"ctrl",18:"alt",20:"capslock",27:"esc",32:"space",33:"pageup",34:"pagedown",35:"end",36:"home",37:"left",38:"up",39:"right",40:"down",45:"ins",46:"del",91:"meta",93:"meta",173:"minus",187:"plus",189:"minus",224:"meta"};for(var n=1;n<20;++n)e.exports[111+n]="f"+n;for(n=0;n<=9;++n)e.exports[n+96]=n},1849:e=>{"use strict";e.exports=function(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0}},4982:(e,n,t)=>{"use strict";var r=t(6525),o=t(8075),i=t(1589),a=t(453),l=t(4552),c=t(920),s=t(7653),u=t(7244),p=t(4634),f=t(4670),d=t(2120),g=t(4035),h=t(7070),A=t(1189),b=t(1539),v=t(593),m=t(5767),y=t(9511),E=o("SharedArrayBuffer.prototype.byteLength",!0),C=o("Date.prototype.getTime"),w=Object.getPrototypeOf,x=o("Object.prototype.toString"),S=a("%Set%",!0),_=o("Map.prototype.has",!0),k=o("Map.prototype.get",!0),O=o("Map.prototype.size",!0),B=o("Set.prototype.add",!0),P=o("Set.prototype.delete",!0),T=o("Set.prototype.has",!0),I=o("Set.prototype.size",!0);function j(e,n,t,r){for(var o,i=l(e);(o=i.next())&&!o.done;)if(N(n,o.value,t,r))return P(e,o.value),!0;return!1}function z(e){return void 0===e?null:"object"!=typeof e?"symbol"!=typeof e&&("string"!=typeof e&&"number"!=typeof e||+e==+e):void 0}function D(e,n,t,o,i,a){var l=z(t);if(null!=l)return l;var c=k(n,l),s=r({},i,{strict:!1});return!(void 0===c&&!_(n,l)||!N(o,c,s,a))&&(!_(e,l)&&N(o,c,s,a))}function R(e,n,t){var r=z(t);return null!=r?r:T(n,r)&&!T(e,r)}function M(e,n,t,r,o,i){for(var a,c,s=l(e);(a=s.next())&&!a.done;)if(N(t,c=a.value,o,i)&&N(r,k(n,c),o,i))return P(e,c),!0;return!1}function N(e,n,t,o){var a=t||{};if(a.strict?s(e,n):e===n)return!0;if(b(e)!==b(n))return!1;if(!e||!n||"object"!=typeof e&&"object"!=typeof n)return a.strict?s(e,n):e==n;var c,P=o.has(e),z=o.has(n);if(P&&z){if(o.get(e)===o.get(n))return!0}else c={};return P||o.set(e,c),z||o.set(n,c),function(e,n,t,o){var a,c;if(typeof e!=typeof n)return!1;if(null==e||null==n)return!1;if(x(e)!==x(n))return!1;if(u(e)!==u(n))return!1;var s=p(e),b=p(n);if(s!==b)return!1;var P=e instanceof Error,z=n instanceof Error;if(P!==z)return!1;if((P||z)&&(e.name!==n.name||e.message!==n.message))return!1;var L=g(e),H=g(n);if(L!==H)return!1;if((L||H)&&(e.source!==n.source||i(e)!==i(n)))return!1;var U=d(e),W=d(n);if(U!==W)return!1;if((U||W)&&C(e)!==C(n))return!1;if(t.strict&&w&&w(e)!==w(n))return!1;var G=m(e),Y=m(n);if(G!==Y)return!1;if(G||Y){if(e.length!==n.length)return!1;for(a=0;a=0;a--)if(Z[a]!=J[a])return!1;for(a=Z.length-1;a>=0;a--)if(!N(e[c=Z[a]],n[c],t,o))return!1;var ee=v(e),ne=v(n);if(ee!==ne)return!1;if("Set"===ee||"Set"===ne)return function(e,n,t,r){if(I(e)!==I(n))return!1;var o,i,a,c=l(e),s=l(n);for(;(o=c.next())&&!o.done;)if(o.value&&"object"==typeof o.value)a||(a=new S),B(a,o.value);else if(!T(n,o.value)){if(t.strict)return!1;if(!R(e,n,o.value))return!1;a||(a=new S),B(a,o.value)}if(a){for(;(i=s.next())&&!i.done;)if(i.value&&"object"==typeof i.value){if(!j(a,i.value,t.strict,r))return!1}else if(!t.strict&&!T(e,i.value)&&!j(a,i.value,t.strict,r))return!1;return 0===I(a)}return!0}(e,n,t,o);if("Map"===ee)return function(e,n,t,o){if(O(e)!==O(n))return!1;var i,a,c,s,u,p,f=l(e),d=l(n);for(;(i=f.next())&&!i.done;)if(s=i.value[0],u=i.value[1],s&&"object"==typeof s)c||(c=new S),B(c,s);else if(void 0===(p=k(n,s))&&!_(n,s)||!N(u,p,t,o)){if(t.strict)return!1;if(!D(e,n,s,u,t,o))return!1;c||(c=new S),B(c,s)}if(c){for(;(a=d.next())&&!a.done;)if(s=a.value[0],p=a.value[1],s&&"object"==typeof s){if(!M(c,e,s,p,t,o))return!1}else if(!(t.strict||e.has(s)&&N(k(e,s),p,t,o)||M(c,e,s,p,r({},t,{strict:!1}),o)))return!1;return 0===I(c)}return!0}(e,n,t,o);return!0}(e,n,a,o)}function F(e){return!(!e||"object"!=typeof e||"number"!=typeof e.length)&&("function"==typeof e.copy&&"function"==typeof e.slice&&(!(e.length>0&&"number"!=typeof e[0])&&!!(e.constructor&&e.constructor.isBuffer&&e.constructor.isBuffer(e))))}e.exports=function(e,n,t){return N(e,n,t,c())}},41:(e,n,t)=>{"use strict";var r=t(3036),o=t(8068),i=t(9675),a=t(5795);e.exports=function(e,n,t){if(!e||"object"!=typeof e&&"function"!=typeof e)throw new i("`obj` must be an object or a function`");if("string"!=typeof n&&"symbol"!=typeof n)throw new i("`property` must be a string or a symbol`");if(arguments.length>3&&"boolean"!=typeof arguments[3]&&null!==arguments[3])throw new i("`nonEnumerable`, if provided, must be a boolean or null");if(arguments.length>4&&"boolean"!=typeof arguments[4]&&null!==arguments[4])throw new i("`nonWritable`, if provided, must be a boolean or null");if(arguments.length>5&&"boolean"!=typeof arguments[5]&&null!==arguments[5])throw new i("`nonConfigurable`, if provided, must be a boolean or null");if(arguments.length>6&&"boolean"!=typeof arguments[6])throw new i("`loose`, if provided, must be a boolean");var l=arguments.length>3?arguments[3]:null,c=arguments.length>4?arguments[4]:null,s=arguments.length>5?arguments[5]:null,u=arguments.length>6&&arguments[6],p=!!a&&a(e,n);if(r)r(e,n,{configurable:null===s&&p?p.configurable:!s,enumerable:null===l&&p?p.enumerable:!l,value:t,writable:null===c&&p?p.writable:!c});else{if(!u&&(l||c||s))throw new o("This environment does not support defining a property as non-configurable, non-writable, or non-enumerable.");e[n]=t}}},8452:(e,n,t)=>{"use strict";var r=t(1189),o="function"==typeof Symbol&&"symbol"==typeof Symbol("foo"),i=Object.prototype.toString,a=Array.prototype.concat,l=t(41),c=t(592)(),s=function(e,n,t,r){if(n in e)if(!0===r){if(e[n]===t)return}else if("function"!=typeof(o=r)||"[object Function]"!==i.call(o)||!r())return;var o;c?l(e,n,t,!0):l(e,n,t)},u=function(e,n){var t=arguments.length>2?arguments[2]:{},i=r(n);o&&(i=a.call(i,Object.getOwnPropertySymbols(n)));for(var l=0;l{"use strict";var r,o=t(3126),i=t(5795);try{r=[].__proto__===Array.prototype}catch(e){if(!e||"object"!=typeof e||!("code"in e)||"ERR_PROTO_ACCESS"!==e.code)throw e}var a=!!r&&i&&i(Object.prototype,"__proto__"),l=Object,c=l.getPrototypeOf;e.exports=a&&"function"==typeof a.get?o([a.get]):"function"==typeof c&&function(e){return c(null==e?e:l(e))}},3036:e=>{"use strict";var n=Object.defineProperty||!1;if(n)try{n({},"a",{value:1})}catch(e){n=!1}e.exports=n},1237:e=>{"use strict";e.exports=EvalError},9383:e=>{"use strict";e.exports=Error},9290:e=>{"use strict";e.exports=RangeError},9538:e=>{"use strict";e.exports=ReferenceError},8068:e=>{"use strict";e.exports=SyntaxError},9675:e=>{"use strict";e.exports=TypeError},5345:e=>{"use strict";e.exports=URIError},9612:e=>{"use strict";e.exports=Object},2682:(e,n,t)=>{"use strict";var r=t(9600),o=Object.prototype.toString,i=Object.prototype.hasOwnProperty;e.exports=function(e,n,t){if(!r(n))throw new TypeError("iterator must be a function");var a,l;arguments.length>=3&&(a=t),l=e,"[object Array]"===o.call(l)?function(e,n,t){for(var r=0,o=e.length;r{"use strict";var n=Object.prototype.toString,t=Math.max,r=function(e,n){for(var t=[],r=0;r{"use strict";var r=t(9353);e.exports=Function.prototype.bind||r},4462:e=>{"use strict";var n=function(){return"string"==typeof function(){}.name},t=Object.getOwnPropertyDescriptor;if(t)try{t([],"length")}catch(e){t=null}n.functionsHaveConfigurableNames=function(){if(!n()||!t)return!1;var e=t((function(){}),"name");return!!e&&!!e.configurable};var r=Function.prototype.bind;n.boundFunctionsHaveNames=function(){return n()&&"function"==typeof r&&""!==function(){}.bind().name},e.exports=n},453:(e,n,t)=>{"use strict";var r,o=t(9612),i=t(9383),a=t(1237),l=t(9290),c=t(9538),s=t(8068),u=t(9675),p=t(5345),f=t(1514),d=t(8968),g=t(6188),h=t(8002),A=t(5880),b=t(414),v=t(3093),m=Function,y=function(e){try{return m('"use strict"; return ('+e+").constructor;")()}catch(e){}},E=t(5795),C=t(3036),w=function(){throw new u},x=E?function(){try{return w}catch(e){try{return E(arguments,"callee").get}catch(e){return w}}}():w,S=t(4039)(),_=t(3628),k=t(1064),O=t(8648),B=t(1002),P=t(76),T={},I="undefined"!=typeof Uint8Array&&_?_(Uint8Array):r,j={__proto__:null,"%AggregateError%":"undefined"==typeof AggregateError?r:AggregateError,"%Array%":Array,"%ArrayBuffer%":"undefined"==typeof ArrayBuffer?r:ArrayBuffer,"%ArrayIteratorPrototype%":S&&_?_([][Symbol.iterator]()):r,"%AsyncFromSyncIteratorPrototype%":r,"%AsyncFunction%":T,"%AsyncGenerator%":T,"%AsyncGeneratorFunction%":T,"%AsyncIteratorPrototype%":T,"%Atomics%":"undefined"==typeof Atomics?r:Atomics,"%BigInt%":"undefined"==typeof BigInt?r:BigInt,"%BigInt64Array%":"undefined"==typeof BigInt64Array?r:BigInt64Array,"%BigUint64Array%":"undefined"==typeof BigUint64Array?r:BigUint64Array,"%Boolean%":Boolean,"%DataView%":"undefined"==typeof DataView?r:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":i,"%eval%":eval,"%EvalError%":a,"%Float16Array%":"undefined"==typeof Float16Array?r:Float16Array,"%Float32Array%":"undefined"==typeof Float32Array?r:Float32Array,"%Float64Array%":"undefined"==typeof Float64Array?r:Float64Array,"%FinalizationRegistry%":"undefined"==typeof FinalizationRegistry?r:FinalizationRegistry,"%Function%":m,"%GeneratorFunction%":T,"%Int8Array%":"undefined"==typeof Int8Array?r:Int8Array,"%Int16Array%":"undefined"==typeof Int16Array?r:Int16Array,"%Int32Array%":"undefined"==typeof Int32Array?r:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":S&&_?_(_([][Symbol.iterator]())):r,"%JSON%":"object"==typeof JSON?JSON:r,"%Map%":"undefined"==typeof Map?r:Map,"%MapIteratorPrototype%":"undefined"!=typeof Map&&S&&_?_((new Map)[Symbol.iterator]()):r,"%Math%":Math,"%Number%":Number,"%Object%":o,"%Object.getOwnPropertyDescriptor%":E,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":"undefined"==typeof Promise?r:Promise,"%Proxy%":"undefined"==typeof Proxy?r:Proxy,"%RangeError%":l,"%ReferenceError%":c,"%Reflect%":"undefined"==typeof Reflect?r:Reflect,"%RegExp%":RegExp,"%Set%":"undefined"==typeof Set?r:Set,"%SetIteratorPrototype%":"undefined"!=typeof Set&&S&&_?_((new Set)[Symbol.iterator]()):r,"%SharedArrayBuffer%":"undefined"==typeof SharedArrayBuffer?r:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":S&&_?_(""[Symbol.iterator]()):r,"%Symbol%":S?Symbol:r,"%SyntaxError%":s,"%ThrowTypeError%":x,"%TypedArray%":I,"%TypeError%":u,"%Uint8Array%":"undefined"==typeof Uint8Array?r:Uint8Array,"%Uint8ClampedArray%":"undefined"==typeof Uint8ClampedArray?r:Uint8ClampedArray,"%Uint16Array%":"undefined"==typeof Uint16Array?r:Uint16Array,"%Uint32Array%":"undefined"==typeof Uint32Array?r:Uint32Array,"%URIError%":p,"%WeakMap%":"undefined"==typeof WeakMap?r:WeakMap,"%WeakRef%":"undefined"==typeof WeakRef?r:WeakRef,"%WeakSet%":"undefined"==typeof WeakSet?r:WeakSet,"%Function.prototype.call%":P,"%Function.prototype.apply%":B,"%Object.defineProperty%":C,"%Object.getPrototypeOf%":k,"%Math.abs%":f,"%Math.floor%":d,"%Math.max%":g,"%Math.min%":h,"%Math.pow%":A,"%Math.round%":b,"%Math.sign%":v,"%Reflect.getPrototypeOf%":O};if(_)try{null.error}catch(e){var z=_(_(e));j["%Error.prototype%"]=z}var D=function e(n){var t;if("%AsyncFunction%"===n)t=y("async function () {}");else if("%GeneratorFunction%"===n)t=y("function* () {}");else if("%AsyncGeneratorFunction%"===n)t=y("async function* () {}");else if("%AsyncGenerator%"===n){var r=e("%AsyncGeneratorFunction%");r&&(t=r.prototype)}else if("%AsyncIteratorPrototype%"===n){var o=e("%AsyncGenerator%");o&&_&&(t=_(o.prototype))}return j[n]=t,t},R={__proto__:null,"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},M=t(6743),N=t(9957),F=M.call(P,Array.prototype.concat),L=M.call(B,Array.prototype.splice),H=M.call(P,String.prototype.replace),U=M.call(P,String.prototype.slice),W=M.call(P,RegExp.prototype.exec),G=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,Y=/\\(\\)?/g,q=function(e,n){var t,r=e;if(N(R,r)&&(r="%"+(t=R[r])[0]+"%"),N(j,r)){var o=j[r];if(o===T&&(o=D(r)),void 0===o&&!n)throw new u("intrinsic "+e+" exists, but is not available. Please file an issue!");return{alias:t,name:r,value:o}}throw new s("intrinsic "+e+" does not exist!")};e.exports=function(e,n){if("string"!=typeof e||0===e.length)throw new u("intrinsic name must be a non-empty string");if(arguments.length>1&&"boolean"!=typeof n)throw new u('"allowMissing" argument must be a boolean');if(null===W(/^%?[^%]*%?$/,e))throw new s("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var t=function(e){var n=U(e,0,1),t=U(e,-1);if("%"===n&&"%"!==t)throw new s("invalid intrinsic syntax, expected closing `%`");if("%"===t&&"%"!==n)throw new s("invalid intrinsic syntax, expected opening `%`");var r=[];return H(e,G,(function(e,n,t,o){r[r.length]=t?H(o,Y,"$1"):n||e})),r}(e),r=t.length>0?t[0]:"",o=q("%"+r+"%",n),i=o.name,a=o.value,l=!1,c=o.alias;c&&(r=c[0],L(t,F([0,1],c)));for(var p=1,f=!0;p=t.length){var A=E(a,d);a=(f=!!A)&&"get"in A&&!("originalValue"in A.get)?A.get:a[d]}else f=N(a,d),a=a[d];f&&!l&&(j[i]=a)}}return a}},1064:(e,n,t)=>{"use strict";var r=t(9612);e.exports=r.getPrototypeOf||null},8648:e=>{"use strict";e.exports="undefined"!=typeof Reflect&&Reflect.getPrototypeOf||null},3628:(e,n,t)=>{"use strict";var r=t(8648),o=t(1064),i=t(7176);e.exports=r?function(e){return r(e)}:o?function(e){if(!e||"object"!=typeof e&&"function"!=typeof e)throw new TypeError("getProto: not an object");return o(e)}:i?function(e){return i(e)}:null},6549:e=>{"use strict";e.exports=Object.getOwnPropertyDescriptor},5795:(e,n,t)=>{"use strict";var r=t(6549);if(r)try{r([],"length")}catch(e){r=null}e.exports=r},9790:e=>{"use strict";var n="undefined"!=typeof BigInt&&BigInt;e.exports=function(){return"function"==typeof n&&"function"==typeof BigInt&&"bigint"==typeof n(42)&&"bigint"==typeof BigInt(42)}},592:(e,n,t)=>{"use strict";var r=t(3036),o=function(){return!!r};o.hasArrayLengthDefineBug=function(){if(!r)return null;try{return 1!==r([],"length",{value:1}).length}catch(e){return!0}},e.exports=o},4039:(e,n,t)=>{"use strict";var r="undefined"!=typeof Symbol&&Symbol,o=t(1333);e.exports=function(){return"function"==typeof r&&("function"==typeof Symbol&&("symbol"==typeof r("foo")&&("symbol"==typeof Symbol("bar")&&o())))}},1333:e=>{"use strict";e.exports=function(){if("function"!=typeof Symbol||"function"!=typeof Object.getOwnPropertySymbols)return!1;if("symbol"==typeof Symbol.iterator)return!0;var e={},n=Symbol("test"),t=Object(n);if("string"==typeof n)return!1;if("[object Symbol]"!==Object.prototype.toString.call(n))return!1;if("[object Symbol]"!==Object.prototype.toString.call(t))return!1;for(var r in e[n]=42,e)return!1;if("function"==typeof Object.keys&&0!==Object.keys(e).length)return!1;if("function"==typeof Object.getOwnPropertyNames&&0!==Object.getOwnPropertyNames(e).length)return!1;var o=Object.getOwnPropertySymbols(e);if(1!==o.length||o[0]!==n)return!1;if(!Object.prototype.propertyIsEnumerable.call(e,n))return!1;if("function"==typeof Object.getOwnPropertyDescriptor){var i=Object.getOwnPropertyDescriptor(e,n);if(42!==i.value||!0!==i.enumerable)return!1}return!0}},9092:(e,n,t)=>{"use strict";var r=t(1333);e.exports=function(){return r()&&!!Symbol.toStringTag}},9957:(e,n,t)=>{"use strict";var r=Function.prototype.call,o=Object.prototype.hasOwnProperty,i=t(6743);e.exports=i.call(r,o)},63:(e,n,t)=>{"use strict";var r=t(9957),o=t(920)(),i=t(9675),a={assert:function(e,n){if(!e||"object"!=typeof e&&"function"!=typeof e)throw new i("`O` is not an object");if("string"!=typeof n)throw new i("`slot` must be a string");if(o.assert(e),!a.has(e,n))throw new i("`"+n+"` is not present on `O`")},get:function(e,n){if(!e||"object"!=typeof e&&"function"!=typeof e)throw new i("`O` is not an object");if("string"!=typeof n)throw new i("`slot` must be a string");var t=o.get(e);return t&&t["$"+n]},has:function(e,n){if(!e||"object"!=typeof e&&"function"!=typeof e)throw new i("`O` is not an object");if("string"!=typeof n)throw new i("`slot` must be a string");var t=o.get(e);return!!t&&r(t,"$"+n)},set:function(e,n,t){if(!e||"object"!=typeof e&&"function"!=typeof e)throw new i("`O` is not an object");if("string"!=typeof n)throw new i("`slot` must be a string");var r=o.get(e);r||(r={},o.set(e,r)),r["$"+n]=t}};Object.freeze&&Object.freeze(a),e.exports=a},7244:(e,n,t)=>{"use strict";var r=t(9092)(),o=t(6556)("Object.prototype.toString"),i=function(e){return!(r&&e&&"object"==typeof e&&Symbol.toStringTag in e)&&"[object Arguments]"===o(e)},a=function(e){return!!i(e)||null!==e&&"object"==typeof e&&"length"in e&&"number"==typeof e.length&&e.length>=0&&"[object Array]"!==o(e)&&"callee"in e&&"[object Function]"===o(e.callee)},l=function(){return i(arguments)}();i.isLegacyArguments=a,e.exports=l?i:a},4670:(e,n,t)=>{"use strict";var r=t(487),o=t(6556),i=t(453)("%ArrayBuffer%",!0),a=o("ArrayBuffer.prototype.byteLength",!0),l=o("Object.prototype.toString"),c=!!i&&!a&&new i(0).slice,s=!!c&&r(c);e.exports=a||s?function(e){if(!e||"object"!=typeof e)return!1;try{return a?a(e):s(e,0),!0}catch(e){return!1}}:i?function(e){return"[object ArrayBuffer]"===l(e)}:function(e){return!1}},9803:(e,n,t)=>{"use strict";if(t(9790)()){var r=BigInt.prototype.valueOf;e.exports=function(e){return null!=e&&"boolean"!=typeof e&&"string"!=typeof e&&"number"!=typeof e&&"symbol"!=typeof e&&"function"!=typeof e&&("bigint"==typeof e||function(e){try{return r.call(e),!0}catch(e){}return!1}(e))}}else e.exports=function(e){return!1}},5128:(e,n,t)=>{"use strict";var r=t(6556),o=r("Boolean.prototype.toString"),i=r("Object.prototype.toString"),a=t(9092)();e.exports=function(e){return"boolean"==typeof e||null!==e&&"object"==typeof e&&(a?function(e){try{return o(e),!0}catch(e){return!1}}(e):"[object Boolean]"===i(e))}},9600:e=>{"use strict";var n,t,r=Function.prototype.toString,o="object"==typeof Reflect&&null!==Reflect&&Reflect.apply;if("function"==typeof o&&"function"==typeof Object.defineProperty)try{n=Object.defineProperty({},"length",{get:function(){throw t}}),t={},o((function(){throw 42}),null,n)}catch(e){e!==t&&(o=null)}else o=null;var i=/^\s*class\b/,a=function(e){try{var n=r.call(e);return i.test(n)}catch(e){return!1}},l=function(e){try{return!a(e)&&(r.call(e),!0)}catch(e){return!1}},c=Object.prototype.toString,s="function"==typeof Symbol&&!!Symbol.toStringTag,u=!(0 in[,]),p=function(){return!1};if("object"==typeof document){var f=document.all;c.call(f)===c.call(document.all)&&(p=function(e){if((u||!e)&&(void 0===e||"object"==typeof e))try{var n=c.call(e);return("[object HTMLAllCollection]"===n||"[object HTML document.all class]"===n||"[object HTMLCollection]"===n||"[object Object]"===n)&&null==e("")}catch(e){}return!1})}e.exports=o?function(e){if(p(e))return!0;if(!e)return!1;if("function"!=typeof e&&"object"!=typeof e)return!1;try{o(e,null,n)}catch(e){if(e!==t)return!1}return!a(e)&&l(e)}:function(e){if(p(e))return!0;if(!e)return!1;if("function"!=typeof e&&"object"!=typeof e)return!1;if(s)return l(e);if(a(e))return!1;var n=c.call(e);return!("[object Function]"!==n&&"[object GeneratorFunction]"!==n&&!/^\[object HTML/.test(n))&&l(e)}},2120:(e,n,t)=>{"use strict";var r=t(6556),o=r("Date.prototype.getDay"),i=r("Object.prototype.toString"),a=t(9092)();e.exports=function(e){return"object"==typeof e&&null!==e&&(a?function(e){try{return o(e),!0}catch(e){return!1}}(e):"[object Date]"===i(e))}},1421:e=>{"use strict";var n,t="function"==typeof Map&&Map.prototype?Map:null,r="function"==typeof Set&&Set.prototype?Set:null;t||(n=function(e){return!1});var o=t?Map.prototype.has:null,i=r?Set.prototype.has:null;n||o||(n=function(e){return!1}),e.exports=n||function(e){if(!e||"object"!=typeof e)return!1;try{if(o.call(e),i)try{i.call(e)}catch(e){return!0}return e instanceof t}catch(e){}return!1}},1703:(e,n,t)=>{"use strict";var r=t(6556),o=r("Number.prototype.toString"),i=r("Object.prototype.toString"),a=t(9092)();e.exports=function(e){return"number"==typeof e||!(!e||"object"!=typeof e)&&(a?function(e){try{return o(e),!0}catch(e){return!1}}(e):"[object Number]"===i(e))}},4035:(e,n,t)=>{"use strict";var r,o=t(6556),i=t(9092)(),a=t(9957),l=t(5795);if(i){var c=o("RegExp.prototype.exec"),s={},u=function(){throw s},p={toString:u,valueOf:u};"symbol"==typeof Symbol.toPrimitive&&(p[Symbol.toPrimitive]=u),r=function(e){if(!e||"object"!=typeof e)return!1;var n=l(e,"lastIndex");if(!(n&&a(n,"value")))return!1;try{c(e,p)}catch(e){return e===s}}}else{var f=o("Object.prototype.toString");r=function(e){return!(!e||"object"!=typeof e&&"function"!=typeof e)&&"[object RegExp]"===f(e)}}e.exports=r},256:e=>{"use strict";var n,t="function"==typeof Map&&Map.prototype?Map:null,r="function"==typeof Set&&Set.prototype?Set:null;r||(n=function(e){return!1});var o=t?Map.prototype.has:null,i=r?Set.prototype.has:null;n||i||(n=function(e){return!1}),e.exports=n||function(e){if(!e||"object"!=typeof e)return!1;try{if(i.call(e),o)try{o.call(e)}catch(e){return!0}return e instanceof r}catch(e){}return!1}},7070:(e,n,t)=>{"use strict";var r=t(6556)("SharedArrayBuffer.prototype.byteLength",!0);e.exports=r?function(e){if(!e||"object"!=typeof e)return!1;try{return r(e),!0}catch(e){return!1}}:function(e){return!1}},4761:(e,n,t)=>{"use strict";var r=t(6556),o=r("String.prototype.valueOf"),i=r("Object.prototype.toString"),a=t(9092)();e.exports=function(e){return"string"==typeof e||!(!e||"object"!=typeof e)&&(a?function(e){try{return o(e),!0}catch(e){return!1}}(e):"[object String]"===i(e))}},3612:(e,n,t)=>{"use strict";var r=t(6556),o=r("Object.prototype.toString"),i=t(4039)(),a=t(9721);if(i){var l=r("Symbol.prototype.toString"),c=a(/^Symbol\(.*\)$/);e.exports=function(e){if("symbol"==typeof e)return!0;if(!e||"object"!=typeof e||"[object Symbol]"!==o(e))return!1;try{return function(e){return"symbol"==typeof e.valueOf()&&c(l(e))}(e)}catch(e){return!1}}}else e.exports=function(e){return!1}},7842:e=>{"use strict";var n,t="function"==typeof WeakMap&&WeakMap.prototype?WeakMap:null,r="function"==typeof WeakSet&&WeakSet.prototype?WeakSet:null;t||(n=function(e){return!1});var o=t?t.prototype.has:null,i=r?r.prototype.has:null;n||o||(n=function(e){return!1}),e.exports=n||function(e){if(!e||"object"!=typeof e)return!1;try{if(o.call(e,o),i)try{i.call(e,i)}catch(e){return!0}return e instanceof t}catch(e){}return!1}},2648:(e,n,t)=>{"use strict";var r=t(453),o=t(6556),i=r("%WeakSet%",!0),a=o("WeakSet.prototype.has",!0);if(a){var l=o("WeakMap.prototype.has",!0);e.exports=function(e){if(!e||"object"!=typeof e)return!1;try{if(a(e,a),l)try{l(e,l)}catch(e){return!0}return e instanceof i}catch(e){}return!1}}else e.exports=function(e){return!1}},4634:e=>{var n={}.toString;e.exports=Array.isArray||function(e){return"[object Array]"==n.call(e)}},1514:e=>{"use strict";e.exports=Math.abs},8968:e=>{"use strict";e.exports=Math.floor},4459:e=>{"use strict";e.exports=Number.isNaN||function(e){return e!=e}},6188:e=>{"use strict";e.exports=Math.max},8002:e=>{"use strict";e.exports=Math.min},5880:e=>{"use strict";e.exports=Math.pow},414:e=>{"use strict";e.exports=Math.round},3093:(e,n,t)=>{"use strict";var r=t(4459);e.exports=function(e){return r(e)||0===e?e:e<0?-1:1}},5228:e=>{"use strict"; +/* +object-assign +(c) Sindre Sorhus +@license MIT +*/var n=Object.getOwnPropertySymbols,t=Object.prototype.hasOwnProperty,r=Object.prototype.propertyIsEnumerable;e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var n={},t=0;t<10;t++)n["_"+String.fromCharCode(t)]=t;if("0123456789"!==Object.getOwnPropertyNames(n).map((function(e){return n[e]})).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach((function(e){r[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(e){return!1}}()?Object.assign:function(e,o){for(var i,a,l=function(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}(e),c=1;c{var r="function"==typeof Map&&Map.prototype,o=Object.getOwnPropertyDescriptor&&r?Object.getOwnPropertyDescriptor(Map.prototype,"size"):null,i=r&&o&&"function"==typeof o.get?o.get:null,a=r&&Map.prototype.forEach,l="function"==typeof Set&&Set.prototype,c=Object.getOwnPropertyDescriptor&&l?Object.getOwnPropertyDescriptor(Set.prototype,"size"):null,s=l&&c&&"function"==typeof c.get?c.get:null,u=l&&Set.prototype.forEach,p="function"==typeof WeakMap&&WeakMap.prototype?WeakMap.prototype.has:null,f="function"==typeof WeakSet&&WeakSet.prototype?WeakSet.prototype.has:null,d="function"==typeof WeakRef&&WeakRef.prototype?WeakRef.prototype.deref:null,g=Boolean.prototype.valueOf,h=Object.prototype.toString,A=Function.prototype.toString,b=String.prototype.match,v=String.prototype.slice,m=String.prototype.replace,y=String.prototype.toUpperCase,E=String.prototype.toLowerCase,C=RegExp.prototype.test,w=Array.prototype.concat,x=Array.prototype.join,S=Array.prototype.slice,_=Math.floor,k="function"==typeof BigInt?BigInt.prototype.valueOf:null,O=Object.getOwnPropertySymbols,B="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?Symbol.prototype.toString:null,P="function"==typeof Symbol&&"object"==typeof Symbol.iterator,T="function"==typeof Symbol&&Symbol.toStringTag&&(typeof Symbol.toStringTag===P||"symbol")?Symbol.toStringTag:null,I=Object.prototype.propertyIsEnumerable,j=("function"==typeof Reflect?Reflect.getPrototypeOf:Object.getPrototypeOf)||([].__proto__===Array.prototype?function(e){return e.__proto__}:null);function z(e,n){if(e===1/0||e===-1/0||e!=e||e&&e>-1e3&&e<1e3||C.call(/e/,n))return n;var t=/[0-9](?=(?:[0-9]{3})+(?![0-9]))/g;if("number"==typeof e){var r=e<0?-_(-e):_(e);if(r!==e){var o=String(r),i=v.call(n,o.length+1);return m.call(o,t,"$&_")+"."+m.call(m.call(i,/([0-9]{3})/g,"$&_"),/_$/,"")}}return m.call(n,t,"$&_")}var D=t(2634),R=D.custom,M=Y(R)?R:null,N={__proto__:null,double:'"',single:"'"},F={__proto__:null,double:/(["\\])/g,single:/(['\\])/g};function L(e,n,t){var r=t.quoteStyle||n,o=N[r];return o+e+o}function H(e){return m.call(String(e),/"/g,""")}function U(e){return!T||!("object"==typeof e&&(T in e||void 0!==e[T]))}function W(e){return"[object Array]"===$(e)&&U(e)}function G(e){return"[object RegExp]"===$(e)&&U(e)}function Y(e){if(P)return e&&"object"==typeof e&&e instanceof Symbol;if("symbol"==typeof e)return!0;if(!e||"object"!=typeof e||!B)return!1;try{return B.call(e),!0}catch(e){}return!1}e.exports=function e(n,r,o,l){var c=r||{};if(V(c,"quoteStyle")&&!V(N,c.quoteStyle))throw new TypeError('option "quoteStyle" must be "single" or "double"');if(V(c,"maxStringLength")&&("number"==typeof c.maxStringLength?c.maxStringLength<0&&c.maxStringLength!==1/0:null!==c.maxStringLength))throw new TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`');var h=!V(c,"customInspect")||c.customInspect;if("boolean"!=typeof h&&"symbol"!==h)throw new TypeError("option \"customInspect\", if provided, must be `true`, `false`, or `'symbol'`");if(V(c,"indent")&&null!==c.indent&&"\t"!==c.indent&&!(parseInt(c.indent,10)===c.indent&&c.indent>0))throw new TypeError('option "indent" must be "\\t", an integer > 0, or `null`');if(V(c,"numericSeparator")&&"boolean"!=typeof c.numericSeparator)throw new TypeError('option "numericSeparator", if provided, must be `true` or `false`');var y=c.numericSeparator;if(void 0===n)return"undefined";if(null===n)return"null";if("boolean"==typeof n)return n?"true":"false";if("string"==typeof n)return Q(n,c);if("number"==typeof n){if(0===n)return 1/0/n>0?"0":"-0";var C=String(n);return y?z(n,C):C}if("bigint"==typeof n){var _=String(n)+"n";return y?z(n,_):_}var O=void 0===c.depth?5:c.depth;if(void 0===o&&(o=0),o>=O&&O>0&&"object"==typeof n)return W(n)?"[Array]":"[Object]";var R=function(e,n){var t;if("\t"===e.indent)t="\t";else{if(!("number"==typeof e.indent&&e.indent>0))return null;t=x.call(Array(e.indent+1)," ")}return{base:t,prev:x.call(Array(n+1),t)}}(c,o);if(void 0===l)l=[];else if(K(l,n)>=0)return"[Circular]";function F(n,t,r){if(t&&(l=S.call(l)).push(t),r){var i={depth:c.depth};return V(c,"quoteStyle")&&(i.quoteStyle=c.quoteStyle),e(n,i,o+1,l)}return e(n,c,o+1,l)}if("function"==typeof n&&!G(n)){var q=function(e){if(e.name)return e.name;var n=b.call(A.call(e),/^function\s*([\w$]+)/);if(n)return n[1];return null}(n),X=te(n,F);return"[Function"+(q?": "+q:" (anonymous)")+"]"+(X.length>0?" { "+x.call(X,", ")+" }":"")}if(Y(n)){var re=P?m.call(String(n),/^(Symbol\(.*\))_[^)]*$/,"$1"):B.call(n);return"object"!=typeof n||P?re:Z(re)}if(function(e){if(!e||"object"!=typeof e)return!1;if("undefined"!=typeof HTMLElement&&e instanceof HTMLElement)return!0;return"string"==typeof e.nodeName&&"function"==typeof e.getAttribute}(n)){for(var oe="<"+E.call(String(n.nodeName)),ie=n.attributes||[],ae=0;ae"}if(W(n)){if(0===n.length)return"[]";var le=te(n,F);return R&&!function(e){for(var n=0;n=0)return!1;return!0}(le)?"["+ne(le,R)+"]":"[ "+x.call(le,", ")+" ]"}if(function(e){return"[object Error]"===$(e)&&U(e)}(n)){var ce=te(n,F);return"cause"in Error.prototype||!("cause"in n)||I.call(n,"cause")?0===ce.length?"["+String(n)+"]":"{ ["+String(n)+"] "+x.call(ce,", ")+" }":"{ ["+String(n)+"] "+x.call(w.call("[cause]: "+F(n.cause),ce),", ")+" }"}if("object"==typeof n&&h){if(M&&"function"==typeof n[M]&&D)return D(n,{depth:O-o});if("symbol"!==h&&"function"==typeof n.inspect)return n.inspect()}if(function(e){if(!i||!e||"object"!=typeof e)return!1;try{i.call(e);try{s.call(e)}catch(e){return!0}return e instanceof Map}catch(e){}return!1}(n)){var se=[];return a&&a.call(n,(function(e,t){se.push(F(t,n,!0)+" => "+F(e,n))})),ee("Map",i.call(n),se,R)}if(function(e){if(!s||!e||"object"!=typeof e)return!1;try{s.call(e);try{i.call(e)}catch(e){return!0}return e instanceof Set}catch(e){}return!1}(n)){var ue=[];return u&&u.call(n,(function(e){ue.push(F(e,n))})),ee("Set",s.call(n),ue,R)}if(function(e){if(!p||!e||"object"!=typeof e)return!1;try{p.call(e,p);try{f.call(e,f)}catch(e){return!0}return e instanceof WeakMap}catch(e){}return!1}(n))return J("WeakMap");if(function(e){if(!f||!e||"object"!=typeof e)return!1;try{f.call(e,f);try{p.call(e,p)}catch(e){return!0}return e instanceof WeakSet}catch(e){}return!1}(n))return J("WeakSet");if(function(e){if(!d||!e||"object"!=typeof e)return!1;try{return d.call(e),!0}catch(e){}return!1}(n))return J("WeakRef");if(function(e){return"[object Number]"===$(e)&&U(e)}(n))return Z(F(Number(n)));if(function(e){if(!e||"object"!=typeof e||!k)return!1;try{return k.call(e),!0}catch(e){}return!1}(n))return Z(F(k.call(n)));if(function(e){return"[object Boolean]"===$(e)&&U(e)}(n))return Z(g.call(n));if(function(e){return"[object String]"===$(e)&&U(e)}(n))return Z(F(String(n)));if("undefined"!=typeof window&&n===window)return"{ [object Window] }";if("undefined"!=typeof globalThis&&n===globalThis||void 0!==t.g&&n===t.g)return"{ [object globalThis] }";if(!function(e){return"[object Date]"===$(e)&&U(e)}(n)&&!G(n)){var pe=te(n,F),fe=j?j(n)===Object.prototype:n instanceof Object||n.constructor===Object,de=n instanceof Object?"":"null prototype",ge=!fe&&T&&Object(n)===n&&T in n?v.call($(n),8,-1):de?"Object":"",he=(fe||"function"!=typeof n.constructor?"":n.constructor.name?n.constructor.name+" ":"")+(ge||de?"["+x.call(w.call([],ge||[],de||[]),": ")+"] ":"");return 0===pe.length?he+"{}":R?he+"{"+ne(pe,R)+"}":he+"{ "+x.call(pe,", ")+" }"}return String(n)};var q=Object.prototype.hasOwnProperty||function(e){return e in this};function V(e,n){return q.call(e,n)}function $(e){return h.call(e)}function K(e,n){if(e.indexOf)return e.indexOf(n);for(var t=0,r=e.length;tn.maxStringLength){var t=e.length-n.maxStringLength,r="... "+t+" more character"+(t>1?"s":"");return Q(v.call(e,0,n.maxStringLength),n)+r}var o=F[n.quoteStyle||"single"];return o.lastIndex=0,L(m.call(m.call(e,o,"\\$1"),/[\x00-\x1f]/g,X),"single",n)}function X(e){var n=e.charCodeAt(0),t={8:"b",9:"t",10:"n",12:"f",13:"r"}[n];return t?"\\"+t:"\\x"+(n<16?"0":"")+y.call(n.toString(16))}function Z(e){return"Object("+e+")"}function J(e){return e+" { ? }"}function ee(e,n,t,r){return e+" ("+n+") {"+(r?ne(t,r):x.call(t,", "))+"}"}function ne(e,n){if(0===e.length)return"";var t="\n"+n.prev+n.base;return t+x.call(e,","+t)+"\n"+n.prev}function te(e,n){var t=W(e),r=[];if(t){r.length=e.length;for(var o=0;o{"use strict";var n=function(e){return e!=e};e.exports=function(e,t){return 0===e&&0===t?1/e==1/t:e===t||!(!n(e)||!n(t))}},7653:(e,n,t)=>{"use strict";var r=t(8452),o=t(487),i=t(9211),a=t(9394),l=t(6576),c=o(a(),Object);r(c,{getPolyfill:a,implementation:i,shim:l}),e.exports=c},9394:(e,n,t)=>{"use strict";var r=t(9211);e.exports=function(){return"function"==typeof Object.is?Object.is:r}},6576:(e,n,t)=>{"use strict";var r=t(9394),o=t(8452);e.exports=function(){var e=r();return o(Object,{is:e},{is:function(){return Object.is!==e}}),e}},8875:(e,n,t)=>{"use strict";var r;if(!Object.keys){var o=Object.prototype.hasOwnProperty,i=Object.prototype.toString,a=t(1093),l=Object.prototype.propertyIsEnumerable,c=!l.call({toString:null},"toString"),s=l.call((function(){}),"prototype"),u=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],p=function(e){var n=e.constructor;return n&&n.prototype===e},f={$applicationCache:!0,$console:!0,$external:!0,$frame:!0,$frameElement:!0,$frames:!0,$innerHeight:!0,$innerWidth:!0,$onmozfullscreenchange:!0,$onmozfullscreenerror:!0,$outerHeight:!0,$outerWidth:!0,$pageXOffset:!0,$pageYOffset:!0,$parent:!0,$scrollLeft:!0,$scrollTop:!0,$scrollX:!0,$scrollY:!0,$self:!0,$webkitIndexedDB:!0,$webkitStorageInfo:!0,$window:!0},d=function(){if("undefined"==typeof window)return!1;for(var e in window)try{if(!f["$"+e]&&o.call(window,e)&&null!==window[e]&&"object"==typeof window[e])try{p(window[e])}catch(e){return!0}}catch(e){return!0}return!1}();r=function(e){var n=null!==e&&"object"==typeof e,t="[object Function]"===i.call(e),r=a(e),l=n&&"[object String]"===i.call(e),f=[];if(!n&&!t&&!r)throw new TypeError("Object.keys called on a non-object");var g=s&&t;if(l&&e.length>0&&!o.call(e,0))for(var h=0;h0)for(var A=0;A{"use strict";var r=Array.prototype.slice,o=t(1093),i=Object.keys,a=i?function(e){return i(e)}:t(8875),l=Object.keys;a.shim=function(){if(Object.keys){var e=function(){var e=Object.keys(arguments);return e&&e.length===arguments.length}(1,2);e||(Object.keys=function(e){return o(e)?l(r.call(e)):l(e)})}else Object.keys=a;return Object.keys||a},e.exports=a},1093:e=>{"use strict";var n=Object.prototype.toString;e.exports=function(e){var t=n.call(e),r="[object Arguments]"===t;return r||(r="[object Array]"!==t&&null!==e&&"object"==typeof e&&"number"==typeof e.length&&e.length>=0&&"[object Function]"===n.call(e.callee)),r}},8403:(e,n,t)=>{"use strict";var r=t(1189),o=t(1333)(),i=t(6556),a=t(9612),l=i("Array.prototype.push"),c=i("Object.prototype.propertyIsEnumerable"),s=o?a.getOwnPropertySymbols:null;e.exports=function(e,n){if(null==e)throw new TypeError("target must be an object");var t=a(e);if(1===arguments.length)return t;for(var i=1;i{"use strict";var r=t(8452),o=t(487),i=t(8403),a=t(9133),l=t(984),c=o.apply(a()),s=function(e,n){return c(Object,arguments)};r(s,{getPolyfill:a,implementation:i,shim:l}),e.exports=s},9133:(e,n,t)=>{"use strict";var r=t(8403);e.exports=function(){return Object.assign?function(){if(!Object.assign)return!1;for(var e="abcdefghijklmnopqrst",n=e.split(""),t={},r=0;r{"use strict";var r=t(8452),o=t(9133);e.exports=function(){var e=o();return r(Object,{assign:e},{assign:function(){return Object.assign!==e}}),e}},6578:e=>{"use strict";e.exports=["Float16Array","Float32Array","Float64Array","Int8Array","Int16Array","Int32Array","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array"]},2694:(e,n,t)=>{"use strict";var r=t(6925);function o(){}function i(){}i.resetWarningCache=o,e.exports=function(){function e(e,n,t,o,i,a){if(a!==r){var l=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw l.name="Invariant Violation",l}}function n(){return e}e.isRequired=e;var t={array:e,bigint:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:n,element:e,elementType:e,instanceOf:n,node:e,objectOf:n,oneOf:n,oneOfType:n,shape:n,exact:n,checkPropTypes:i,resetWarningCache:o};return t.PropTypes=t,t}},5556:(e,n,t)=>{e.exports=t(2694)()},6925:e=>{"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},2551:(e,n,t)=>{"use strict";var r=t(6540),o=t(5228),i=t(9982); +/** @license React v17.0.2 + * react-dom.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */function a(e){for(var n="https://reactjs.org/docs/error-decoder.html?invariant="+e,t=1;t