comand-component-library 4.1.37 → 4.1.39
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
{
|
2
2
|
"required": {
|
3
|
-
"
|
3
|
+
"cmdHeadline": {
|
4
|
+
"headlineText": "Required cookies"
|
5
|
+
},
|
4
6
|
"cookies": [
|
5
7
|
{
|
6
8
|
"id": "cookie-sessionid",
|
@@ -30,7 +32,9 @@
|
|
30
32
|
]
|
31
33
|
},
|
32
34
|
"optional": {
|
33
|
-
"
|
35
|
+
"cmdHeadline": {
|
36
|
+
"headlineText": "Optional cookies"
|
37
|
+
},
|
34
38
|
"cookies": [
|
35
39
|
{
|
36
40
|
"id": "cookie-google-maps",
|
@@ -267,7 +267,7 @@ export default {
|
|
267
267
|
showHeadline: true,
|
268
268
|
headlineText: "Required cookies",
|
269
269
|
headlineLevel: 3,
|
270
|
-
...this.
|
270
|
+
...this.cookieOptions?.required.cmdHeadline
|
271
271
|
}
|
272
272
|
},
|
273
273
|
defaultCmdBoxOptionalCookies() {
|
@@ -276,7 +276,7 @@ export default {
|
|
276
276
|
showHeadline: true,
|
277
277
|
headlineText: "Optional cookies",
|
278
278
|
headlineLevel: 3,
|
279
|
-
...this.
|
279
|
+
...this.cookieOptions?.optional.cmdHeadline
|
280
280
|
}
|
281
281
|
},
|
282
282
|
toggleBoxBody(cookieId) {
|