@dargmuesli/nuxt-cookie-control 8.3.4 → 8.4.0
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.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/locale/index.js +2 -0
- package/dist/runtime/locale/sl.d.ts +3 -0
- package/dist/runtime/locale/sl.js +17 -0
- package/dist/runtime/types.d.ts +1 -1
- package/package.json +8 -10
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, 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
package/dist/module.mjs
CHANGED
|
@@ -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,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
|
+
};
|
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' | '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": "
|
|
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": "
|
|
26
|
-
"eslint": "9.
|
|
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.
|
|
33
|
-
"semantic-release": "
|
|
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,7 @@
|
|
|
47
46
|
"types": "./dist/types.d.ts"
|
|
48
47
|
},
|
|
49
48
|
"./runtime/*": {
|
|
50
|
-
"import": "./dist/runtime/*.
|
|
51
|
-
"require": "./dist/runtime/*.mjs",
|
|
49
|
+
"import": "./dist/runtime/*.js",
|
|
52
50
|
"types": "./dist/runtime/*.d.ts"
|
|
53
51
|
}
|
|
54
52
|
},
|
|
@@ -70,7 +68,7 @@
|
|
|
70
68
|
"Jonas Thelemann"
|
|
71
69
|
],
|
|
72
70
|
"name": "@dargmuesli/nuxt-cookie-control",
|
|
73
|
-
"packageManager": "pnpm@9.1.
|
|
71
|
+
"packageManager": "pnpm@9.1.4",
|
|
74
72
|
"publishConfig": {
|
|
75
73
|
"access": "public"
|
|
76
74
|
},
|
|
@@ -90,5 +88,5 @@
|
|
|
90
88
|
},
|
|
91
89
|
"type": "module",
|
|
92
90
|
"types": "./dist/types.d.ts",
|
|
93
|
-
"version": "8.
|
|
91
|
+
"version": "8.4.0"
|
|
94
92
|
}
|