@dargmuesli/nuxt-cookie-control 8.6.0 → 8.6.1

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@dargmuesli/nuxt-cookie-control",
3
- "version": "8.6.0",
3
+ "version": "8.6.1",
4
4
  "configKey": "cookieControl",
5
5
  "compatibility": {
6
6
  "nuxt": ">=3.0.0"
package/dist/module.mjs CHANGED
@@ -105,7 +105,7 @@ const DEFAULTS = {
105
105
  };
106
106
 
107
107
  const name = "@dargmuesli/nuxt-cookie-control";
108
- const version = "8.6.0";
108
+ const version = "8.6.1";
109
109
 
110
110
  const resolver = createResolver(import.meta.url);
111
111
  const runtimeDir = resolver.resolve("./runtime");
@@ -231,7 +231,7 @@ import {
231
231
  } from '#cookie-control/types'
232
232
  import { useCookieControl, useCookie, useNuxtApp } from '#imports'
233
233
 
234
- export interface Props {
234
+ interface Props {
235
235
  locale?: Locale
236
236
  }
237
237
  const props = withDefaults(defineProps<Props>(), {
package/package.json CHANGED
@@ -97,5 +97,5 @@
97
97
  },
98
98
  "type": "module",
99
99
  "types": "./dist/types.d.ts",
100
- "version": "8.6.0"
100
+ "version": "8.6.1"
101
101
  }