@paris-ias/list 1.0.103 → 1.0.105

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": "@paris-ias/list",
3
3
  "configKey": "list",
4
- "version": "1.0.103",
4
+ "version": "1.0.105",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.0",
7
7
  "unbuild": "3.5.0"
@@ -115,7 +115,7 @@ const results = computed(() => {
115
115
  });
116
116
  const search = computed({
117
117
  get() {
118
- return props.type === "all" ? rootStore.search : $stores[props.type].search;
118
+ return rootStore.search;
119
119
  },
120
120
  set: await useDebounceFn(async function(v) {
121
121
  await rootStore.updateSearch({
@@ -40,7 +40,7 @@
40
40
  </template>
41
41
 
42
42
  <script setup>
43
- import { mergeProps, ref } from "vue";
43
+ import { mergeProps } from "vue";
44
44
  import { useDisplay } from "vuetify";
45
45
  import { useRootStore } from "../../../stores/root";
46
46
  import { useNuxtApp, ref, useI18n } from "#imports";
@@ -108,7 +108,6 @@ export default defineNuxtPlugin(async (nuxtApp) => {
108
108
  const queries = {};
109
109
  const models = {};
110
110
  const builtFilters = await import("../public/filters.json");
111
- console.log("Filters loaded successfully:", builtFilters);
112
111
  console.log("INITIALIZING STORES");
113
112
  await Promise.all(
114
113
  appConfig.list.modules.map(async (type) => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "license": "AGPL-3.0-only",
3
3
  "main": "./dist/module.mjs",
4
- "version": "1.0.103",
4
+ "version": "1.0.105",
5
5
  "name": "@paris-ias/list",
6
6
  "repository": {
7
7
  "url": "git+https://github.com/IEA-Paris/list.git",