com.olvind.mui.muiMaterial.anon.DisableElevation.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 DisableElevation extends StObject {
/**
* The content of the component.
*/
var children: js.UndefOr[ReactElement] = js.undefined
/**
* Override or extend the styles applied to the component.
*/
var classes: js.UndefOr[PartialButtonClasses] = js.undefined
/**
* The color of the component.
* It supports both default and custom theme colors, which can be added as shown in the
* [palette customization guide](https://mui.com/material-ui/customization/palette/#adding-new-colors).
* @default 'primary'
*/
var color: js.UndefOr["inherit" | "primary" | "secondary" | "success" | "error" | "info" | "warning"] = js.undefined
/**
* If `true`, no elevation is used.
* @default false
*/
var disableElevation: js.UndefOr[Boolean] = js.undefined
/**
* If `true`, the keyboard focus ripple is disabled.
* @default false
*/
var disableFocusRipple: js.UndefOr[Boolean] = js.undefined
/**
* If `true`, the component is disabled.
* @default false
*/
var disabled: js.UndefOr[Boolean] = js.undefined
/**
* Element placed after the children.
*/
var endIcon: js.UndefOr[ReactElement] = js.undefined
/**
* If `true`, the button will take up the full width of its container.
* @default false
*/
var fullWidth: js.UndefOr[Boolean] = js.undefined
/**
* The URL to link to when the button is clicked.
* If defined, an `a` element will be used as the root node.
*/
var href: js.UndefOr[String] = js.undefined
/**
* The size of the component.
* `small` is equivalent to the dense button styling.
* @default 'medium'
*/
var size: js.UndefOr["small" | "medium" | "large"] = js.undefined
/**
* Element placed before the children.
*/
var startIcon: js.UndefOr[ReactElement] = 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 variant to use.
* @default 'text'
*/
var variant: js.UndefOr["text" | "outlined" | "contained"] = js.undefined
}
object DisableElevation {
inline def apply(): DisableElevation = {
val __obj = js.Dynamic.literal()
__obj.asInstanceOf[DisableElevation]
}
@scala.inline
implicit open class MutableBuilder[Self <: DisableElevation] (val x: Self) extends AnyVal {
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: PartialButtonClasses): Self = StObject.set(x, "classes", value.asInstanceOf[js.Any])
inline def setClassesUndefined: Self = StObject.set(x, "classes", js.undefined)
inline def setColor(value: "inherit" | "primary" | "secondary" | "success" | "error" | "info" | "warning"): Self = StObject.set(x, "color", value.asInstanceOf[js.Any])
inline def setColorUndefined: Self = StObject.set(x, "color", js.undefined)
inline def setDisableElevation(value: Boolean): Self = StObject.set(x, "disableElevation", value.asInstanceOf[js.Any])
inline def setDisableElevationUndefined: Self = StObject.set(x, "disableElevation", js.undefined)
inline def setDisableFocusRipple(value: Boolean): Self = StObject.set(x, "disableFocusRipple", value.asInstanceOf[js.Any])
inline def setDisableFocusRippleUndefined: Self = StObject.set(x, "disableFocusRipple", js.undefined)
inline def setDisabled(value: Boolean): Self = StObject.set(x, "disabled", value.asInstanceOf[js.Any])
inline def setDisabledUndefined: Self = StObject.set(x, "disabled", js.undefined)
inline def setEndIcon(value: ReactElement): Self = StObject.set(x, "endIcon", value.asInstanceOf[js.Any])
inline def setEndIconUndefined: Self = StObject.set(x, "endIcon", js.undefined)
inline def setFullWidth(value: Boolean): Self = StObject.set(x, "fullWidth", value.asInstanceOf[js.Any])
inline def setFullWidthUndefined: Self = StObject.set(x, "fullWidth", js.undefined)
inline def setHref(value: String): Self = StObject.set(x, "href", value.asInstanceOf[js.Any])
inline def setHrefUndefined: Self = StObject.set(x, "href", js.undefined)
inline def setSize(value: "small" | "medium" | "large"): Self = StObject.set(x, "size", value.asInstanceOf[js.Any])
inline def setSizeUndefined: Self = StObject.set(x, "size", js.undefined)
inline def setStartIcon(value: ReactElement): Self = StObject.set(x, "startIcon", value.asInstanceOf[js.Any])
inline def setStartIconUndefined: Self = StObject.set(x, "startIcon", 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: "text" | "outlined" | "contained"): Self = StObject.set(x, "variant", value.asInstanceOf[js.Any])
inline def setVariantUndefined: Self = StObject.set(x, "variant", js.undefined)
}
}