tinacms 3.8.2 → 3.8.3

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.
Files changed (2) hide show
  1. package/dist/index.js +10 -10
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -3269,7 +3269,7 @@ const Heading1 = ({
3269
3269
  headerClasses,
3270
3270
  blockClasses,
3271
3271
  className,
3272
- "text-4xl mb-4 last:mb-0 mt-6 first:mt-0 font-libre-baskerville"
3272
+ "text-4xl mb-4 last:mb-0 mt-6 first:mt-0 font-inter"
3273
3273
  )
3274
3274
  },
3275
3275
  children
@@ -3286,7 +3286,7 @@ const Heading2 = ({
3286
3286
  headerClasses,
3287
3287
  blockClasses,
3288
3288
  className,
3289
- "text-3xl mb-4 last:mb-0 mt-6 first:mt-0 font-libre-baskerville"
3289
+ "text-3xl mb-4 last:mb-0 mt-6 first:mt-0 font-inter"
3290
3290
  )
3291
3291
  },
3292
3292
  children
@@ -3303,7 +3303,7 @@ const Heading3 = ({
3303
3303
  headerClasses,
3304
3304
  blockClasses,
3305
3305
  className,
3306
- "text-2xl mb-4 last:mb-0 mt-6 first:mt-0 font-libre-baskerville"
3306
+ "text-2xl mb-4 last:mb-0 mt-6 first:mt-0 font-inter"
3307
3307
  )
3308
3308
  },
3309
3309
  children
@@ -3320,13 +3320,13 @@ const Heading4 = ({
3320
3320
  headerClasses,
3321
3321
  blockClasses,
3322
3322
  className,
3323
- "text-xl mb-4 last:mb-0 mt-6 first:mt-0 font-libre-baskerville"
3323
+ "text-xl mb-4 last:mb-0 mt-6 first:mt-0 font-inter"
3324
3324
  )
3325
3325
  },
3326
3326
  children
3327
3327
  );
3328
- const headerSerifStyle = {
3329
- fontFamily: "'Libre Baskerville', serif",
3328
+ const headerFontStyle = {
3329
+ fontFamily: "'Inter', sans-serif",
3330
3330
  fontWeight: "400"
3331
3331
  };
3332
3332
  const Heading5 = ({
@@ -3343,7 +3343,7 @@ const Heading5 = ({
3343
3343
  className,
3344
3344
  "text-lg mb-4 last:mb-0 mt-6 first:mt-0"
3345
3345
  ),
3346
- style: headerSerifStyle
3346
+ style: headerFontStyle
3347
3347
  },
3348
3348
  children
3349
3349
  );
@@ -3361,7 +3361,7 @@ const Heading6 = ({
3361
3361
  className,
3362
3362
  "text-base mb-4 last:mb-0 mt-6 first:mt-0"
3363
3363
  ),
3364
- style: headerSerifStyle
3364
+ style: headerFontStyle
3365
3365
  },
3366
3366
  children
3367
3367
  );
@@ -4221,7 +4221,7 @@ const IconButton = ({
4221
4221
  function FontLoader() {
4222
4222
  React.useEffect(() => {
4223
4223
  const link = document.createElement("link");
4224
- link.href = "https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Libre+Baskerville:wght@400;500;600;700&display=swap";
4224
+ link.href = "https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap";
4225
4225
  link.rel = "stylesheet";
4226
4226
  document.head.appendChild(link);
4227
4227
  return () => {
@@ -12780,7 +12780,7 @@ const NavProvider = ({
12780
12780
  const name = "tinacms";
12781
12781
  const type = "module";
12782
12782
  const typings = "dist/index.d.ts";
12783
- const version$1 = "3.8.2";
12783
+ const version$1 = "3.8.3";
12784
12784
  const main = "dist/index.js";
12785
12785
  const module = "./dist/index.js";
12786
12786
  const exports = {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "tinacms",
3
3
  "type": "module",
4
4
  "typings": "dist/index.d.ts",
5
- "version": "3.8.2",
5
+ "version": "3.8.3",
6
6
  "main": "dist/index.js",
7
7
  "module": "./dist/index.js",
8
8
  "exports": {