Browse Source
By this PR I am adding opportunity to use visibility property according to the [visibility references](https://developer.mozilla.org/en-US/docs/Web/CSS/visibility)pull/5118/head
InsanusMokrassar
4 months ago
committed by
GitHub
4 changed files with 85 additions and 1 deletions
@ -0,0 +1,12 @@ |
|||||||
|
/* |
||||||
|
* Copyright 2020-2024 JetBrains s.r.o. and respective authors and developers. |
||||||
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE.txt file. |
||||||
|
*/ |
||||||
|
|
||||||
|
@file:Suppress("Unused", "NOTHING_TO_INLINE", "NESTED_CLASS_IN_EXTERNAL_INTERFACE", "INLINE_EXTERNAL_DECLARATION", "WRONG_BODY_OF_EXTERNAL_DECLARATION", "NESTED_EXTERNAL_DECLARATION") |
||||||
|
|
||||||
|
package org.jetbrains.compose.web.css |
||||||
|
|
||||||
|
fun StyleScope.visibility(visibilityStyle: VisibilityStyle) { |
||||||
|
property("visibility", visibilityStyle.value) |
||||||
|
} |
@ -0,0 +1,43 @@ |
|||||||
|
/* |
||||||
|
* Copyright 2020-2021 JetBrains s.r.o. and respective authors and developers. |
||||||
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE.txt file. |
||||||
|
*/ |
||||||
|
|
||||||
|
package org.jetbrains.compose.web.core.tests.css |
||||||
|
|
||||||
|
import org.jetbrains.compose.web.testutils.* |
||||||
|
import org.jetbrains.compose.web.core.tests.values |
||||||
|
import org.jetbrains.compose.web.css.VisibilityStyle |
||||||
|
import org.jetbrains.compose.web.css.visibility |
||||||
|
import org.jetbrains.compose.web.css.value |
||||||
|
import org.jetbrains.compose.web.dom.Div |
||||||
|
import kotlin.test.Test |
||||||
|
import kotlin.test.assertEquals |
||||||
|
|
||||||
|
class CSSVisibilityTests { |
||||||
|
|
||||||
|
@Test |
||||||
|
fun stylesDisplay() = runTest { |
||||||
|
val enumValues = VisibilityStyle.values() |
||||||
|
|
||||||
|
composition { |
||||||
|
enumValues.forEach { displayStyle -> |
||||||
|
Div( |
||||||
|
{ |
||||||
|
style { |
||||||
|
visibility(displayStyle) |
||||||
|
} |
||||||
|
} |
||||||
|
) |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
enumValues.forEach { visibilityStyle -> |
||||||
|
assertEquals( |
||||||
|
visibilityStyle.value, |
||||||
|
(nextChild()).style.visibility |
||||||
|
) |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue