comand-component-library 4.1.39 → 4.1.41
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
|
*/
|
@@ -45,17 +45,17 @@
|
|
45
45
|
<!-- end print buttons -->
|
46
46
|
|
47
47
|
<!-- begin close-icon -->
|
48
|
-
<a v-if="fancyBoxOptionsProperties.closeIcon"
|
48
|
+
<a v-if="fancyBoxOptionsProperties.closeIcon?.show"
|
49
49
|
href="#"
|
50
50
|
class="button"
|
51
51
|
id="close-dialog"
|
52
|
-
:title="fancyBoxOptionsProperties.closeIcon
|
52
|
+
:title="fancyBoxOptionsProperties.closeIcon?.tooltip"
|
53
53
|
ref="close-dialog"
|
54
54
|
@click.prevent="close">
|
55
55
|
<!-- begin CmdIcon -->
|
56
56
|
<CmdIcon
|
57
|
-
:iconClass="fancyBoxOptionsProperties.closeIcon
|
58
|
-
:type="fancyBoxOptionsProperties.closeIcon
|
57
|
+
:iconClass="fancyBoxOptionsProperties.closeIcon?.iconClass"
|
58
|
+
:type="fancyBoxOptionsProperties.closeIcon?.iconType"
|
59
59
|
/>
|
60
60
|
<!-- end CmdIcon -->
|
61
61
|
</a>
|
@@ -294,6 +294,7 @@ const FancyBox = defineComponent({
|
|
294
294
|
fancyBoxOptionsProperties() {
|
295
295
|
return {
|
296
296
|
closeIcon: {
|
297
|
+
show: true,
|
297
298
|
iconClass: "icon-cancel",
|
298
299
|
iconType: "auto",
|
299
300
|
tooltip: "Close",
|
@@ -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 visibility2"
|
8
8
|
}
|
9
9
|
}
|
10
10
|
}
|