@tekkare/auriga 0.2.83 → 0.2.84

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
@@ -4,5 +4,5 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.0.0"
6
6
  },
7
- "version": "0.2.83"
7
+ "version": "0.2.84"
8
8
  }
@@ -46,7 +46,7 @@
46
46
  v-if="
47
47
  filterBlocks.length > 0 &&
48
48
  blockCategories !== null &&
49
- blockCategories.length > 0
49
+ blockCategories?.length > 0
50
50
  "
51
51
  class="oip_list v-start gap-16"
52
52
  >
@@ -288,7 +288,7 @@ export default defineComponent({
288
288
  )
289
289
  ];
290
290
  }
291
- return categories.value.some((a) => a.startsWith("{")) ? categories.value.map((a) => JSON.parse(a)) : categories.value;
291
+ return categories.value !== null ? categories.value.some((a) => a.startsWith("{")) ? categories.value.map((a) => JSON.parse(a)) : categories.value : null;
292
292
  });
293
293
  onBeforeMount(async () => {
294
294
  setLang();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekkare/auriga",
3
- "version": "0.2.83",
3
+ "version": "0.2.84",
4
4
  "description": "Aurgia is a UI kit developped by Tekkare",
5
5
  "license": "MIT",
6
6
  "type": "module",