comand-component-library 4.1.40 → 4.1.42
Sign up to get free protection for your applications and to get access to all the features.
@@ -41,12 +41,12 @@
|
|
41
41
|
:disabled="cookie.disabled"
|
42
42
|
:id="cookie.id"
|
43
43
|
:toggleSwitch="true"
|
44
|
-
:title="getMessage('cookie_disclaimer.
|
44
|
+
:title="getMessage('cookie_disclaimer.tooltip.cookie_cannot_be_disabled')"
|
45
45
|
/>
|
46
46
|
<!-- end CmdFormElement -->
|
47
47
|
|
48
48
|
<!-- begin icon to toggle box-body -->
|
49
|
-
<a href="#" @click.prevent="toggleBoxBody(cookie.id)" :title="getMessage('cookie_disclaimer.
|
49
|
+
<a href="#" @click.prevent="toggleBoxBody(cookie.id)" :title="getMessage('cookie_disclaimer.tooltip.toggle_box_content')">
|
50
50
|
<span :class="boxIsOpen(cookie.id) ? iconClassBoxExpanded : iconClassBoxCollapsed"></span>
|
51
51
|
</a>
|
52
52
|
<!-- end icon to toggle box-body -->
|
@@ -93,12 +93,12 @@
|
|
93
93
|
:disabled="cookie.disabled"
|
94
94
|
:id="cookie.id"
|
95
95
|
:toggleSwitch="true"
|
96
|
-
:title="getMessage('cookie_disclaimer.
|
96
|
+
:title="getMessage('cookie_disclaimer.tooltip.toggle_to_accept_cookie')"
|
97
97
|
/>
|
98
98
|
<!-- end CmdFormElement -->
|
99
99
|
|
100
100
|
<!-- begin icon to toggle box-body -->
|
101
|
-
<a href="#" @click.prevent="toggleBoxBody(cookie.id)" :title="getMessage('cookie_disclaimer.
|
101
|
+
<a href="#" @click.prevent="toggleBoxBody(cookie.id)" :title="getMessage('cookie_disclaimer.tooltip.toggle_box_content')">
|
102
102
|
<span :class="boxIsOpen(cookie.id) ? iconClassBoxExpanded : iconClassBoxCollapsed"></span>
|
103
103
|
</a>
|
104
104
|
<!-- end icon to toggle box-body -->
|
@@ -197,20 +197,6 @@ export default {
|
|
197
197
|
}
|
198
198
|
}
|
199
199
|
},
|
200
|
-
/**
|
201
|
-
* property for CmdBox-component surrounding the required cookies
|
202
|
-
*/
|
203
|
-
cmdBoxRequiredCookies: {
|
204
|
-
type: Object,
|
205
|
-
required: false
|
206
|
-
},
|
207
|
-
/**
|
208
|
-
* property for CmdBox-component surrounding the optional cookies
|
209
|
-
*/
|
210
|
-
cmdBoxOptionalCookies: {
|
211
|
-
type: Object,
|
212
|
-
required: false
|
213
|
-
},
|
214
200
|
/**
|
215
201
|
* list of cookie-options
|
216
202
|
*/
|
@@ -2,9 +2,9 @@ export default {
|
|
2
2
|
data() {
|
3
3
|
return {
|
4
4
|
defaultMessageProperties: {
|
5
|
-
"cookie_disclaimer.
|
6
|
-
"cookie_disclaimer.
|
7
|
-
"cookie_disclaimer.
|
5
|
+
"cookie_disclaimer.tooltip.cookie_cannot_be_disabled": "This cookie cannot be disabled, because it is required for functionality!",
|
6
|
+
"cookie_disclaimer.tooltip.toggle_to_accept_cookie": "Toggle to accept or reject this cookie!",
|
7
|
+
"cookie_disclaimer.tooltip.toggle_box_content": "Toggle description visibility"
|
8
8
|
}
|
9
9
|
}
|
10
10
|
}
|