UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

178 lines (168 loc) 6.67 kB
import _objectSpread from "@babel/runtime/helpers/objectSpread"; import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties"; import deepmerge from 'deepmerge'; // < 1kb payload overhead when lodash/merge is > 3kb. import warning from 'warning'; import typographyMigration from './typographyMigration'; function round(value) { return Math.round(value * 1e5) / 1e5; } const caseAllCaps = { textTransform: 'uppercase' }; const defaultFontFamiliy = '"Roboto", "Helvetica", "Arial", sans-serif'; /** * @see @link{https://material.io/design/typography/the-type-system.html} * @see @link{https://material.io/design/typography/understanding-typography.html} */ export default function createTypography(palette, typography) { const _ref = typeof typography === 'function' ? typography(palette) : typography, { fontFamily = defaultFontFamiliy, // The default font size of the Material Specification. fontSize = 14, // px fontWeightLight = 300, fontWeightRegular = 400, fontWeightMedium = 500, // Tell Material-UI what's the font-size on the html element. // 16px is the default font-size used by browsers. htmlFontSize = 16, suppressDeprecationWarnings = process.env.MUI_SUPPRESS_DEPRECATION_WARNINGS, useNextVariants = false, // Apply the CSS properties to all the variants. allVariants } = _ref, other = _objectWithoutProperties(_ref, ["fontFamily", "fontSize", "fontWeightLight", "fontWeightRegular", "fontWeightMedium", "htmlFontSize", "suppressDeprecationWarnings", "useNextVariants", "allVariants"]); process.env.NODE_ENV !== "production" ? warning(!Object.keys(other).some(variant => typographyMigration.deprecatedVariants.includes(variant)), 'Material-UI: You are passing a deprecated variant to ' + `createTypography. ${typographyMigration.migrationGuideMessage}`) : void 0; process.env.NODE_ENV !== "production" ? warning(useNextVariants || !Object.keys(other).some(variant => typographyMigration.restyledVariants.includes(variant)), 'Material-UI: You are passing a variant to createTypography ' + 'that will be restyled in the next major release, without indicating that you ' + `are using typography v2 (set \`useNextVariants\` to true. ${typographyMigration.migrationGuideMessage}`) : void 0; const coef = fontSize / 14; const pxToRem = size => `${size / htmlFontSize * coef}rem`; const buildVariant = (fontWeight, size, lineHeight, letterSpacing, casing) => _objectSpread({ color: palette.text.primary, fontFamily, fontWeight, fontSize: pxToRem(size), // Unitless following http://meyerweb.com/eric/thoughts/2006/02/08/unitless-line-heights/ lineHeight }, fontFamily === defaultFontFamiliy ? { letterSpacing: `${round(letterSpacing / size)}em` } : {}, casing, allVariants); const nextVariants = { h1: buildVariant(fontWeightLight, 96, 1, -1.5), h2: buildVariant(fontWeightLight, 60, 1, -0.5), h3: buildVariant(fontWeightRegular, 48, 1.04, 0), h4: buildVariant(fontWeightRegular, 34, 1.17, 0.25), h5: buildVariant(fontWeightRegular, 24, 1.33, 0), h6: buildVariant(fontWeightMedium, 20, 1.6, 0.15), subtitle1: buildVariant(fontWeightRegular, 16, 1.75, 0.15), subtitle2: buildVariant(fontWeightMedium, 14, 1.57, 0.1), body1Next: buildVariant(fontWeightRegular, 16, 1.5, 0.15), body2Next: buildVariant(fontWeightRegular, 14, 1.5, 0.15), buttonNext: buildVariant(fontWeightMedium, 14, 1.5, 0.4, caseAllCaps), captionNext: buildVariant(fontWeightRegular, 12, 1.66, 0.4), overline: buildVariant(fontWeightRegular, 12, 2.66, 1, caseAllCaps) }; // To remove in v4 const oldVariants = { display4: _objectSpread({ fontSize: pxToRem(112), fontWeight: fontWeightLight, fontFamily, letterSpacing: '-.04em', lineHeight: `${round(128 / 112)}em`, marginLeft: '-.04em', color: palette.text.secondary }, allVariants), display3: _objectSpread({ fontSize: pxToRem(56), fontWeight: fontWeightRegular, fontFamily, letterSpacing: '-.02em', lineHeight: `${round(73 / 56)}em`, marginLeft: '-.02em', color: palette.text.secondary }, allVariants), display2: _objectSpread({ fontSize: pxToRem(45), fontWeight: fontWeightRegular, fontFamily, lineHeight: `${round(51 / 45)}em`, marginLeft: '-.02em', color: palette.text.secondary }, allVariants), display1: _objectSpread({ fontSize: pxToRem(34), fontWeight: fontWeightRegular, fontFamily, lineHeight: `${round(41 / 34)}em`, color: palette.text.secondary }, allVariants), headline: _objectSpread({ fontSize: pxToRem(24), fontWeight: fontWeightRegular, fontFamily, lineHeight: `${round(32.5 / 24)}em`, color: palette.text.primary }, allVariants), title: _objectSpread({ fontSize: pxToRem(21), fontWeight: fontWeightMedium, fontFamily, lineHeight: `${round(24.5 / 21)}em`, color: palette.text.primary }, allVariants), subheading: _objectSpread({ fontSize: pxToRem(16), fontWeight: fontWeightRegular, fontFamily, lineHeight: `${round(24 / 16)}em`, color: palette.text.primary }, allVariants), body2: _objectSpread({ fontSize: pxToRem(14), fontWeight: fontWeightMedium, fontFamily, lineHeight: `${round(24 / 14)}em`, color: palette.text.primary }, allVariants), body1: _objectSpread({ fontSize: pxToRem(14), fontWeight: fontWeightRegular, fontFamily, lineHeight: `${round(20.5 / 14)}em`, color: palette.text.primary }, allVariants), caption: _objectSpread({ fontSize: pxToRem(12), fontWeight: fontWeightRegular, fontFamily, lineHeight: `${round(16.5 / 12)}em`, color: palette.text.secondary }, allVariants), button: _objectSpread({ fontSize: pxToRem(14), textTransform: 'uppercase', fontWeight: fontWeightMedium, fontFamily, color: palette.text.primary }, allVariants) }; return deepmerge(_objectSpread({ pxToRem, round, fontFamily, fontSize, fontWeightLight, fontWeightRegular, fontWeightMedium }, oldVariants, useNextVariants ? _objectSpread({}, nextVariants, { body1: nextVariants.body1Next, body2: nextVariants.body2Next, button: nextVariants.buttonNext, caption: nextVariants.captionNext }) : nextVariants, { suppressDeprecationWarnings, useNextVariants }), other, { clone: false // No need to clone deep }); }