comand-component-library 4.2.13 → 4.2.15
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/dist/comand-component-library.js +1020 -1004
- package/dist/style.css +1 -1
- package/package.json +2 -3
- package/src/ComponentLibrary.vue +16 -3
- package/src/assets/data/image.json +2 -1
- package/src/components/CmdImage.vue +2 -2
- package/src/components/CmdLink.vue +1 -1
- package/src/components/CmdLoginForm.vue +4 -1
- package/src/components/CmdTabs.vue +1 -1
- package/src/components/CmdTextImageBlock.vue +1 -1
- package/src/index.js +1 -0
@@ -16,7 +16,7 @@
|
|
16
16
|
/>
|
17
17
|
<!-- end cmdImage -->
|
18
18
|
|
19
|
-
<div class="flex-container vertical" :class="setInnerClass">
|
19
|
+
<div v-if="!editModeContext" class="flex-container vertical" :class="setInnerClass">
|
20
20
|
<!-- begin cmdHeadline -->
|
21
21
|
<CmdHeadline
|
22
22
|
v-if="(cmdHeadline?.headlineText || editModeContext) && (headlinePosition === 'belowImage' || orientation === 'horizontal')"
|
package/src/index.js
CHANGED
@@ -24,6 +24,7 @@ export { default as CmdImageGallery } from '@/components/CmdImageGallery.vue'
|
|
24
24
|
export { default as CmdImageZoom } from '@/components/CmdImageZoom.vue'
|
25
25
|
export { default as CmdInputGroup } from '@/components/CmdInputGroup.vue'
|
26
26
|
export { default as CmdLink } from '@/components/CmdLink.vue'
|
27
|
+
export { default as CmdListOfImages } from '@/components/CmdListOfImages.vue'
|
27
28
|
export { default as CmdListOfLinks } from '@/components/CmdListOfLinks.vue'
|
28
29
|
export { default as CmdLoginForm } from '@/components/CmdLoginForm.vue'
|
29
30
|
export { default as CmdMainNavigation } from '@/components/CmdMainNavigation.vue'
|