comand-component-library 4.0.67 → 4.0.68
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.
|
@@ -7376,14 +7376,12 @@ const uc = /* @__PURE__ */ L(ac, [["render", cc]]), mc = {
|
|
|
7376
7376
|
if (typeof this.$slots.default != "function")
|
|
7377
7377
|
return !1;
|
|
7378
7378
|
const e = this.$slots.default();
|
|
7379
|
-
return e.length === 1 && typeof e[0].type == "symbol" && Array.isArray(e[0].children) ? e[0].children.length === 1 : e.length === 1;
|
|
7379
|
+
return e.length === 1 && typeof e[0].type == "symbol" && Array.isArray(e[0].children) ? e[0].children.length === 1 : e.length === 1 && typeof e[0].type == "object" && e[0].type.name === "RenderComponents" && typeof e[0].props == "object" && Array.isArray(e[0].props.components) ? e[0].props.components.length === 1 : e.length === 1;
|
|
7380
7380
|
}
|
|
7381
7381
|
},
|
|
7382
7382
|
computed: {
|
|
7383
|
-
containerClass() {
|
|
7384
|
-
},
|
|
7385
7383
|
setInnerClass() {
|
|
7386
|
-
let e = this.innerClass;
|
|
7384
|
+
let e = this.innerClass || "";
|
|
7387
7385
|
switch (this.containerType) {
|
|
7388
7386
|
case "grid":
|
|
7389
7387
|
e += " grid-container-create-columns";
|