comand-component-library 4.1.39 → 4.1.40
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/comand-component-library.js +27334 -24165
- package/package.json +1 -1
- package/src/ComponentLibrary.vue +2 -8
- package/src/components/CmdFancyBox.vue +5 -4
package/package.json
CHANGED
package/src/ComponentLibrary.vue
CHANGED
@@ -2077,13 +2077,7 @@
|
|
2077
2077
|
<!-- end copyright-information ------------------------------------------------------------------------------------------------------------------------------------------------------->
|
2078
2078
|
|
2079
2079
|
<!-- begin fancy-box ------------------------------------------------------------------------------------------------------------------------------------------------------->
|
2080
|
-
<CmdFancyBox
|
2081
|
-
:show="fancyBoxCookieDisclaimer"
|
2082
|
-
:fancyboxOptions="{}"
|
2083
|
-
:allowEscapeKey="false"
|
2084
|
-
:cmdHeadline="{show: true, headlineText: 'Cookie Disclaimer', headlineLevel: 2}"
|
2085
|
-
defaultAriaLabelText="Cookie Disclaimer"
|
2086
|
-
>
|
2080
|
+
<CmdFancyBox :show="fancyBoxCookieDisclaimer" :fancyboxOptions="{}" :allowEscapeKey="false" :cmdHeadline="{show: true, headlineText: 'Cookie Disclaimer', headlineLevel: 2}" defaultAriaLabelText="Cookie Disclaimer">
|
2087
2081
|
<!-- begin cookie-disclaimer ------------------------------------------------------------------------------------------------------------------------------------------------------->
|
2088
2082
|
<CmdCookieDisclaimer
|
2089
2083
|
:cookieOptions="cookieDisclaimerData"
|
@@ -2280,7 +2274,7 @@ export default {
|
|
2280
2274
|
replacedCheckboxValue: "checkboxValue1",
|
2281
2275
|
radiobuttonValue: "radiobuttonValue1",
|
2282
2276
|
replacedRadiobuttonValue: "radiobuttonValue1",
|
2283
|
-
|
2277
|
+
f: false,
|
2284
2278
|
fakeSelectDefault: "",
|
2285
2279
|
fakeSelectCheckbox: [1],
|
2286
2280
|
fakeSelectFilters: [],
|
@@ -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",
|