Packages

object Styling extends Object with ThemeLike with StylingLike with MergeStyles

uifabric/styling == office-ui-fabric-react/lib/Styling. @uifabric/styling also exports most of @uifabic/merge-styles. This should really be the module.

Annotations
@deprecated @native() @JSImport("@uifabric/styling", JSImport.Namespace)
Deprecated

Use fabric.styling.module

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Styling
  2. MergeStyles
  3. StylingLike
  4. ThemeLike
  5. Object
  6. Any
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. val Stylesheet: Stylesheet

    Access the stylesheet created by fabric.

    Access the stylesheet created by fabric.

    Definition Classes
    MergeStyles
  2. val ThemeSettingName: String
    Definition Classes
    ThemeLike
  3. def concatStyleSets[T <: Object](styleSets: IStyleSet*): T

    Combine styles together but do not register the styles in a stylesheet.

    Combine styles together but do not register the styles in a stylesheet. This is useful for combining different sets of styles, like a base and something more specific, inside of a function that computes styles but you want the output to be a (string -> style) mapping still. Last argument has higher precedence.

    T

    js object with mappings between properties and "string" class names. See IProcessedStyleSet in typescript.

    Definition Classes
    MergeStyles
  4. def concatStyleSetsWithProps[SP <: Any](props: SP, styleSets: StyleSetArg*): IStyleSet

    Combine styles together but allow style functions or props.

    Combine styles together but allow style functions or props. IStyleSet refers to a js object that has properties whose values are IStyle objects.

    Definition Classes
    MergeStyles
  5. def createTheme(partial: ITheme, depComments: Boolean = false): ITheme
    Definition Classes
    ThemeLike
  6. def fontFace(font: FontFace): Unit

    Register a font face.

    Register a font face.

    Definition Classes
    MergeStyles
  7. def getIconClassName(name: String): String
    Definition Classes
    StylingLike
  8. def getTheme(depComments: Boolean = false): ITheme

    Reurn the singleton theme object.

    Reurn the singleton theme object.

    Definition Classes
    ThemeLike
  9. def getVendorSettings(): IVendorSettings
    Definition Classes
    MergeStyles
  10. def hasOwnProperty(v: String): Boolean
    Definition Classes
    Object
  11. def isPrototypeOf(v: Object): Boolean
    Definition Classes
    Object
  12. def keyframes(timeline: Object): String

    Register key frames.

    Register key frames. Keys are typically "from" and "to".

    Definition Classes
    MergeStyles
  13. def loadTheme(theme: ITheme, depComments: Boolean = false): ITheme
    Definition Classes
    ThemeLike
  14. def mergeStyleSets[T <: Any](styleSets: IStyleSet*): T

    Merge style sets and register in a stylesheet.

    Merge style sets and register in a stylesheet. js.Object is included to allow "partial" T's to be passed in. It is not possible to ensure that all keys in T are defined based on the input parameters alone. This is the primary way to convert "code" to "styles" in the DOM. Generally, this function is called inside a getClassNames(...) type function specific to each component. The return value is typically a js.native trait whose member values are the string names of the styles that were registered (string -> classname string).

    Definition Classes
    MergeStyles
  15. def mergeStyles(styles: |[IStyle, Array[IStyle]]*): String

    Merge styles and register in a stylesheet.

    Merge styles and register in a stylesheet. Return the "css" mangled name you use as the attribute "className" in your components. You probably want to use a style set and mergeStyleSets to push a bunch of styles to the stylesheet at one time.

    Definition Classes
    MergeStyles
  16. def propertyIsEnumerable(v: String): Boolean
    Definition Classes
    Object
  17. def registerIcons(r: IIconSubset, options: UndefOr[IIconOptions] = js.undefined): Unit
    Definition Classes
    StylingLike
  18. def registerOnThemeChangeCallback(cb: Function1[ITheme, Unit]): Unit
    Definition Classes
    ThemeLike
  19. def removeOnThemeChangeCallback(cb: Function1[ITheme, Unit]): Unit
    Definition Classes
    ThemeLike
  20. def toLocaleString(): String
    Definition Classes
    Object
  21. def unsafeConcatStyleSetsWithProps[SP <: Any](props: SP, styleSets: Any*): IStyleSet
    Definition Classes
    MergeStyles
    Annotations
    @JSName("concatStyleSetsWithProps")
  22. def valueOf(): Any
    Definition Classes
    Object