@jjlmoya/utils-science 1.3.0 → 1.4.0

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jjlmoya/utils-science",
3
- "version": "1.3.0",
3
+ "version": "1.4.0",
4
4
  "type": "module",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -11,4 +11,4 @@ const { locale = 'es' } = Astro.props;
11
11
  const content = await asteroidImpact.i18n[locale]?.();
12
12
  ---
13
13
 
14
- {content && <Bibliography links={content.bibliography} />}
14
+ {content && <Bibliography links={content.bibliography} title={content.ui.bibliographyTitle} />}
@@ -11,4 +11,4 @@ const { locale = 'es' } = Astro.props;
11
11
  const content = await cellularRenewal.i18n[locale]?.();
12
12
  ---
13
13
 
14
- {content && <Bibliography links={content.bibliography} />}
14
+ {content && <Bibliography links={content.bibliography} title={content.ui.bibliographyTitle} />}
@@ -11,4 +11,4 @@ const { locale = 'es' } = Astro.props;
11
11
  const content = await colonyCounter.i18n[locale]?.();
12
12
  ---
13
13
 
14
- {content && <Bibliography links={content.bibliography} />}
14
+ {content && <Bibliography links={content.bibliography} title={content.ui.bibliographyTitle} />}
@@ -11,4 +11,4 @@ const { locale = 'es' } = Astro.props;
11
11
  const content = await microwaveDetector.i18n[locale]?.();
12
12
  ---
13
13
 
14
- {content && <Bibliography links={content.bibliography} />}
14
+ {content && <Bibliography links={content.bibliography} title={content.ui.bibliographyTitle} />}
@@ -11,4 +11,4 @@ const { locale = 'es' } = Astro.props;
11
11
  const content = await simulationProbability.i18n[locale]?.();
12
12
  ---
13
13
 
14
- {content && <Bibliography links={content.bibliography} />}
14
+ {content && <Bibliography links={content.bibliography} title={content.ui.bibliographyTitle} />}