Socket
Socket
Sign inDemoInstall

@uifabric/styling

Package Overview
Dependencies
34
Maintainers
3
Versions
422
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @uifabric/styling

Defines the core Office UI Fabric styles through a JavaScript interface.


Version published
Maintainers
3
Created

Readme

Source

Summary

Using the styling package

Integrating components into your project depends heavily on your setup. The recommended setup is to use a bundler such as webpack which can resolve NPM package imports in your code and can bundle the specific things you import.

Within an npm project, you should install the package and save it as a dependency:

npm install --save @uifabric/styling

This will add the styling package which gives you access to the Fabric Core style classes through JavaScript.

Using Fabric core classes

Fonts, colors, icons and animations are exported through the classNames export. The export exposes class names for colors, fonts, animations, and icons.

Example of returning markup that is themePrimary colored using the medium font:

import {
  colorClassNames,
  fontClassNames
} from '@uifabric/styling';

function renderHtml() {
  return (
    `<div class="${ [
      colorClassNames.themePrimary,
      fontClassNamed.medium
      ].join(' ') }">Hello world!</div>`
  );
}

There are a number of classes available under colorClassNames, fontClassNames, AnimationClassNames, and iconClassNames exports. See the available classes below.

Using animations works the same way:

import {
  AnimationClassNames
} from '@uifabric/styling';

function renderHtml() {
  return (
    `<div class="${ AnimationClassNames.fadeIn }">Hello world!</div>`
  );
}

Rendering icons is also simplified:

import {
  classNames
} from '@uifabric/styling';

function renderHtml() {
  return (
    `<i class="${ classNames.icons.snow }" />`
  );
}

Usage via JavaScript styling libraries (Glamor, Aphrodite)

If you need access to the raw JavaScript style objects so that you can mix them into other classes and use via a css library such as Glamor or Aphrodite, you can access the raw classes like so:

import {
  styles
} from '@uifabric/styling';
import { css } from 'glamor';

function renderHtml() {
  let className = css({
    ...styles.fonts.large,
    background: 'red'
  });
  return (
    `<div class="${ css(styles.fonts.large, { background: 'red' }) }">Hello!</div>`
  );
}

Overriding the theme colors

The default palette of colors matches the default Fabric core styling conventions. However, it is possible to override the color slots to match your product requirements:

import {
  loadTheme({
    colors: {
      themePrimary: 'red',
      themeSeconary: 'blue'
    }
  });
}

If you override theme settings, you need to do this before accessing theme colors. Otherwise you won't get a notification that the theme changed.

Available classes

Colors (classNames.colors members)

Members of classNames.colors:

NameDescription

Fonts

Members of classNames.fonts:

NameDescription

Animations (classNames.animations members)

Members of classNames.animations:

NameDescription

Icons (classNames.icons members)

Members of classNames.icons:

NameDescription

FAQs

Last updated on 08 Jun 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc