atom-nuxt 1.2.2 → 1.3.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,7 +1,7 @@
1
1
  {
2
2
  "name": "@atomengine/atom-nuxt",
3
3
  "configKey": "atomNuxt",
4
- "version": "1.2.2",
4
+ "version": "1.3.0",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "0.8.4",
7
7
  "unbuild": "2.0.0"
@@ -257,7 +257,7 @@ watch(() => filterValues, () => {
257
257
 
258
258
  watch(() => props.customFilters, (newVal) => {
259
259
  // Update filterValues when customFilters prop changes
260
- filterValues.value = {...newVal, ...filterValues.value};
260
+ filterValues.value = {...filterValues.value, ...newVal};
261
261
  }, {deep: true});
262
262
 
263
263
  const debouncedGet = useDebounceFn(() => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "atom-nuxt",
3
- "version": "1.2.2",
3
+ "version": "1.3.0",
4
4
  "description": "My new Nuxt module",
5
5
  "repository": "atomengine/atom-nuxt",
6
6
  "license": "MIT",