Skip to content

Commit 27ba6e3

Browse files
wbridegroomBill Bridegroom
and
Bill Bridegroom
authored
Updating Font to Inter (#983)
* Updating Font to `Inter` * Update changelog --------- Co-authored-by: Bill Bridegroom <william.bridegroom@mx.com>
1 parent a7ade2d commit 27ba6e3

File tree

7 files changed

+24
-16
lines changed

7 files changed

+24
-16
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,7 @@ dist
3232
# Webpack files
3333
demo/bundle.js
3434

35-
.DS_Store
35+
.DS_Store
36+
37+
# Webstorm cache
38+
.idea

docs/bundle.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/components/Changelog.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ class Changelog extends React.Component {
77
<h1>Change Log</h1>
88

99
<h2>MX React Components V 8.0.0</h2>
10+
<h3>8.5.0</h3>
11+
<ul>
12+
<li>Changing Font to Inter</li>
13+
</ul>
14+
1015
<h3>8.4.4</h3>
1116
<ul>
1217
<li>Republish for change log</li>

docs/components/DrawerDocs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ class DrawerDocs extends React.Component {
297297
return {
298298
content: {
299299
padding: 60,
300-
fontFamily: 'ProximaNovaRegular, Helvetica, Arial, sans-serif',
300+
fontFamily: 'InterRegular, Helvetica, Arial, sans-serif',
301301
color: '#2E323F'
302302
},
303303
unorderdLists: {

docs/components/StylesDocs.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -99,15 +99,15 @@ class StylesDocs extends React.Component {
9999
</Markdown>
100100

101101
<h5>Fonts</h5>
102-
<p>In order to leverage the ProximaNova fonts, you will need to include those fonts in your application using <Code>@font_face</Code> and make sure the names match.</p>
102+
<p>In order to leverage the Inter fonts, you will need to include those fonts in your application using <Code>@font_face</Code> and make sure the names match.</p>
103103

104104
<Markdown lang='js'>
105105
{`
106-
Styles.Fonts.THIN // ProximaNovaThin, Helvetica, Arial, sans-serif
107-
Styles.Fonts.LIGHT // ProximaNovaLight, Helvetica, Arial, sans-serif
108-
Styles.Fonts.REGULAR // ProximaNovaRegular, Helvetica, Arial, sans-serif
109-
Styles.Fonts.ITALIC // ProximaNovaRegularItalic, Helvetica, Arial, sans-serif
110-
Styles.Fonts.SEMIBOLD // ProximaNovaSemibold, Helvetica, Arial, sans-serif
106+
Styles.Fonts.THIN // InterRegular, Helvetica, Arial, sans-serif
107+
Styles.Fonts.LIGHT // InterRegular, Helvetica, Arial, sans-serif
108+
Styles.Fonts.REGULAR // InterRegular, Helvetica, Arial, sans-serif
109+
Styles.Fonts.ITALIC // InterRegular, Helvetica, Arial, sans-serif
110+
Styles.Fonts.SEMIBOLD // InterSemibold, Helvetica, Arial, sans-serif
111111
`}
112112
</Markdown>
113113

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mx-react-components",
3-
"version": "8.4.4",
3+
"version": "8.5.0",
44
"description": "A collection of generic React UI components",
55
"main": "dist/index.js",
66
"files": [

src/constants/Style.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,11 @@ const Style = {
6868
},
6969

7070
Fonts: {
71-
THIN: 'ProximaNovaThin, Helvetica, Arial, sans-serif',
72-
LIGHT: 'ProximaNovaLight, Helvetica, Arial, sans-serif',
73-
REGULAR: 'ProximaNovaRegular, Helvetica, Arial, sans-serif',
74-
ITALIC: 'ProximaNovaRegularItalic, Helvetica, Arial, sans-serif',
75-
SEMIBOLD: 'ProximaNovaSemibold, Helvetica, Arial, sans-serif'
71+
THIN: 'InterRegular, Helvetica, Arial, sans-serif',
72+
LIGHT: 'InterRegular, Helvetica, Arial, sans-serif',
73+
REGULAR: 'InterRegular, Helvetica, Arial, sans-serif',
74+
ITALIC: 'InterRegular, Helvetica, Arial, sans-serif',
75+
SEMIBOLD: 'InterSemibold, Helvetica, Arial, sans-serif'
7676
},
7777

7878
//Box Shadows

0 commit comments

Comments
 (0)