@dargmuesli/nuxt-cookie-control 7.2.1 → 7.2.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.d.mts CHANGED
@@ -40,7 +40,9 @@ interface ModuleOptions {
40
40
  necessary: Cookie[];
41
41
  optional: Cookie[];
42
42
  };
43
- cookieOptions: CookieOptions;
43
+ cookieOptions: CookieOptions & {
44
+ readonly?: false;
45
+ };
44
46
  isAcceptNecessaryButtonEnabled: boolean;
45
47
  isControlButtonEnabled: boolean;
46
48
  isCookieIdVisible: boolean;
package/dist/module.d.ts CHANGED
@@ -40,7 +40,9 @@ interface ModuleOptions {
40
40
  necessary: Cookie[];
41
41
  optional: Cookie[];
42
42
  };
43
- cookieOptions: CookieOptions;
43
+ cookieOptions: CookieOptions & {
44
+ readonly?: false;
45
+ };
44
46
  isAcceptNecessaryButtonEnabled: boolean;
45
47
  isControlButtonEnabled: boolean;
46
48
  isCookieIdVisible: boolean;
package/dist/module.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dargmuesli/nuxt-cookie-control",
3
- "version": "7.2.1",
3
+ "version": "7.2.2",
4
4
  "configKey": "cookieControl",
5
5
  "compatibility": {
6
6
  "nuxt": "^3.0.0"
package/dist/module.mjs CHANGED
@@ -3,7 +3,7 @@ import { pathToFileURL } from 'node:url';
3
3
  import { createResolver, defineNuxtModule, addPlugin, addImports, addTemplate, extendWebpackConfig, extendViteConfig, resolvePath } from '@nuxt/kit';
4
4
 
5
5
  const name = "@dargmuesli/nuxt-cookie-control";
6
- const version = "7.2.1";
6
+ const version = "7.2.2";
7
7
 
8
8
  const en = {
9
9
  accept: "Accept",
@@ -43,7 +43,9 @@ export interface ModuleOptions {
43
43
  necessary: Cookie[];
44
44
  optional: Cookie[];
45
45
  };
46
- cookieOptions: CookieOptions;
46
+ cookieOptions: CookieOptions & {
47
+ readonly?: false;
48
+ };
47
49
  isAcceptNecessaryButtonEnabled: boolean;
48
50
  isControlButtonEnabled: boolean;
49
51
  isCookieIdVisible: boolean;
package/dist/types.d.mts CHANGED
@@ -1,8 +1,8 @@
1
1
 
2
- import type { } from './module'
2
+ import type { } from './module.js'
3
3
 
4
4
 
5
5
 
6
6
 
7
7
 
8
- export type { default } from './module'
8
+ export type { default } from './module.js'
package/package.json CHANGED
@@ -14,19 +14,19 @@
14
14
  "@commitlint/cli": "18.4.3",
15
15
  "@commitlint/config-conventional": "18.4.3",
16
16
  "@dargmuesli/nuxt-cookie-control": "link:",
17
- "@nuxt/module-builder": "0.5.4",
18
- "@nuxt/schema": "3.8.2",
17
+ "@nuxt/module-builder": "0.5.5",
18
+ "@nuxt/schema": "3.9.0",
19
19
  "@nuxtjs/eslint-config-typescript": "12.1.0",
20
20
  "eslint": "8.56.0",
21
21
  "eslint-config-prettier": "9.1.0",
22
- "eslint-plugin-prettier": "5.0.1",
22
+ "eslint-plugin-prettier": "5.1.2",
23
23
  "husky": "8.0.3",
24
24
  "lint-staged": "15.2.0",
25
- "nuxt": "3.8.2",
25
+ "nuxt": "3.9.0",
26
26
  "prettier": "3.1.1",
27
27
  "typescript": "5.3.3",
28
28
  "vue": "3.3.13",
29
- "vue-tsc": "1.8.25",
29
+ "vue-tsc": "1.8.27",
30
30
  "webpack": "5.89.0"
31
31
  },
32
32
  "engines": {
@@ -62,13 +62,13 @@
62
62
  "Jonas Thelemann"
63
63
  ],
64
64
  "name": "@dargmuesli/nuxt-cookie-control",
65
- "packageManager": "pnpm@8.12.1",
65
+ "packageManager": "pnpm@8.13.1",
66
66
  "publishConfig": {
67
67
  "access": "public"
68
68
  },
69
69
  "repository": "https://github.com/dargmuesli/nuxt-cookie-control",
70
70
  "resolutions": {
71
- "@nuxt/kit": "3.8.2"
71
+ "@nuxt/kit": "3.9.0"
72
72
  },
73
73
  "scripts": {
74
74
  "build": "nuxt-module-build build",
@@ -79,5 +79,5 @@
79
79
  },
80
80
  "type": "module",
81
81
  "types": "./dist/module.d.ts",
82
- "version": "7.2.1"
82
+ "version": "7.2.2"
83
83
  }