@dargmuesli/nuxt-cookie-control 8.4.18 → 9.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.d.ts +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 +6 -6
- /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.d.ts
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
|
@@ -122,7 +122,7 @@ const DEFAULTS = {
|
|
|
122
122
|
};
|
|
123
123
|
|
|
124
124
|
const name = "@dargmuesli/nuxt-cookie-control";
|
|
125
|
-
const version = "
|
|
125
|
+
const version = "9.0.0-beta.1";
|
|
126
126
|
|
|
127
127
|
const resolver = createResolver(import.meta.url);
|
|
128
128
|
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
|
@@ -27,14 +27,14 @@
|
|
|
27
27
|
"eslint-config-prettier": "9.1.0",
|
|
28
28
|
"eslint-plugin-prettier": "5.2.1",
|
|
29
29
|
"husky": "9.1.7",
|
|
30
|
-
"lint-staged": "15.2.
|
|
30
|
+
"lint-staged": "15.2.11",
|
|
31
31
|
"nuxt": "3.14.1592",
|
|
32
|
-
"prettier": "3.4.
|
|
32
|
+
"prettier": "3.4.2",
|
|
33
33
|
"semantic-release": "24.2.0",
|
|
34
|
-
"vite": "6.0.
|
|
34
|
+
"vite": "6.0.3",
|
|
35
35
|
"vue": "3.5.13",
|
|
36
36
|
"vue-tsc": "2.1.10",
|
|
37
|
-
"webpack": "5.97.
|
|
37
|
+
"webpack": "5.97.1"
|
|
38
38
|
},
|
|
39
39
|
"engines": {
|
|
40
40
|
"node": ">=16"
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"Jonas Thelemann"
|
|
70
70
|
],
|
|
71
71
|
"name": "@dargmuesli/nuxt-cookie-control",
|
|
72
|
-
"packageManager": "pnpm@9.
|
|
72
|
+
"packageManager": "pnpm@9.15.0",
|
|
73
73
|
"publishConfig": {
|
|
74
74
|
"access": "public"
|
|
75
75
|
},
|
|
@@ -94,5 +94,5 @@
|
|
|
94
94
|
},
|
|
95
95
|
"type": "module",
|
|
96
96
|
"types": "./dist/types.d.ts",
|
|
97
|
-
"version": "
|
|
97
|
+
"version": "9.0.0-beta.1"
|
|
98
98
|
}
|
|
File without changes
|
|
File without changes
|