All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.olvind.mui.muiMaterial.tableSortLabelTableSortLabelClassesMod.scala Maven / Gradle / Ivy

The newest version!
package com.olvind.mui.muiMaterial

import org.scalablytyped.runtime.StObject
import scala.scalajs.js
import scala.scalajs.js.annotation.{JSGlobalScope, JSGlobal, JSImport, JSName, JSBracketAccess}

object tableSortLabelTableSortLabelClassesMod {
  
  @JSImport("@mui/material/TableSortLabel/tableSortLabelClasses", JSImport.Namespace)
  @js.native
  val ^ : js.Any = js.native
  
  @JSImport("@mui/material/TableSortLabel/tableSortLabelClasses", JSImport.Default)
  @js.native
  val default: TableSortLabelClasses = js.native
  
  inline def getTableSortLabelUtilityClass(slot: String): String = ^.asInstanceOf[js.Dynamic].applyDynamic("getTableSortLabelUtilityClass")(slot.asInstanceOf[js.Any]).asInstanceOf[String]
  
  type TableSortLabelClassKey = "root" | "active" | "icon" | "iconDirectionDesc" | "iconDirectionAsc"
  
  trait TableSortLabelClasses extends StObject {
    
    /** State class applied to the root element if `active={true}`. */
    var active: String
    
    /** Styles applied to the icon component. */
    var icon: String
    
    /** Styles applied to the icon component if `direction="asc"`. */
    var iconDirectionAsc: String
    
    /** Styles applied to the icon component if `direction="desc"`. */
    var iconDirectionDesc: String
    
    /** Styles applied to the root element. */
    var root: String
  }
  object TableSortLabelClasses {
    
    inline def apply(active: String, icon: String, iconDirectionAsc: String, iconDirectionDesc: String, root: String): TableSortLabelClasses = {
      val __obj = js.Dynamic.literal(active = active.asInstanceOf[js.Any], icon = icon.asInstanceOf[js.Any], iconDirectionAsc = iconDirectionAsc.asInstanceOf[js.Any], iconDirectionDesc = iconDirectionDesc.asInstanceOf[js.Any], root = root.asInstanceOf[js.Any])
      __obj.asInstanceOf[TableSortLabelClasses]
    }
    
    @scala.inline
    implicit open class MutableBuilder[Self <: TableSortLabelClasses] (val x: Self) extends AnyVal {
      
      inline def setActive(value: String): Self = StObject.set(x, "active", value.asInstanceOf[js.Any])
      
      inline def setIcon(value: String): Self = StObject.set(x, "icon", value.asInstanceOf[js.Any])
      
      inline def setIconDirectionAsc(value: String): Self = StObject.set(x, "iconDirectionAsc", value.asInstanceOf[js.Any])
      
      inline def setIconDirectionDesc(value: String): Self = StObject.set(x, "iconDirectionDesc", value.asInstanceOf[js.Any])
      
      inline def setRoot(value: String): Self = StObject.set(x, "root", value.asInstanceOf[js.Any])
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy