From f13baad4fe51a9b1a17a26e3e1e57922bffeb552 Mon Sep 17 00:00:00 2001 From: edolyne Date: Wed, 31 Aug 2016 17:17:13 -0400 Subject: [PATCH] SYS-2135 Adding system font --- addons/background/src/BackgroundPanel.tsx | 31 ++++++++++++++++++++--- addons/background/src/Swatch.tsx | 8 ++++-- 2 files changed, 34 insertions(+), 5 deletions(-) diff --git a/addons/background/src/BackgroundPanel.tsx b/addons/background/src/BackgroundPanel.tsx index fe52a614ba6..f7f94afbfcc 100644 --- a/addons/background/src/BackgroundPanel.tsx +++ b/addons/background/src/BackgroundPanel.tsx @@ -1,11 +1,19 @@ import * as React from "react"; import Swatch from "./Swatch"; +import assign = require("object-assign"); + +const style = { + font: { + fontFamily: "-apple-system,'.SFNSText-Regular', 'San Francisco', Roboto, 'Segoe UI', 'Helvetica Neue', 'Lucida Grande', sans-serif", + fontSize: "14px", + }, +}; export interface BackgroundDetail { name?: string; value: string; -} +}; export interface BackgroundPanelProps { channel: NodeJS.EventEmitter; @@ -33,8 +41,25 @@ export default class BackgroundPanel extends React.Component -
Setup Instructions
+
+
Setup Instructions
+

Please add the background decorator definition to your story. + The background decorate accepts an array of items, which should include a + name for your color (preferably the class name) and the corresponding color / image value.

+

Below is an example of how to add the background decorator to your story definition.

+
+            .addDecorator(backgrounds([
+ { name: "light-primary", value: "#f1f1f1" },
+ { name: "light-secondary", value: "#ddd" },
+ ])); +
); } diff --git a/addons/background/src/Swatch.tsx b/addons/background/src/Swatch.tsx index 338329788ff..3100068b0bc 100644 --- a/addons/background/src/Swatch.tsx +++ b/addons/background/src/Swatch.tsx @@ -26,6 +26,10 @@ const style = { soft: { paddingLeft: "10px", paddingRight: "10px" }, hard: { padding: "0" }, flush: { margin: "0" }, + font: { + fontFamily: "-apple-system, '.SFNSText-Regular', 'San Francisco', Roboto, 'Segoe UI', 'Helvetica Neue', 'Lucida Grande', sans-serif", + fontSize: "14px", + }, }; export interface BackgroundItemProps { @@ -62,10 +66,10 @@ export default class Swatch extends React.Component { >
-

+

{this.props.name}:

-

+

{this.props.value}