@dargmuesli/nuxt-cookie-control 9.1.0 → 10.0.0-beta.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/README.md +1 -1
- package/dist/module.d.mts +1 -1
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/locale/index.js +2 -2
- package/dist/runtime/types.d.ts +1 -1
- package/package.json +12 -12
- /package/dist/runtime/locale/{zh-CN.d.ts → zh.d.ts} +0 -0
- /package/dist/runtime/locale/{zh-CN.js → zh.js} +0 -0
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|

|
|
8
8
|
|
|
9
|
-
✅ Translated for: ar, az, be, bg, ca, cs, da, de, en, es, fi, fr, hr, hu, id, it, ja, km, ko, lt, nl, no, oc, pt, pl, ro, rs, ru, sk, sl, sv, tr, uk and zh
|
|
9
|
+
✅ Translated for: ar, az, be, bg, ca, cs, da, de, en, es, fi, fr, hr, hu, id, it, ja, km, ko, lt, nl, no, oc, pt, pl, ro, rs, ru, sk, sl, sv, tr, uk and zh
|
|
10
10
|
|
|
11
11
|
✅ Vue 3 support
|
|
12
12
|
|
package/dist/module.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as _nuxt_schema from '@nuxt/schema';
|
|
2
2
|
import { CookieOptions } from 'nuxt/app';
|
|
3
3
|
|
|
4
|
-
type Locale = 'ar' | 'az' | 'be' | 'bg' | 'ca' | 'cs' | 'da' | 'de' | 'en' | 'es' | 'fi' | 'fr' | 'hr' | 'hu' | 'id' | 'it' | 'ja' | 'km' | 'ko' | 'lt' | 'nl' | 'no' | 'oc' | 'pt' | 'pl' | 'ro' | 'rs' | 'ru' | 'sk' | 'sv' | 'tr' | 'uk' | 'zh
|
|
4
|
+
type Locale = 'ar' | 'az' | 'be' | 'bg' | 'ca' | 'cs' | 'da' | 'de' | 'en' | 'es' | 'fi' | 'fr' | 'hr' | 'hu' | 'id' | 'it' | 'ja' | 'km' | 'ko' | 'lt' | 'nl' | 'no' | 'oc' | 'pt' | 'pl' | 'ro' | 'rs' | 'ru' | 'sk' | 'sv' | 'tr' | 'uk' | 'zh';
|
|
5
5
|
type PartialRecord<K extends string | number | symbol, T> = Partial<Record<K, T>>;
|
|
6
6
|
type Translatable = string | PartialRecord<Locale, string>;
|
|
7
7
|
interface Cookie {
|
package/dist/module.json
CHANGED
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 = "
|
|
108
|
+
const version = "10.0.0-beta.1";
|
|
109
109
|
|
|
110
110
|
const resolver = createResolver(import.meta.url);
|
|
111
111
|
const runtimeDir = resolver.resolve("./runtime");
|
|
@@ -31,7 +31,7 @@ import sl from "./sl.js";
|
|
|
31
31
|
import sv from "./sv.js";
|
|
32
32
|
import tr from "./tr.js";
|
|
33
33
|
import uk from "./uk.js";
|
|
34
|
-
import
|
|
34
|
+
import zh from "./zh.js";
|
|
35
35
|
export const locales = [
|
|
36
36
|
ar,
|
|
37
37
|
az,
|
|
@@ -66,5 +66,5 @@ export const locales = [
|
|
|
66
66
|
sv,
|
|
67
67
|
tr,
|
|
68
68
|
uk,
|
|
69
|
-
|
|
69
|
+
zh
|
|
70
70
|
];
|
package/dist/runtime/types.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Ref } from 'vue';
|
|
2
2
|
import type { CookieOptions } from 'nuxt/app';
|
|
3
|
-
export type Locale = 'ar' | 'az' | 'be' | 'bg' | 'ca' | 'cs' | 'da' | 'de' | 'en' | 'es' | 'fi' | 'fr' | 'hr' | 'hu' | 'id' | 'it' | 'ja' | 'km' | 'ko' | 'lt' | 'nl' | 'no' | 'oc' | 'pt' | 'pl' | 'ro' | 'rs' | 'ru' | 'sk' | 'sl' | 'sv' | 'tr' | 'uk' | 'zh
|
|
3
|
+
export type Locale = 'ar' | 'az' | 'be' | 'bg' | 'ca' | 'cs' | 'da' | 'de' | 'en' | 'es' | 'fi' | 'fr' | 'hr' | 'hu' | 'id' | 'it' | 'ja' | 'km' | 'ko' | 'lt' | 'nl' | 'no' | 'oc' | 'pt' | 'pl' | 'ro' | 'rs' | 'ru' | 'sk' | 'sl' | 'sv' | 'tr' | 'uk' | 'zh';
|
|
4
4
|
export type PartialRecord<K extends string | number | symbol, T> = Partial<Record<K, T>>;
|
|
5
5
|
export type Translatable = string | PartialRecord<Locale, string>;
|
|
6
6
|
export declare enum CookieType {
|
package/package.json
CHANGED
|
@@ -14,27 +14,27 @@
|
|
|
14
14
|
"@commitlint/cli": "19.8.1",
|
|
15
15
|
"@commitlint/config-conventional": "19.8.1",
|
|
16
16
|
"@dargmuesli/nuxt-cookie-control": "link:",
|
|
17
|
-
"@nuxt/eslint-config": "1.
|
|
17
|
+
"@nuxt/eslint-config": "1.9.0",
|
|
18
18
|
"@nuxt/module-builder": "1.0.2",
|
|
19
|
-
"@nuxt/schema": "4.0.
|
|
19
|
+
"@nuxt/schema": "4.0.3",
|
|
20
20
|
"@semantic-release/changelog": "6.0.3",
|
|
21
21
|
"@semantic-release/commit-analyzer": "13.0.1",
|
|
22
22
|
"@semantic-release/git": "10.0.1",
|
|
23
|
-
"@semantic-release/github": "11.0.
|
|
23
|
+
"@semantic-release/github": "11.0.4",
|
|
24
24
|
"@semantic-release/npm": "12.0.2",
|
|
25
25
|
"@semantic-release/release-notes-generator": "14.0.3",
|
|
26
|
-
"eslint": "9.
|
|
26
|
+
"eslint": "9.33.0",
|
|
27
27
|
"eslint-config-prettier": "10.1.8",
|
|
28
|
-
"eslint-plugin-prettier": "5.5.
|
|
28
|
+
"eslint-plugin-prettier": "5.5.4",
|
|
29
29
|
"husky": "9.1.7",
|
|
30
|
-
"lint-staged": "16.1.
|
|
31
|
-
"nuxt": "4.0.
|
|
30
|
+
"lint-staged": "16.1.5",
|
|
31
|
+
"nuxt": "4.0.3",
|
|
32
32
|
"prettier": "3.6.2",
|
|
33
33
|
"semantic-release": "24.2.7",
|
|
34
|
-
"vite": "7.
|
|
34
|
+
"vite": "7.1.3",
|
|
35
35
|
"vue": "3.5.18",
|
|
36
36
|
"vue-tsc": "3.0.5",
|
|
37
|
-
"webpack": "5.101.
|
|
37
|
+
"webpack": "5.101.3"
|
|
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.15.0",
|
|
67
67
|
"pnpm": {
|
|
68
68
|
"ignoredBuiltDependencies": [
|
|
69
69
|
"@parcel/watcher",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"unrs-resolver"
|
|
72
72
|
],
|
|
73
73
|
"overrides": {
|
|
74
|
-
"@types/eslint": "npm:eslint@9.
|
|
74
|
+
"@types/eslint": "npm:eslint@9.33.0"
|
|
75
75
|
}
|
|
76
76
|
},
|
|
77
77
|
"publishConfig": {
|
|
@@ -99,5 +99,5 @@
|
|
|
99
99
|
]
|
|
100
100
|
}
|
|
101
101
|
},
|
|
102
|
-
"version": "
|
|
102
|
+
"version": "10.0.0-beta.1"
|
|
103
103
|
}
|
|
File without changes
|
|
File without changes
|