@eturnity/eturnity_reusable_components 8.7.5-EPDM-12729.2 → 8.7.5-EPDM-12729.3

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": "@eturnity/eturnity_reusable_components",
3
- "version": "8.7.5-EPDM-12729.2",
3
+ "version": "8.7.5-EPDM-12729.3",
4
4
  "files": [
5
5
  "dist",
6
6
  "src"
@@ -59,7 +59,7 @@
59
59
  :src="image"
60
60
  @load="onImageLoad"
61
61
  />
62
- <span v-if="text" ref="textContent" :style="textStyle">
62
+ <span v-if="!hideInfoText" ref="textContent" :style="textStyle">
63
63
  <slot>
64
64
  <span v-html="text"></span>
65
65
  </slot>
@@ -308,6 +308,11 @@
308
308
  default: false,
309
309
  required: false,
310
310
  },
311
+ hideInfoText: {
312
+ type: Boolean,
313
+ default: false,
314
+ required: false,
315
+ },
311
316
  },
312
317
  setup(props) {
313
318
  const isVisible = ref(false)