@dargmuesli/nuxt-cookie-control 8.3.4 → 8.4.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 CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  ![nuxt-cookie-control](https://drive.google.com/a/broj42.com/uc?id=19sFguJo7SKUvmH4xu9DhK9ZXzR6oWLX8)
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, sv, tr, uk and zh-CN
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-CN
10
10
 
11
11
  ✅ Vue 3 support
12
12
 
package/dist/module.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dargmuesli/nuxt-cookie-control",
3
- "version": "8.3.4",
3
+ "version": "8.4.1",
4
4
  "configKey": "cookieControl",
5
5
  "compatibility": {
6
6
  "nuxt": "^3.0.0"
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 = "8.3.4";
125
+ const version = "8.4.1";
126
126
 
127
127
  const resolver = createResolver(import.meta.url);
128
128
  const runtimeDir = resolver.resolve("./runtime");
@@ -27,6 +27,7 @@ import ro from "./ro.js";
27
27
  import rs from "./rs.js";
28
28
  import ru from "./ru.js";
29
29
  import sk from "./sk.js";
30
+ import sl from "./sl.js";
30
31
  import sv from "./sv.js";
31
32
  import tr from "./tr.js";
32
33
  import uk from "./uk.js";
@@ -61,6 +62,7 @@ export const locales = [
61
62
  rs,
62
63
  ru,
63
64
  sk,
65
+ sl,
64
66
  sv,
65
67
  tr,
66
68
  uk,
@@ -0,0 +1,3 @@
1
+ import type { LocaleStrings } from '#cookie-control/types';
2
+ declare const _default: LocaleStrings;
3
+ export default _default;
@@ -0,0 +1,17 @@
1
+ export default {
2
+ accept: "Sprejmi",
3
+ acceptAll: "Sprejmi vse",
4
+ bannerDescription: "Uporabljamo lastne pi\u0161kotke in pi\u0161kotke tretjih oseb, da lahko pravilno prika\u017Eemo to spletno mesto in bolje razumemo, kako se to spletno mesto uporablja, z namenom izbolj\u0161anja storitev, ki jih ponujamo. Odlo\u010Ditev o dovoljenjih za uporabo pi\u0161kotkov lahko kadar koli spremenite z uporabo gumba za pi\u0161kotke, ki se prika\u017Ee po izbiri na tej pasici.",
5
+ bannerTitle: "Pi\u0161kotki",
6
+ close: "Zapri",
7
+ cookiesFunctional: "Funkcionalni pi\u0161kotki",
8
+ cookiesNecessary: "Obvezni pi\u0161kotki",
9
+ cookiesOptional: "Poljubni pi\u0161kotki",
10
+ decline: "Zavrni",
11
+ declineAll: "Zavrni vse",
12
+ here: "tukaj",
13
+ iframeBlocked: "\u010Ce \u017Eelite to videti, omogo\u010Dite funkcionalne pi\u0161kotke",
14
+ manageCookies: "Izvedite ve\u010D in prilagodite",
15
+ save: "Shrani",
16
+ settingsUnsaved: "Imate neshranjene nastavitve"
17
+ };
@@ -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' | 'sv' | 'tr' | 'uk' | 'zh-CN';
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-CN';
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
@@ -18,20 +18,19 @@
18
18
  "@nuxt/module-builder": "0.7.0",
19
19
  "@nuxt/schema": "3.11.2",
20
20
  "@semantic-release/changelog": "6.0.3",
21
- "@semantic-release/commit-analyzer": "12.0.0",
21
+ "@semantic-release/commit-analyzer": "13.0.0",
22
22
  "@semantic-release/git": "10.0.1",
23
23
  "@semantic-release/github": "10.0.5",
24
24
  "@semantic-release/npm": "12.0.1",
25
- "@semantic-release/release-notes-generator": "13.0.0",
26
- "eslint": "9.3.0",
25
+ "@semantic-release/release-notes-generator": "14.0.0",
26
+ "eslint": "9.4.0",
27
27
  "eslint-config-prettier": "9.1.0",
28
28
  "eslint-plugin-prettier": "5.1.3",
29
29
  "husky": "9.0.11",
30
30
  "lint-staged": "15.2.5",
31
31
  "nuxt": "3.11.2",
32
- "prettier": "3.2.5",
33
- "semantic-release": "23.1.1",
34
- "typescript": "5.4.5",
32
+ "prettier": "3.3.0",
33
+ "semantic-release": "24.0.0",
35
34
  "vite": "5.2.12",
36
35
  "vue": "3.4.27",
37
36
  "vue-tsc": "2.0.19",
@@ -47,8 +46,8 @@
47
46
  "types": "./dist/types.d.ts"
48
47
  },
49
48
  "./runtime/*": {
50
- "import": "./dist/runtime/*.mjs",
51
- "require": "./dist/runtime/*.mjs",
49
+ "import": "./dist/runtime/*.js",
50
+ "require": "./dist/runtime/*.js",
52
51
  "types": "./dist/runtime/*.d.ts"
53
52
  }
54
53
  },
@@ -70,7 +69,7 @@
70
69
  "Jonas Thelemann"
71
70
  ],
72
71
  "name": "@dargmuesli/nuxt-cookie-control",
73
- "packageManager": "pnpm@9.1.3",
72
+ "packageManager": "pnpm@9.1.4",
74
73
  "publishConfig": {
75
74
  "access": "public"
76
75
  },
@@ -90,5 +89,5 @@
90
89
  },
91
90
  "type": "module",
92
91
  "types": "./dist/types.d.ts",
93
- "version": "8.3.4"
92
+ "version": "8.4.1"
94
93
  }