@dargmuesli/nuxt-cookie-control 9.0.0 → 9.0.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,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dargmuesli/nuxt-cookie-control",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.1",
|
|
4
4
|
"configKey": "cookieControl",
|
|
5
5
|
"compatibility": {
|
|
6
6
|
"nuxt": ">=3.0.0"
|
|
7
7
|
},
|
|
8
8
|
"builder": {
|
|
9
|
-
"@nuxt/module-builder": "1.0.
|
|
9
|
+
"@nuxt/module-builder": "1.0.1",
|
|
10
10
|
"unbuild": "unknown"
|
|
11
11
|
}
|
|
12
12
|
}
|
package/dist/module.mjs
CHANGED
|
@@ -199,6 +199,7 @@
|
|
|
199
199
|
|
|
200
200
|
<script setup>
|
|
201
201
|
import { ref, computed, onBeforeMount, watch } from "vue";
|
|
202
|
+
import ClientOnlyPrerender from "#cookie-control/components/ClientOnlyPrerender.vue";
|
|
202
203
|
import { COOKIE_ID_SEPARATOR } from "#cookie-control/constants";
|
|
203
204
|
import {
|
|
204
205
|
getAllCookieIdsString,
|
|
@@ -207,12 +208,12 @@ import {
|
|
|
207
208
|
resolveTranslatable
|
|
208
209
|
} from "#cookie-control/methods";
|
|
209
210
|
import setCssVariables from "#cookie-control/set-vars";
|
|
211
|
+
import {
|
|
212
|
+
CookieType
|
|
213
|
+
} from "#cookie-control/types";
|
|
210
214
|
import { useCookieControl, useCookie, useNuxtApp } from "#imports";
|
|
211
215
|
const { locale = "en" } = defineProps({
|
|
212
|
-
locale: {
|
|
213
|
-
type: String,
|
|
214
|
-
required: false
|
|
215
|
-
}
|
|
216
|
+
locale: { type: String, required: false }
|
|
216
217
|
});
|
|
217
218
|
const {
|
|
218
219
|
cookiesEnabled,
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
|
|
23
23
|
<script setup>
|
|
24
24
|
import { computed } from "vue";
|
|
25
|
+
import ClientOnlyPrerender from "#cookie-control/components/ClientOnlyPrerender.vue";
|
|
25
26
|
import { useNuxtApp, useCookieControl } from "#imports";
|
|
26
27
|
const { cookiesEnabled, isModalActive, moduleOptions } = useCookieControl();
|
|
27
28
|
const nuxtApp = useNuxtApp();
|
package/package.json
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"@commitlint/config-conventional": "19.8.0",
|
|
16
16
|
"@dargmuesli/nuxt-cookie-control": "link:",
|
|
17
17
|
"@nuxt/eslint-config": "1.3.0",
|
|
18
|
-
"@nuxt/module-builder": "1.0.
|
|
18
|
+
"@nuxt/module-builder": "1.0.1",
|
|
19
19
|
"@nuxt/schema": "3.16.2",
|
|
20
20
|
"@semantic-release/changelog": "6.0.3",
|
|
21
21
|
"@semantic-release/commit-analyzer": "13.0.1",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"vite": "6.2.5",
|
|
35
35
|
"vue": "3.5.13",
|
|
36
36
|
"vue-tsc": "2.2.8",
|
|
37
|
-
"webpack": "5.
|
|
37
|
+
"webpack": "5.99.5"
|
|
38
38
|
},
|
|
39
39
|
"engines": {
|
|
40
40
|
"node": ">=16"
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"Jonas Thelemann"
|
|
64
64
|
],
|
|
65
65
|
"name": "@dargmuesli/nuxt-cookie-control",
|
|
66
|
-
"packageManager": "pnpm@10.
|
|
66
|
+
"packageManager": "pnpm@10.8.0",
|
|
67
67
|
"pnpm": {
|
|
68
68
|
"ignoredBuiltDependencies": [
|
|
69
69
|
"@parcel/watcher",
|
|
@@ -98,5 +98,5 @@
|
|
|
98
98
|
]
|
|
99
99
|
}
|
|
100
100
|
},
|
|
101
|
-
"version": "9.0.
|
|
101
|
+
"version": "9.0.1"
|
|
102
102
|
}
|