be.doeraene.webcomponents.ui5.configkeys.LinkDesign.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of web-components-ui5_sjs1_3 Show documentation
Show all versions of web-components-ui5_sjs1_3 Show documentation
Laminar bindings for the web-component library UI5 from SAP
The newest version!
package be.doeraene.webcomponents.ui5.configkeys
import com.raquo.laminar.codecs.Codec
/** Defines the component design.
*
* Note: Available options are Default, Subtle, and Emphasized.
*/
trait LinkDesign
object LinkDesign extends EnumerationString[LinkDesign] {
case object Default extends LinkDesign
case object Subtle extends LinkDesign
case object Emphasized extends LinkDesign
val allValues: List[LinkDesign] = List(Default, Subtle, Emphasized)
def valueOf(value: LinkDesign): String = value.toString
}