comand-component-library 4.0.70 → 4.0.72
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/comand-component-library.js +392 -398
- package/dist/comand-component-library.umd.cjs +3 -3
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/ComponentLibrary.vue +1914 -1907
- package/src/components/CmdBoxWrapper.vue +1 -1
- package/src/components/CmdTextImageBlock.vue +1 -1
- package/src/pages/MultipleBoxWrapper.vue +1 -4
@@ -6,7 +6,7 @@
|
|
6
6
|
<!-- end CmdHeadline -->
|
7
7
|
|
8
8
|
<div v-if="allowUserToToggleOrientation" class="options-wrapper">
|
9
|
-
<a
|
9
|
+
<a href="#" @click.prevent="toggleOrientation" :title="rowView ? iconRowView.tooltip : iconGridView.tooltip">
|
10
10
|
<!-- begin CmdIcon -->
|
11
11
|
<CmdIcon :iconClass="rowView ? iconGridView.iconClass : iconRowView.iconClass" :type="rowView ? iconGridView.iconType : iconRowView.iconType" />
|
12
12
|
<!-- end CmdIcon -->
|
@@ -155,7 +155,7 @@ export default {
|
|
155
155
|
return ""
|
156
156
|
},
|
157
157
|
setInnerClass() {
|
158
|
-
return "inner-
|
158
|
+
return "inner-text-wrapper " + this.textAlign + " " + (this.innerClass || "")
|
159
159
|
}
|
160
160
|
},
|
161
161
|
methods: {
|
@@ -3,10 +3,7 @@
|
|
3
3
|
<template v-for="(segment, index) in segments" :key="index">
|
4
4
|
<!-- begin CmdBoxWrapper -->
|
5
5
|
<CmdBoxWrapper
|
6
|
-
|
7
|
-
:useRowViewAsDefault="segment.useRowViewAsDefault"
|
8
|
-
:useGap="segment.useGap"
|
9
|
-
:cmdHeadline="segment.cmdHeadline"
|
6
|
+
v-bind="segment"
|
10
7
|
>
|
11
8
|
<template v-slot="slotProps">
|
12
9
|
<!-- begin CmdBox -->
|