@dargmuesli/nuxt-cookie-control 8.4.11 → 8.4.12
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
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.
|
|
125
|
+
const version = "8.4.12";
|
|
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
|
|
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
|
@@ -20,7 +20,7 @@
|
|
|
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.
|
|
23
|
+
"@semantic-release/github": "10.3.4",
|
|
24
24
|
"@semantic-release/npm": "12.0.1",
|
|
25
25
|
"@semantic-release/release-notes-generator": "14.0.1",
|
|
26
26
|
"eslint": "9.10.0",
|
|
@@ -89,5 +89,5 @@
|
|
|
89
89
|
},
|
|
90
90
|
"type": "module",
|
|
91
91
|
"types": "./dist/types.d.ts",
|
|
92
|
-
"version": "8.4.
|
|
92
|
+
"version": "8.4.12"
|
|
93
93
|
}
|