monto-email-core 0.1.6 → 0.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,23 +4,23 @@ function getFontFamily(fontFamily) {
4
4
  const f = fontFamily !== null && fontFamily !== void 0 ? fontFamily : 'MODERN_SANS';
5
5
  switch (f) {
6
6
  case 'MODERN_SANS':
7
- return '"Helvetica Neue", "Arial Nova", "Nimbus Sans", Arial, sans-serif';
7
+ return 'Helvetica, Arial, sans-serif';
8
8
  case 'BOOK_SANS':
9
- return 'Optima, Candara, "Noto Sans", source-sans-pro, sans-serif';
9
+ return 'Optima, Candara, source-sans-pro, sans-serif';
10
10
  case 'ORGANIC_SANS':
11
- return 'Seravek, "Gill Sans Nova", Ubuntu, Calibri, "DejaVu Sans", source-sans-pro, sans-serif';
11
+ return 'Seravek, Ubuntu, Calibri, source-sans-pro, sans-serif';
12
12
  case 'GEOMETRIC_SANS':
13
- return 'Avenir, "Avenir Next LT Pro", Montserrat, Corbel, "URW Gothic", source-sans-pro, sans-serif';
13
+ return 'Avenir, Montserrat, Corbel, source-sans-pro, sans-serif';
14
14
  case 'HEAVY_SANS':
15
- return 'Bahnschrift, "DIN Alternate", "Franklin Gothic Medium", "Nimbus Sans Narrow", sans-serif-condensed, sans-serif';
15
+ return 'Bahnschrift, sans-serif-condensed, sans-serif';
16
16
  case 'ROUNDED_SANS':
17
- return 'ui-rounded, "Hiragino Maru Gothic ProN", Quicksand, Comfortaa, Manjari, "Arial Rounded MT Bold", Calibri, source-sans-pro, sans-serif';
17
+ return 'ui-rounded, Quicksand, Comfortaa, Manjari, Calibri, source-sans-pro, sans-serif';
18
18
  case 'MODERN_SERIF':
19
- return 'Charter, "Bitstream Charter", "Sitka Text", Cambria, serif';
19
+ return 'Charter, Cambria, serif';
20
20
  case 'BOOK_SERIF':
21
- return '"Iowan Old Style", "Palatino Linotype", "URW Palladio L", P052, serif';
21
+ return 'P052, serif';
22
22
  case 'MONOSPACE':
23
- return '"Nimbus Mono PS", "Courier New", "Cutive Mono", monospace';
23
+ return 'monospace';
24
24
  }
25
25
  }
26
26
  function getBorder({ borderColor }) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "monto-email-core",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "React component to render email messages",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",