comand-component-library 4.0.62 → 4.0.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/src/ComponentLibrary.vue
CHANGED
@@ -16,7 +16,7 @@
|
|
16
16
|
<!-- end slot-content (one column/slot-item only) -->
|
17
17
|
|
18
18
|
<!-- begin grid-/flex-container to wrap multiple columns/items -->
|
19
|
-
<div v-else :class="setInnerClass">
|
19
|
+
<div v-else :class="[setInnerClass, 'inner-slot-wrapper']">
|
20
20
|
<!-- begin slot-content (multiple columns only) -->
|
21
21
|
<slot></slot>
|
22
22
|
<!-- end slot-content (multiple columns only) -->
|
@@ -75,6 +75,13 @@ export default {
|
|
75
75
|
value === "vertical"
|
76
76
|
}
|
77
77
|
},
|
78
|
+
/**
|
79
|
+
* define a class to set on inner div
|
80
|
+
*/
|
81
|
+
innerClass: {
|
82
|
+
type: String,
|
83
|
+
required: false
|
84
|
+
},
|
78
85
|
/**
|
79
86
|
* properties for CmdHeadline-component
|
80
87
|
*/
|
@@ -120,7 +127,7 @@ export default {
|
|
120
127
|
htmlClass = null
|
121
128
|
break
|
122
129
|
}
|
123
|
-
return htmlClass
|
130
|
+
return htmlClass += " " + this.innerClass
|
124
131
|
}
|
125
132
|
}
|
126
133
|
}
|