cec-nuxt-lib 0.11.3 → 0.11.5

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,7 +1,7 @@
1
1
  {
2
2
  "name": "cec-nuxt-lib",
3
3
  "configKey": "cec-nuxt-lib",
4
- "version": "0.11.03",
4
+ "version": "0.11.05",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.1",
7
7
  "unbuild": "3.5.0"
@@ -92,11 +92,13 @@ const doSearch = async () => {
92
92
  }
93
93
  };
94
94
  onMounted(() => {
95
- try {
96
- CookieControl.load(config);
97
- } catch (ignore) {
98
- console.log("No cookie control");
99
- }
95
+ setTimeout(() => {
96
+ try {
97
+ CookieControl.load(config);
98
+ } catch (err) {
99
+ console.log("No cookie control");
100
+ }
101
+ }, 100);
100
102
  let accordions = document.getElementsByClassName("access-acc-container");
101
103
  if (accordions.length) {
102
104
  let hash = window.location.hash;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.11.03",
2
+ "version": "0.11.05",
3
3
  "name": "cec-nuxt-lib",
4
4
  "description": "Nuxt components and assets",
5
5
  "license": "MIT",