cec-nuxt-lib 0.8.8 → 0.9.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/dist/module.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "cec-nuxt-lib",
3
3
  "configKey": "cec-nuxt-lib",
4
- "version": "0.8.8"
4
+ "version": "0.9.0"
5
5
  }
@@ -648,7 +648,7 @@ const promotionalFullWidthImageWithSideOverlay = (props: any) => {
648
648
  };
649
649
 
650
650
  const processUri = (uri) => {
651
- return uri.toLowerCase().replace(/%e2/g, '%E2');
651
+ return encodeURI(decodeURI(uri).toLowerCase());
652
652
  };
653
653
 
654
654
  const genericList = (props: any) => {
@@ -8,9 +8,7 @@
8
8
  <h2 class="fs-4 mb-3 pb-2">Using this site</h2>
9
9
  <ul class="list-unstyled cec-sub-nav">
10
10
  <li>
11
- <a href="/a_to_z_site_index/a_to_z_site_index.aspx"
12
- >A to Z site index</a
13
- >
11
+ <a href="/a-to-z-site-index">A to Z site index</a>
14
12
  </li>
15
13
  <li>
16
14
  <a
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.8.8",
2
+ "version": "0.9.0",
3
3
  "name": "cec-nuxt-lib",
4
4
  "description": "Nuxt components and assets",
5
5
  "license": "MIT",