com.olvind.mui.muiMaterial.anon.ClassNameRef.scala Maven / Gradle / Ivy
The newest version!
package com.olvind.mui.muiMaterial.anon
import com.olvind.mui.react.mod.CSSProperties
import org.scalablytyped.runtime.StObject
import scala.scalajs.js
import scala.scalajs.js.annotation.{JSGlobalScope, JSGlobal, JSImport, JSName, JSBracketAccess}
trait ClassNameRef[C] extends StObject {
// TODO: Remove implicit props. Up to each component.
var className: js.UndefOr[String] = js.undefined
var ref: js.UndefOr[
/* import warning: importer.ImportType#apply Failed type conversion: C extends { ref :infer RefType | undefined} ? RefType : react.react.Ref */ js.Any
] = js.undefined
var style: js.UndefOr[CSSProperties] = js.undefined
}
object ClassNameRef {
inline def apply[C](): ClassNameRef[C] = {
val __obj = js.Dynamic.literal()
__obj.asInstanceOf[ClassNameRef[C]]
}
@scala.inline
implicit open class MutableBuilder[Self <: ClassNameRef[?], C] (val x: Self & ClassNameRef[C]) extends AnyVal {
inline def setClassName(value: String): Self = StObject.set(x, "className", value.asInstanceOf[js.Any])
inline def setClassNameUndefined: Self = StObject.set(x, "className", js.undefined)
inline def setRef(
value: /* import warning: importer.ImportType#apply Failed type conversion: C extends { ref :infer RefType | undefined} ? RefType : react.react.Ref */ js.Any
): Self = StObject.set(x, "ref", value.asInstanceOf[js.Any])
inline def setRefUndefined: Self = StObject.set(x, "ref", js.undefined)
inline def setStyle(value: CSSProperties): Self = StObject.set(x, "style", value.asInstanceOf[js.Any])
inline def setStyleUndefined: Self = StObject.set(x, "style", js.undefined)
}
}