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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "comand-component-library",
3
- "version": "4.0.62",
3
+ "version": "4.0.63",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "license": "GPL-3.0-only",
@@ -1295,6 +1295,7 @@
1295
1295
  ref="CmdContainer"
1296
1296
  v-bind="cmdContainerSettingsData"
1297
1297
  contentOrientation="horizontal"
1298
+ innerClass="inner-class"
1298
1299
  >
1299
1300
  <div>Slot-Content</div>
1300
1301
  <div>Slot-Content</div>
@@ -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
  }