@eturnity/eturnity_reusable_components 7.6.1-EPDM-9777.3 → 7.6.1-EPDM-9777.5

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": "7.6.1-EPDM-9777.3",
3
+ "version": "7.6.1-EPDM-9777.5",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
@@ -49,6 +49,7 @@
49
49
  "
50
50
  @mouseover="onItemHover({ index, item })"
51
51
  :isDisabled="item.disabled"
52
+ :title="item.title"
52
53
  >
53
54
  <arrow-left
54
55
  :hasChildren="hasChildren(item)"
@@ -68,10 +69,9 @@
68
69
  // import ThreeDots from "@eturnity/eturnity_reusable_components/src/components/threeDots"
69
70
  // To use:
70
71
  // <three-dots
71
- // :isLoading="true"
72
72
  // :options="listOptions"
73
- // @on-click="onClick($event)"
74
73
  // @on-select="onSelect($event)"
74
+ // :isLoading="true"
75
75
  // />
76
76
  // options to pass:
77
77
  // listOptions: [
@@ -371,9 +371,6 @@ export default {
371
371
  },
372
372
  onSelect({ item, hasChildren }) {
373
373
  if (hasChildren || item.disabled) {
374
- if (item.disabled) {
375
- this.$emit('on-click', item)
376
- }
377
374
  return
378
375
  }
379
376
  this.$emit('on-select', item)