comand-component-library 3.3.25 → 3.3.27

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.
@@ -218,7 +218,7 @@ export default {
218
218
  }
219
219
  },
220
220
  /**
221
- * icon to show if an navigation-entry has sub-entries
221
+ * icon to show if a navigation-entry has sub-entries
222
222
  */
223
223
  subentriesIconClass: {
224
224
  type: String,
@@ -235,7 +235,7 @@ export default {
235
235
  }
236
236
  }
237
237
 
238
- @container (width < #{$small-max-width}) {
238
+ @media only screen and (width < #{$small-max-width}) {
239
239
  .cmd-multistep-form-progress-bar {
240
240
  flex-direction: column;
241
241
 
@@ -180,6 +180,8 @@ export default {
180
180
  this.emitCurrentItemId(index)
181
181
  },
182
182
  emitCurrentItemId(index) {
183
+ console.log("index", index)
184
+ console.log("this.items[index]", this.items[index])
183
185
  // emit id of current/clicked item
184
186
  this.$emit("click", this.items[index].id)
185
187
  },
@@ -205,7 +207,7 @@ export default {
205
207
  newItem = {image: {...item.image}, figcaption: {...item.figcaption}}
206
208
  newItem.image.src = newItem.image.srcImageSmall
207
209
  } else {
208
- newItem = {text: item.text, url: item.url}
210
+ newItem = {...item}
209
211
  }
210
212
  return newItem
211
213
  })
@@ -157,8 +157,8 @@ export default {
157
157
  this.$nextTick( () => {
158
158
  const verticalOffset = 25
159
159
  // this.$refs.tooltip.addEventListener("keyup", this.hideTooltip)
160
- this.$refs.tooltip.style.left = this.pointerX / 0 + "rem"
161
- this.$refs.tooltip.style.top = (this.pointerY + verticalOffset) / 0 + "rem"
160
+ this.$refs.tooltip.style.left = (this.pointerX / 10) + "rem"
161
+ this.$refs.tooltip.style.top = ((this.pointerY + verticalOffset) / 10) + "rem"
162
162
  })
163
163
  }
164
164
  }
@@ -120,7 +120,6 @@ export default {
120
120
  max-width: var(--max-width);
121
121
  margin: 0 auto;
122
122
  padding: var(--default-padding);
123
- container-type: inline-size;
124
123
  }
125
124
 
126
125
  &.sticky {