@dargmuesli/nuxt-cookie-control 6.1.2 → 6.1.4
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 +1 -1
- package/dist/module.mjs +2 -2
- package/dist/runtime/locale/hu.mjs +2 -2
- package/dist/runtime/plugin.d.ts +15 -2
- package/package.json +5 -5
package/dist/module.json
CHANGED
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 = "6.1.
|
|
6
|
+
const version = "6.1.4";
|
|
7
7
|
|
|
8
8
|
const en = {
|
|
9
9
|
accept: "Accept",
|
|
@@ -152,7 +152,7 @@ const module = defineNuxtModule({
|
|
|
152
152
|
addTemplate({
|
|
153
153
|
filename: "cookie-control-options.ts",
|
|
154
154
|
write: true,
|
|
155
|
-
getContents: () => `import { ModuleOptions } from '
|
|
155
|
+
getContents: () => `import { ModuleOptions } from '#cookie-control/types'
|
|
156
156
|
|
|
157
157
|
export default ${JSON.stringify(
|
|
158
158
|
moduleOptions,
|
|
@@ -5,13 +5,13 @@ export default {
|
|
|
5
5
|
bannerTitle: "S\xFCtik",
|
|
6
6
|
close: "Bez\xE1r",
|
|
7
7
|
cookiesFunctional: "Funkcion\xE1lis s\xFCtik",
|
|
8
|
-
cookiesNecessary: "Sz\xFCks\xE9ges s\
|
|
8
|
+
cookiesNecessary: "Sz\xFCks\xE9ges s\xFCtik",
|
|
9
9
|
cookiesOptional: "Opcion\xE1lis s\xFCtik",
|
|
10
10
|
decline: "Elfogadom a sz\xFCks\xE9geset",
|
|
11
11
|
declineAll: "\xD6sszes elutas\xEDt\xE1sa",
|
|
12
12
|
here: "itt",
|
|
13
13
|
iframeBlocked: "Ennek megtekint\xE9s\xE9hez, enged\xE9lyezd a funkcion\xE1lis s\xFCtik haszn\xE1lat\xE1t",
|
|
14
|
-
manageCookies: "S\
|
|
14
|
+
manageCookies: "S\xFCtik kezel\xE9se",
|
|
15
15
|
save: "Ment\xE9s",
|
|
16
16
|
settingsUnsaved: "Ment\xE9s n\xE9lk\xFCli be\xE1ll\xEDt\xE1sok vannak"
|
|
17
17
|
};
|
package/dist/runtime/plugin.d.ts
CHANGED
|
@@ -1,2 +1,15 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import { State } from './types'
|
|
2
|
+
|
|
3
|
+
declare module '#app' {
|
|
4
|
+
interface NuxtApp {
|
|
5
|
+
$cookies: State
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
declare module '@vue/runtime-core' {
|
|
10
|
+
interface ComponentCustomProperties {
|
|
11
|
+
$cookies: State
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export {}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dargmuesli/nuxt-cookie-control",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.4",
|
|
4
4
|
"description": "Nuxt Cookie Control Module",
|
|
5
5
|
"author": "Dario Ferderber <dario.ferderber@broj42.com>",
|
|
6
6
|
"maintainers": [
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"engines": {
|
|
19
19
|
"node": ">=16"
|
|
20
20
|
},
|
|
21
|
-
"packageManager": "pnpm@8.6.
|
|
21
|
+
"packageManager": "pnpm@8.6.10",
|
|
22
22
|
"exports": {
|
|
23
23
|
".": {
|
|
24
24
|
"import": "./dist/module.mjs",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"prepare": "husky install"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@nuxt/kit": "3.6.
|
|
43
|
+
"@nuxt/kit": "3.6.5",
|
|
44
44
|
"@sindresorhus/slugify": "2.2.1",
|
|
45
45
|
"css-vars-ponyfill": "2.4.8",
|
|
46
46
|
"string-replace-loader": "3.1.0"
|
|
@@ -56,11 +56,11 @@
|
|
|
56
56
|
"eslint-plugin-prettier": "5.0.0",
|
|
57
57
|
"husky": "8.0.3",
|
|
58
58
|
"lint-staged": "13.2.3",
|
|
59
|
-
"nuxt": "3.6.
|
|
59
|
+
"nuxt": "3.6.5",
|
|
60
60
|
"prettier": "3.0.0",
|
|
61
61
|
"typescript": "5.1.6",
|
|
62
62
|
"vue": "3.3.4",
|
|
63
|
-
"vue-tsc": "1.8.
|
|
63
|
+
"vue-tsc": "1.8.6",
|
|
64
64
|
"webpack": "5.88.2"
|
|
65
65
|
},
|
|
66
66
|
"publishConfig": {
|