comand-component-library 4.0.55 → 4.0.56

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "comand-component-library",
3
- "version": "4.0.55",
3
+ "version": "4.0.56",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "license": "GPL-3.0-only",
@@ -1276,9 +1276,7 @@
1276
1276
  style="border: 1px dotted gray"
1277
1277
  ref="CmdContainer"
1278
1278
  v-bind="cmdContainerSettingsData"
1279
- >
1280
- <p>Slot-content (one item only)</p>
1281
- </CmdContainer>
1279
+ />
1282
1280
 
1283
1281
  <CmdContainer
1284
1282
  style="border: 1px dotted gray"
@@ -86,7 +86,7 @@ export default {
86
86
  return ""
87
87
  },
88
88
  oneSlotItem() {
89
- if (!this.$slots.default) {
89
+ if (typeof this.$slots.default !== "function") {
90
90
  return false
91
91
  }
92
92