@veristone/nuxt-v-app 0.2.4 → 0.2.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.
@@ -279,8 +279,8 @@ watch(
279
279
  }
280
280
  );
281
281
 
282
- // Global filter (search)
283
- const globalFilter = ref("");
282
+ // Global filter - v-model support
283
+ const globalFilter = defineModel<string>("globalFilter", { default: "" });
284
284
 
285
285
  // Initialize default sorting if provided
286
286
  onMounted(() => {
package/package.json CHANGED
@@ -1,10 +1,9 @@
1
1
  {
2
2
  "name": "@veristone/nuxt-v-app",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "Veristone Nuxt App Layer - Shared components, composables, and layouts",
5
5
  "type": "module",
6
6
  "private": false,
7
- "description": "Veristone Nuxt App Layer - Shared components, composables, and layouts",
8
7
  "keywords": [
9
8
  "nuxt",
10
9
  "nuxt-layer",
@@ -24,7 +23,6 @@
24
23
  },
25
24
  "license": "MIT",
26
25
  "author": "veristone",
27
- "type": "module",
28
26
  "publishConfig": {
29
27
  "access": "public"
30
28
  },
@@ -70,4 +68,4 @@
70
68
  "@nuxt/ui": "^4.0.0",
71
69
  "nuxt": "^4.0.0"
72
70
  }
73
- }
71
+ }