RubyGems
npm
Organizations
Log in
Sign up
npm
comand-component-library
Versions diffs
4.0.55 → 4.0.56
Page 3
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.
Files changed (5)
hide
show
package/dist/comand-component-library.js
+1
-1
package/dist/comand-component-library.umd.cjs
+1
-1
package/package.json
+1
-1
package/src/ComponentLibrary.vue
+1
-3
package/src/components/CmdContainer.vue
+1
-1
package/package.json
CHANGED
Viewed
@@ -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",
package/src/ComponentLibrary.vue
CHANGED
Viewed
@@ -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"
package/src/components/CmdContainer.vue
CHANGED
Viewed
@@ -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
« First
‹ Prev
1
2
3