com.olvind.mui.muiMaterial.anon.Alt.scala Maven / Gradle / Ivy
The newest version!
package com.olvind.mui.muiMaterial.anon
import com.olvind.mui.muiMaterial.stylesCreateThemeMod.Theme
import com.olvind.mui.muiSystem.styleFunctionSxStyleFunctionSxMod.SxProps
import com.olvind.mui.muiSystem.styleFunctionSxStyleFunctionSxMod.SystemStyleObject
import slinky.core.facade.ReactElement
import org.scalablytyped.runtime.StObject
import scala.scalajs.js
import scala.scalajs.js.annotation.{JSGlobalScope, JSGlobal, JSImport, JSName, JSBracketAccess}
trait Alt extends StObject {
/**
* Used in combination with `src` or `srcSet` to
* provide an alt attribute for the rendered `img` element.
*/
var alt: js.UndefOr[String] = js.undefined
/**
* Used to render icon or text elements inside the Avatar if `src` is not set.
* This can be an element, or just a string.
*/
var children: js.UndefOr[ReactElement] = js.undefined
/**
* Override or extend the styles applied to the component.
*/
var classes: js.UndefOr[PartialAvatarClasses] = js.undefined
/**
* [Attributes](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#attributes) applied to the `img` element if the component is used to display an image.
* It can be used to listen for the loading error event.
*/
var imgProps: js.UndefOr[ImgHTMLAttributesHTMLImageElement] = js.undefined
/**
* The `sizes` attribute for the `img` element.
*/
var sizes: js.UndefOr[String] = js.undefined
/**
* The `src` attribute for the `img` element.
*/
var src: js.UndefOr[String] = js.undefined
/**
* The `srcSet` attribute for the `img` element.
* Use this attribute for responsive image display.
*/
var srcSet: js.UndefOr[String] = js.undefined
/**
* The system prop that allows defining system overrides as well as additional CSS styles.
*/
var sx: js.UndefOr[SxProps[Theme]] = js.undefined
/**
* The shape of the avatar.
* @default 'circular'
*/
var variant: js.UndefOr["circular" | "rounded" | "square"] = js.undefined
}
object Alt {
inline def apply(): Alt = {
val __obj = js.Dynamic.literal()
__obj.asInstanceOf[Alt]
}
@scala.inline
implicit open class MutableBuilder[Self <: Alt] (val x: Self) extends AnyVal {
inline def setAlt(value: String): Self = StObject.set(x, "alt", value.asInstanceOf[js.Any])
inline def setAltUndefined: Self = StObject.set(x, "alt", js.undefined)
inline def setChildren(value: ReactElement): Self = StObject.set(x, "children", value.asInstanceOf[js.Any])
inline def setChildrenUndefined: Self = StObject.set(x, "children", js.undefined)
inline def setClasses(value: PartialAvatarClasses): Self = StObject.set(x, "classes", value.asInstanceOf[js.Any])
inline def setClassesUndefined: Self = StObject.set(x, "classes", js.undefined)
inline def setImgProps(value: ImgHTMLAttributesHTMLImageElement): Self = StObject.set(x, "imgProps", value.asInstanceOf[js.Any])
inline def setImgPropsUndefined: Self = StObject.set(x, "imgProps", js.undefined)
inline def setSizes(value: String): Self = StObject.set(x, "sizes", value.asInstanceOf[js.Any])
inline def setSizesUndefined: Self = StObject.set(x, "sizes", js.undefined)
inline def setSrc(value: String): Self = StObject.set(x, "src", value.asInstanceOf[js.Any])
inline def setSrcSet(value: String): Self = StObject.set(x, "srcSet", value.asInstanceOf[js.Any])
inline def setSrcSetUndefined: Self = StObject.set(x, "srcSet", js.undefined)
inline def setSrcUndefined: Self = StObject.set(x, "src", js.undefined)
inline def setSx(value: SxProps[Theme]): Self = StObject.set(x, "sx", value.asInstanceOf[js.Any])
inline def setSxFunction1(value: Theme => SystemStyleObject[Theme]): Self = StObject.set(x, "sx", js.Any.fromFunction1(value))
inline def setSxNull: Self = StObject.set(x, "sx", null)
inline def setSxUndefined: Self = StObject.set(x, "sx", js.undefined)
inline def setSxVarargs(value: (Boolean | SystemStyleObject[Theme] | (js.Function1[Theme, SystemStyleObject[Theme]]))*): Self = StObject.set(x, "sx", js.Array(value*))
inline def setVariant(value: "circular" | "rounded" | "square"): Self = StObject.set(x, "variant", value.asInstanceOf[js.Any])
inline def setVariantUndefined: Self = StObject.set(x, "variant", js.undefined)
}
}