@dargmuesli/nuxt-cookie-control 2.0.0-beta.7 → 2.0.2

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": "2.0.0-beta.7",
3
+ "version": "2.0.2",
4
4
  "configKey": "cookieControl",
5
5
  "compatibility": {
6
6
  "nuxt": "^3.0.0"
package/dist/module.mjs CHANGED
@@ -11,7 +11,7 @@ const __filename = __cjs_url__.fileURLToPath(import.meta.url);
11
11
  const __dirname = __cjs_path__.dirname(__filename);
12
12
  const require = __cjs_mod__.createRequire(import.meta.url);
13
13
  const name = "@dargmuesli/nuxt-cookie-control";
14
- const version = "2.0.0-beta.7";
14
+ const version = "2.0.2";
15
15
 
16
16
  const en = {
17
17
  acceptAll: "Accept all",
@@ -1,5 +1,5 @@
1
1
  import Cookies from "js-cookie";
2
- import slugify from "slugify";
2
+ import slugify from "@sindresorhus/slugify";
3
3
  import { useCookieControl } from "./composables.mjs";
4
4
  import { LOCALE_DEFAULT } from "./constants.mjs";
5
5
  export const useAcceptNecessary = () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dargmuesli/nuxt-cookie-control",
3
- "version": "2.0.0-beta.7",
3
+ "version": "2.0.2",
4
4
  "description": "Nuxt Cookies Control Module",
5
5
  "author": "Dario Ferderber <dario.ferderber@broj42.com>",
6
6
  "maintainers": [
@@ -37,9 +37,9 @@
37
37
  },
38
38
  "dependencies": {
39
39
  "@nuxt/kit": "3.0.0",
40
+ "@sindresorhus/slugify": "2.1.1",
40
41
  "css-vars-ponyfill": "2.4.8",
41
42
  "js-cookie": "3.0.1",
42
- "slugify": "1.6.5",
43
43
  "string-replace-loader": "3.1.0"
44
44
  },
45
45
  "devDependencies": {