[compose] Move files in compose module to proper package

GitOrigin-RevId: 68a44f536a0e18da72813dfc7c68564ad441e7ab
This commit is contained in:
Nikolay Rykunov
2023-10-13 17:56:14 +02:00
committed by intellij-monorepo-bot
parent 87497bf998
commit 71107088eb
5 changed files with 6 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
<idea-plugin>
<actions>
<action id="ComposeShowcaseAction" internal="true" class="com.intellij.compose.showcase.ComposeShowcaseAction"
<action id="ComposeShowcaseAction" internal="true" class="com.intellij.platform.compose.showcase.ComposeShowcaseAction"
text="Compose Components Showcase"/>
</actions>
</idea-plugin>

View File

@@ -1,6 +1,6 @@
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.intellij.compose
package com.intellij.platform.compose
import androidx.compose.runtime.Composable
import androidx.compose.runtime.CompositionLocalProvider

View File

@@ -1,5 +1,5 @@
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.intellij.compose
package com.intellij.platform.compose
import androidx.compose.runtime.staticCompositionLocalOf
import org.jetbrains.annotations.ApiStatus.Experimental

View File

@@ -1,5 +1,5 @@
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.intellij.compose.showcase
package com.intellij.platform.compose.showcase
import androidx.compose.foundation.layout.*
import androidx.compose.foundation.rememberScrollState

View File

@@ -1,12 +1,12 @@
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.intellij.compose.showcase
package com.intellij.platform.compose.showcase
import com.intellij.compose.JBComposePanel
import com.intellij.openapi.actionSystem.AnActionEvent
import com.intellij.openapi.project.DumbAwareAction
import com.intellij.openapi.project.Project
import com.intellij.openapi.ui.DialogWrapper
import com.intellij.openapi.util.NlsSafe
import com.intellij.platform.compose.JBComposePanel
import com.intellij.ui.PaintingParent.Wrapper
import java.awt.Dimension
import javax.swing.JComponent