@dargmuesli/nuxt-cookie-control 8.4.11 → 8.4.13

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dargmuesli/nuxt-cookie-control",
3
- "version": "8.4.11",
3
+ "version": "8.4.13",
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.4.11";
125
+ const version = "8.4.13";
126
126
 
127
127
  const resolver = createResolver(import.meta.url);
128
128
  const runtimeDir = resolver.resolve("./runtime");
@@ -13,13 +13,19 @@
13
13
  </slot>
14
14
  </div>
15
15
  <div class="cookieControl__BarButtons">
16
- <button @click="accept()" v-text="localeStrings?.accept" />
16
+ <button
17
+ type="button"
18
+ @click="accept()"
19
+ v-text="localeStrings?.accept"
20
+ />
17
21
  <button
18
22
  v-if="moduleOptions.isAcceptNecessaryButtonEnabled"
23
+ type="button"
19
24
  @click="decline()"
20
25
  v-text="localeStrings?.decline"
21
26
  />
22
27
  <button
28
+ type="button"
23
29
  @click="isModalActive = true"
24
30
  v-text="localeStrings?.manageCookies"
25
31
  />
@@ -59,6 +65,7 @@
59
65
  <button
60
66
  v-if="!moduleOptions.isModalForced"
61
67
  class="cookieControl__ModalClose"
68
+ type="button"
62
69
  @click="isModalActive = false"
63
70
  v-text="localeStrings?.close"
64
71
  />
@@ -102,7 +109,7 @@
102
109
  "
103
110
  @change="toogleCookie(cookie)"
104
111
  />
105
- <button @click="toggleButton($event)">
112
+ <button type="button" @click="toggleButton($event)">
106
113
  {{ getName(cookie.name) }}
107
114
  </button>
108
115
  <label
@@ -160,6 +167,7 @@
160
167
  </template>
161
168
  <div class="cookieControl__ModalButtons">
162
169
  <button
170
+ type="button"
163
171
  @click="
164
172
  () => {
165
173
  acceptPartial()
@@ -169,6 +177,7 @@
169
177
  v-text="localeStrings?.save"
170
178
  />
171
179
  <button
180
+ type="button"
172
181
  @click="
173
182
  () => {
174
183
  accept()
@@ -179,6 +188,7 @@
179
188
  />
180
189
  <button
181
190
  v-if="!moduleOptions.isModalForced"
191
+ type="button"
182
192
  @click="
183
193
  () => {
184
194
  declineAll()
package/package.json CHANGED
@@ -16,23 +16,23 @@
16
16
  "@dargmuesli/nuxt-cookie-control": "link:",
17
17
  "@nuxt/eslint-config": "0.5.7",
18
18
  "@nuxt/module-builder": "0.8.4",
19
- "@nuxt/schema": "3.13.1",
19
+ "@nuxt/schema": "3.13.2",
20
20
  "@semantic-release/changelog": "6.0.3",
21
21
  "@semantic-release/commit-analyzer": "13.0.0",
22
22
  "@semantic-release/git": "10.0.1",
23
- "@semantic-release/github": "10.3.3",
23
+ "@semantic-release/github": "10.3.5",
24
24
  "@semantic-release/npm": "12.0.1",
25
25
  "@semantic-release/release-notes-generator": "14.0.1",
26
- "eslint": "9.10.0",
26
+ "eslint": "9.11.1",
27
27
  "eslint-config-prettier": "9.1.0",
28
28
  "eslint-plugin-prettier": "5.2.1",
29
29
  "husky": "9.1.6",
30
30
  "lint-staged": "15.2.10",
31
- "nuxt": "3.13.1",
31
+ "nuxt": "3.13.2",
32
32
  "prettier": "3.3.3",
33
33
  "semantic-release": "24.1.1",
34
- "vite": "5.4.5",
35
- "vue": "3.5.5",
34
+ "vite": "5.4.7",
35
+ "vue": "3.5.8",
36
36
  "vue-tsc": "2.1.6",
37
37
  "webpack": "5.94.0"
38
38
  },
@@ -69,13 +69,13 @@
69
69
  "Jonas Thelemann"
70
70
  ],
71
71
  "name": "@dargmuesli/nuxt-cookie-control",
72
- "packageManager": "pnpm@9.10.0",
72
+ "packageManager": "pnpm@9.11.0",
73
73
  "publishConfig": {
74
74
  "access": "public"
75
75
  },
76
76
  "repository": "https://github.com/dargmuesli/nuxt-cookie-control",
77
77
  "resolutions": {
78
- "@nuxt/kit": "3.13.1"
78
+ "@nuxt/kit": "3.13.2"
79
79
  },
80
80
  "scripts": {
81
81
  "build": "nuxt-module-build build",
@@ -89,5 +89,5 @@
89
89
  },
90
90
  "type": "module",
91
91
  "types": "./dist/types.d.ts",
92
- "version": "8.4.11"
92
+ "version": "8.4.13"
93
93
  }