diff --git a/html/core/src/jsMain/kotlin/org/jetbrains/compose/web/elements/RadioGroup.kt b/html/core/src/jsMain/kotlin/org/jetbrains/compose/web/elements/RadioGroup.kt index c7c8cd4541a..0c3316ec257 100644 --- a/html/core/src/jsMain/kotlin/org/jetbrains/compose/web/elements/RadioGroup.kt +++ b/html/core/src/jsMain/kotlin/org/jetbrains/compose/web/elements/RadioGroup.kt @@ -95,7 +95,6 @@ fun RadioGroup( @ExperimentalComposeWebApi class RadioGroupScope internal constructor() -@OptIn(ExperimentalComposeWebApi::class) private val radioGroupScopeImpl = RadioGroupScope() private var generatedRadioGroupNamesCounter = 0 diff --git a/html/core/src/jsTest/kotlin/elements/ElementsTests.kt b/html/core/src/jsTest/kotlin/elements/ElementsTests.kt index 527ab2fa2b0..38929726766 100644 --- a/html/core/src/jsTest/kotlin/elements/ElementsTests.kt +++ b/html/core/src/jsTest/kotlin/elements/ElementsTests.kt @@ -113,7 +113,6 @@ class ElementsTests { } @Test - @OptIn(ExperimentalComposeWebApi::class) fun rawCreation() = runTest { @Composable fun CustomElement( @@ -155,7 +154,6 @@ class ElementsTests { } @Test - @OptIn(ExperimentalComposeWebApi::class) fun rawCreationAndTagChanges() = runTest { @Composable fun CustomElement( diff --git a/html/core/src/jsTest/kotlin/elements/RadioGroupTests.kt b/html/core/src/jsTest/kotlin/elements/RadioGroupTests.kt index db448ece18d..72527ea687a 100644 --- a/html/core/src/jsTest/kotlin/elements/RadioGroupTests.kt +++ b/html/core/src/jsTest/kotlin/elements/RadioGroupTests.kt @@ -12,7 +12,6 @@ import org.w3c.dom.HTMLInputElement import kotlin.test.Test import kotlin.test.assertEquals -@OptIn(ExperimentalComposeWebApi::class) class RadioGroupTests { @Test diff --git a/html/integration-core/src/jsMain/kotlin/androidx/compose/web/sample/tests/RadioGroupTestCases.kt b/html/integration-core/src/jsMain/kotlin/androidx/compose/web/sample/tests/RadioGroupTestCases.kt index b356aad7a05..d2f7d465c35 100644 --- a/html/integration-core/src/jsMain/kotlin/androidx/compose/web/sample/tests/RadioGroupTestCases.kt +++ b/html/integration-core/src/jsMain/kotlin/androidx/compose/web/sample/tests/RadioGroupTestCases.kt @@ -13,7 +13,6 @@ import org.jetbrains.compose.web.sample.tests.testCase class RadioGroupTestCases { - @OptIn(ExperimentalComposeWebApi::class) val radioGroupItemsCanBeChecked by testCase { var checked by remember { mutableStateOf("None") } @@ -34,7 +33,6 @@ class RadioGroupTestCases { } } - @OptIn(ExperimentalComposeWebApi::class) val twoRadioGroupsChangedIndependently by testCase { var checked1 by remember { mutableStateOf("None") } var checked2 by remember { mutableStateOf("None") }