comand-component-library 4.2.9 → 4.2.10

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.
@@ -4,14 +4,15 @@
4
4
  <!-- begin CmdHeadline -->
5
5
  <CmdHeadline
6
6
  v-if="cmdHeadline"
7
- v-bind="cmdHeadline"
7
+ v-bind="cmdHeadline"
8
8
  />
9
9
  <!-- end CmdHeadline -->
10
10
 
11
11
  <!-- begin icon to close tooltip -->
12
- <a v-if="iconClose.show && toggleVisibilityByClick" href="#" @click.prevent="hideTooltip" :title="iconClose.tooltip">
12
+ <a v-if="iconClose.show && toggleVisibilityByClick" href="#" @click.prevent="hideTooltip"
13
+ :title="iconClose.tooltip">
13
14
  <!-- begin CmdIcon -->
14
- <CmdIcon :iconClass="iconClose.iconClass" :type="iconClose.iconType" />
15
+ <CmdIcon :iconClass="iconClose.iconClass" :type="iconClose.iconType"/>
15
16
  <!-- end CmdIcon -->
16
17
  </a>
17
18
  <!-- end icon to close tooltip -->
@@ -41,7 +42,8 @@ export default {
41
42
  */
42
43
  cmdHeadline: {
43
44
  type: Object,
44
- default() {}
45
+ default() {
46
+ }
45
47
  },
46
48
  /**
47
49
  * text shown as tooltip
@@ -95,14 +97,14 @@ export default {
95
97
  * @requiredForAccessibility: partial
96
98
  */
97
99
  iconClose: {
98
- type: Object,
99
- default() {
100
- return {
101
- show: true,
102
- iconClass: "icon-cancel",
103
- tooltip: "Close this tooltip!"
104
- }
105
- }
100
+ type: Object,
101
+ default() {
102
+ return {
103
+ show: true,
104
+ iconClass: "icon-cancel",
105
+ tooltip: "Close this tooltip!"
106
+ }
107
+ }
106
108
  },
107
109
  /**
108
110
  * enable toggling tooltip-visibility by click
@@ -113,11 +115,11 @@ export default {
113
115
  }
114
116
  },
115
117
  mounted() {
116
- if(this.relatedId) {
118
+ if (this.relatedId) {
117
119
  const relatedElement = document.getElementById(this.relatedId)
118
120
 
119
- if(relatedElement) {
120
- if(this.scrollContainer) {
121
+ if (relatedElement) {
122
+ if (this.scrollContainer) {
121
123
  document.querySelector(this.scrollContainer).addEventListener("scroll", this.hideTooltip) // avoid fixed tooltip on scroll
122
124
  document.addEventListener("keyup", this.hideTooltipOnEsc) // close tooltip by using "escape"-key
123
125
  }
@@ -140,20 +142,20 @@ export default {
140
142
  // if delay is set
141
143
  if (this.delayToShowTooltip > 0) {
142
144
  setTimeout(() => {
143
- this.toggleVisibility(event)
145
+ this.toggleVisibility(event)
144
146
  }, this.delayToShowTooltip)
145
147
  } else {
146
148
  this.toggleVisibility(event)
147
149
  }
148
150
  },
149
151
  toggleVisibility(event) {
150
- if(!this.toggleVisibilityByClick) {
152
+ if (!this.toggleVisibilityByClick) {
151
153
  this.tooltipVisibility = true
152
154
  }
153
155
  this.getPointerPosition(event)
154
156
  },
155
157
  hideTooltipOnEsc(event) {
156
- if(this.allowEscapeKey) {
158
+ if (this.allowEscapeKey) {
157
159
  if (event.key === 'Escape' || event.key === 'Esc') {
158
160
  this.hideTooltip()
159
161
  }
@@ -168,10 +170,10 @@ export default {
168
170
  }
169
171
  },
170
172
  unmounted() {
171
- if(this.relatedId) {
173
+ if (this.relatedId) {
172
174
  const relatedElement = document.getElementById(this.relatedId)
173
175
 
174
- if(relatedElement) {
176
+ if (relatedElement) {
175
177
  document.removeEventListener("scroll", this.hideTooltip)
176
178
  document.removeEventListener("keyup", this.hideTooltipOnEsc)
177
179
 
@@ -186,11 +188,11 @@ export default {
186
188
  },
187
189
  watch: {
188
190
  tooltipVisibility() {
189
- if(this.tooltipVisibility) {
190
- this.$nextTick( () => {
191
+ if (this.tooltipVisibility) {
192
+ this.$nextTick(() => {
191
193
  const verticalOffset = 25
192
194
  // this.$refs.tooltip.addEventListener("keyup", this.hideTooltip)
193
- this.$refs.tooltip.style.left = (this.pointerX / 10) + "rem"
195
+ this.$refs.tooltip.style.left = (this.pointerX / 10) + "rem"
194
196
  this.$refs.tooltip.style.top = ((this.pointerY + verticalOffset) / 10) + "rem"
195
197
  })
196
198
  }
@@ -238,8 +240,8 @@ export default {
238
240
  .headline-wrapper {
239
241
  display: flex;
240
242
 
241
- a {
242
- margin-left: auto;
243
+ > a {
244
+ margin-left: auto !important;
243
245
 
244
246
  [class*="icon-"] {
245
247
  padding-left: 1rem;
package/src/index.js CHANGED
@@ -50,6 +50,7 @@ export { default as CmdTextImageBlock } from '@/components/CmdTextImageBlock.vue
50
50
  export { default as CmdThumbnailScroller } from '@/components/CmdThumbnailScroller.vue'
51
51
  export { default as CmdToggleDarkMode } from '@/components/CmdToggleDarkMode.vue'
52
52
  export { default as CmdTooltip } from '@/components/CmdTooltip.vue'
53
+ export { default as CmdTooltipForFormElements } from '@/components/CmdTooltipForFormElements.vue'
53
54
  export { default as CmdUploadForm } from '@/components/CmdUploadForm.vue'
54
55
  export { default as CmdWidthLimitationWrapper } from '@/components/CmdWidthLimitationWrapper.vue'
55
56
  export { default as EditComponentWrapper } from '@/components/EditComponentWrapper.vue'